FEM tutorial: Difference between revisions

From FreeCAD Documentation
No edit summary
m (Change Class variable to Topic)
Line 3: Line 3:
<!--T:1-->
<!--T:1-->
{{TutorialInfo
{{TutorialInfo
|Class= Finite Element Analysis
|Topic= Finite Element Analysis
|Level= Beginner
|Level= Beginner
|Time= 10 minutes + Solver time
|Time= 10 minutes + Solver time

Revision as of 17:17, 20 February 2016

Tutorial
Topic
Finite Element Analysis
Level
Beginner
Time to complete
10 minutes + Solver time
Authors
Drei
FreeCAD version
0.16 or above
Example files
See also
None

! DO NOT TRANSLATE AT THE MOMENT ! work in progress ! see FEM_CalculiX_Cantilever_3D too.

Introduction

This tutorial is meant to introduce the reader to the basic workflow of the FEM Module, as well as most of the tools that are available to perform a static analysis.

Requirements

  • For working with FreeCADs FEM_Module it is STONGLY recommended to use version 0.16 or above.
  • The use of FreeCADs FEM_Module requires the installation of some external software. Check FEM_Install for further install instructions.
  • The reader has the basic knowledge to use the Part and PartDesign Workbenches


Procedure

Geometrical model

In this example a Cube is used as the study object, but models created in the Part or PartDesign Workbenches can be used instead.

  1. Create a new document
  2. Activate the Part Workbench
  3. Create a Cube by clicking on Create a cube solid.
  4. We have a geometrical model to work with right now.


Create an analysis and mesh the geometrical model

  1. Switch to the FEM Workbench
  2. Do NOT select any object neither in tree view nor in model space
  3. Click New mechanical analysis to create a analysis.
  4. An analysis container and a solver object will be created.
  5. The analysis should be activated already.
  6. If a file is reloaded the analysis has to be activated before anything could be done with the analysis objects. To activate an analysi make a right click in tree view on the analysis and activate the analysis.

Material

  1. Next step will be to give an material to our model
  2. Select File:Fem Material.svg Mechanical material... and choose Steel-generic as the material
  3. Click OK


Constraints

  1. What needed next is to add some fixed and force constraints to our model.
  2. Select Create FEM fixed constraint
  3. Select the bottom face of the Box and click OK
  4. Select Create FEM force constraint
  5. Click on Add Reference button in task panel of force constraint.
  6. Select the top face of the Box and set the Area load value to 20 000 N.
  7. The unit is fix and will be in Newton. The force is distributed on all given references.
  8. Click OK
  9. We now have established the restrictions and forces for our static study. What is missing is the FEM Mesh.

FEM Mesh

  1. The two possibilities by either the build in mesher Netgen and the external mesher GMSH will be shown in this tutorial. There are various possibilities to get an valid FEM Mesh. See FEM_Mesh if you are interested in more detailed descriptions.
Netgen
  1. Select the shape you wish to mesh, in this case our Cube and click on File:Fem FemMesh.svg Create FEM mesh.
  2. If you did not change the size of the cube geometry (standard is 10 mm x 10 mm x 10 mm) you can leave the settings and click ok.
  3. The mesh will be created.
  4. The properties of the FEM mesh can be seen in the property editor of FreeCAD.
  5. Drag the FEM mesh object inside the Analyis.
GMSH
  1. If FreeCADs build in mesher Netgen is not available the usage of Macro_GMSH is recommended, and is used for this example.
  2. Start the GMSH macro
  3. Select the shape you wish to mesh, in this case our Cube
  4. Since we have an analysis object already make sure the box Create Mechanical Analysis from mesh is not activated.
  5. Click OK
  6. The FEM mesh object will be created.
  7. Drag the FEM mesh object inside the Analyis.

Running the Solver

  1. Select the solver object of the analysis in tree view and press File:Fem QuickAnalysis.svg Quick Analysis from the icon tool bar
  2. The analysis will be made and the result object should be created.

Analyzing Results

  1. Select File:Fem Result.svg Show result
  2. Choose among the different Result types to view the results
  3. The slider at the bottom can be used to alter the mesh to view the deformation in a simplified manner
  4. To remove the results select File:Fem PurgeResults.png Purge results

We are now finished with the basic workflow for the FEM Module.