I’ve run a numerical simulation to model the impact of a wave on a cliff, and I’m currently post-processing the results in ParaView. Before the wave impact (which occurs at time step 18), the model records some background displacements. What I’d like to do is clean up the visualization so that it only shows the displacement caused by the wave impact, excluding the background displacement. What’s the best way to achieve this in ParaView?
Please share a screenshot highligting the issue
I appreciate your response, Mathieu.
All of the frames that I exported from Paraview are available here:
Starting at time step 18, pressure is applied to the model’s right face. Even though there are some background displacements prior to that time step, it is difficult to visualize the induce displacement. Filtering the entire simulation from the initial noise displacement at time step 18 will allow me to see only the induced displacements.
For reference:
You could recover the data at frame 18 and substract that but since what you are looking for is tiny compared to the more broad changes, it may not be exactly what you are looking for.
Anyway, to do that using ForceTime and PythonCalculator with multiple inputs to compute the difference.
Thank you Mathieu!
Can you suggest some references for me to follow?
- Add a ForceTime filter, select frame 18, Apply
- Select both your data and forcetime using control key
- Add a python calculator
- Use expression
inputs[0].PointData["displacement"] - inputs[1].PointData["displacement"]
- Apply