2D geometry function meshing

About the development of the FEM module/workbench.

Moderator: bernd

Post Reply
Jee-Bee
Veteran
Posts: 2566
Joined: Tue Jun 16, 2015 10:32 am
Location: Netherlands

2D geometry function meshing

Post by Jee-Bee »

I have a some basic questions about the 2D geometry function in the fem module...
First how does the function for a 2D mesh work? As far a tried now i didn't get a result... Not
Is it possible to create a 2D mesh from a 3D shape?

as example see file.
Attachments
plate_example.FCStd
(30.71 KiB) Downloaded 27 times
fandaL
Posts: 440
Joined: Thu Jul 24, 2014 8:29 am

Re: 2D geometry function meshing

Post by fandaL »

When you mesh by GMSH you can select “(Mesh) element dimension 2D” – it will create a hollow shell mesh from the solid geometry – I guess it is not what you need.
Usually for 2D mesh you need 2D geometry -> you can split the solid to faces by Draft/Downgrade, select faces from one side and make one shell by Draft/Upgrade, which you can mesh by GMSH. Or create mid-surface somehow else.
If you use faces from one side of the solid you can use offset in CalculiX, e.g. to offset by half of the thickness in direction of element normals:

Code: Select all

*SHELL SECTION,MATERIAL=EL,ELSET=Eall,OFFSET=-0.5
Then check orientation by displaying expanded elements in frd (you need to have

Code: Select all

*NODE FILE, OUTPUT=3d
Jee-Bee wrote: Mon Sep 03, 2018 7:51 pm as example see file.
For rough 2D model I would omit small radii from your geometry
Jee-Bee
Veteran
Posts: 2566
Joined: Tue Jun 16, 2015 10:32 am
Location: Netherlands

Re: 2D geometry function meshing

Post by Jee-Bee »

Thanks
User avatar
bernd
Veteran
Posts: 12851
Joined: Sun Sep 08, 2013 8:07 pm
Location: Zürich, Switzerland
Contact:

Re: 2D geometry function meshing

Post by bernd »

btw, there is a 2D FEM example in StartWB.
Post Reply