How can I view the fractures.

Asked by YE WENXIANG

After fracextract the snapshot, how can I visualize the fracture from the txt?

Question information

Language:
English Edit question
Status:
Solved
For:
ESyS-Particle Edit question
Assignee:
No assignee Edit question
Solved by:
YE WENXIANG
Solved:
Last query:
Last reply:
Revision history for this message
Dion Weatherley (d-weatherley) said :
#1

Hi Ye Wenxiang,

fracextract has two output options, the default is a text file and the other is a VTK file. To output fractures in VTK format, add the -vtk keyword to the fracextract command. Something like this will work:

fracextract -i snapshot -o fractures.vtu -vtk -t 0 10 100

You can then import the VTK file into Paraview for visualisation. The fractures.vtu file only contains point data. Each datapoint represents the location of a broken beam interaction. The time of fracture, beam radius and direction of the beam (its normal) are also recorded. I typically visualise fractures using a "line" glyph. I set the orientation of the line to be equal to "normal" and its length equal to "radius".

I hope this helps.

Cheers,

Dion

Revision history for this message
YE WENXIANG (yehhh) said :
#2

Thanks Dion. It works.