Normal extrusion

Hi,

whenever shell models are analyzed with structural FEA, it’s very convenient to display the results on them using solid representation instead of the regular surface one. ParaView already has a Linear Extrusion filter but for non-planar shells (cylindrical, spherical or otherwise curved) it would be necessary to extrude in normal direction, not just in one of the global axes. In this thread a solution was already proposed:

It seems that it wouldn’t be difficult to implement a filter like that in ParaView. Thus, I decided to ask for such feature to be included in upcoming versions of the software. I wonder what you think about it.

Hi,

The Linear Cell Extrusion filter (vtkLinearCellExtrusionFilter) is already available as a filter for creating three-dimensional finite elements extruded in the normal direction. However, this filter extrudes in the cell normal direction and not in the nodal normal direction as is now desired. If we are going to implement it, it would be a good idea to add an option to vtkLinearCellExtrusionFilter to extrude in the normal direction at nodes. For example, an implementation like the one attached below.
test_LinearCellExtrude.zip (5.9 KB)

This is an inefficient implementation due to the mixed branching of cell normals and nodal normals, but if this can be improved, it may be adopted by the development team.