FEM CalculiX: Difference between revisions

From FreeCAD Documentation
(Marked this version for translation)
mNo edit summary
 
(13 intermediate revisions by 4 users not shown)
Line 2: Line 2:
{{TOCright}}
{{TOCright}}
<translate>
<translate>

== Preface == <!--T:2-->
== Introduction == <!--T:19-->
This page collects information on the [http://www.calculix.de/ CalculiX] finite element solver, the default solver in the {{KEY|[[Image:Workbench_FEM.svg|24px]] [[Fem Workbench|FEM Workbench]]}} for structural and thermo-mechanical analysis as of FreeCAD 0.17. Depending on the operating system you are working with, you'll need to install CalculiX before running your first simulation. Please see [[FEM Install|FEM Install]].

<!--T:2-->
This page collects information on the [http://www.calculix.de/ CalculiX] finite element solver, the default solver in the [[Image:Workbench_FEM.svg|24px]] [[FEM_Workbench|FEM Workbench]] for structural and thermo-mechanical analysis. Depending on the operating system you are working with, you'll need to install CalculiX before running your first simulation. Please see [[FEM_Install|FEM Install]].


<!--T:12-->
<!--T:12-->
Line 11: Line 14:
CalculiX is designed to run on Unix platforms like Linux and Irix computers but also on MS-Windows. CalculiX was developed by engineers from MTU Aero Engines, Munich, Germany, to assist them in designing machinery such as jet turbines. The software is currently released to the public on the terms of the GPL version 2.
CalculiX is designed to run on Unix platforms like Linux and Irix computers but also on MS-Windows. CalculiX was developed by engineers from MTU Aero Engines, Munich, Germany, to assist them in designing machinery such as jet turbines. The software is currently released to the public on the terms of the GPL version 2.


== Integration with FreeCAD == <!--T:3-->
== Integration with FreeCAD == <!--T:20-->

Interaction between the [[FEM Workbench]] and CalculiX is done through writing and reading text files. The sequence of operations is as follows:
<!--T:3-->
Interaction between the [[FEM_Workbench|FEM Workbench]] and CalculiX is done through writing and reading text files. The sequence of operations is as follows:


<!--T:10-->
<!--T:10-->
Line 21: Line 26:


<!--T:11-->
<!--T:11-->
The [[FEM SolverControl|FEM Control Solver]] tool manages the whole process. User interaction in the process is possible.
The [[FEM_SolverControl|FEM Control Solver]] tool manages the whole process. User interaction in the process is possible.


== Preprocessing interface == <!--T:4-->
== Preprocessing interface == <!--T:21-->

<!--T:4-->
The input file that CalculiX uses can be prepared and edited before the solver is started. The units used in the input file are independent of the units set in FreeCAD; they will always be millimeters (mm) and Newton (N).
The input file that CalculiX uses can be prepared and edited before the solver is started. The units used in the input file are independent of the units set in FreeCAD; they will always be millimeters (mm) and Newton (N).


Line 32: Line 39:
The CalculiX interface supports the following objects:
The CalculiX interface supports the following objects:


=== FEM Elements === <!--T:5-->
=== FEM Elements === <!--T:22-->

<!--T:5-->
* Tet4 and Tet10
* Tet4 and Tet10
* S3 and S6
* S3 and S6
* B31 and B32
* B31 and B32
* and those described in [[FEM Mesh CalculiX]]
* and those described in [[FEM_Mesh_CalculiX|FEM Mesh CalculiX]]


=== Analysis === <!--T:6-->
=== Analysis === <!--T:23-->

* Linear static analysis
<!--T:6-->
* Linear and nonlinear static analysis
* Frequency analysis
* Frequency analysis
* Linear buckling analysis
* Coupled thermal-structural analysis
* Coupled thermal-structural analysis


=== Materials === <!--T:7-->
=== Materials === <!--T:24-->

* One linear elastic isotropic material (uniformity in all directions)
<!--T:7-->
* Multiple material use is in development
* Linear elastic isotropic materials (uniformity in all directions)
* Plasticity with isotropic hardening

== Postprocessing interface == <!--T:25-->


== Postprocessing interface == <!--T:8-->
<!--T:8-->
The FEM Workbench loads CalculiX results to the result object which will contain:
The FEM Workbench loads CalculiX results into a [[FEM_ResultShow|result object]] which will contain:
* Displacements
* Displacements
* Stresses
* Stresses
* Strains
* Strains
* Equivalent plastic strain (PEEQ) – if nonlinear material was used
* Equivalent plastic strain (PEEQ) – if nonlinear material was used
* Temperature – for thermomachanical analysis
* Temperature – for thermomechanical analysis
Multiple result objects are created if CalculiX calculated more steps or eigenvalues from Frequency or Buckling analysis.
FreeCAD reads results from *.frd file which was created by CalculiX. If these results contain multiple time steps, each time step is imported to FreeCAD as a new result object. Same behavior applies for Frequency or Buckling analysis with multiple eigenvalues.


<!--T:18-->
<!--T:18-->
Reaction forces can be found in ccx_dat_file which contains reaction force components (fx, fy, fz) for each Constraint fixed and for each Constraint displacement which constrains translation degrees of freedom.
Reaction forces can be found in ccx_dat_file which contains reaction force components (fx, fy, fz) for each fixed boundary condition and for each displacement boundary condition which constrains translation degrees of freedom.


== Related == <!--T:16-->
== Related == <!--T:16-->
Line 64: Line 80:
* [[FEM_Mesh_CalculiX|FEM Mesh CalculiX]]
* [[FEM_Mesh_CalculiX|FEM Mesh CalculiX]]
* [[FEM_Preferences#CalculiX|CalculiX preferences]] dialog menu in the FEM Workbench preferences menu
* [[FEM_Preferences#CalculiX|CalculiX preferences]] dialog menu in the FEM Workbench preferences menu



</translate>
</translate>
Line 69: Line 86:
[[Category:Poweruser_Documentation{{#translation:}}]]
[[Category:Poweruser_Documentation{{#translation:}}]]
[[Category:Developer{{#translation:}}]]
[[Category:Developer{{#translation:}}]]
{{clear}}

Latest revision as of 18:46, 7 December 2023

Introduction

This page collects information on the CalculiX finite element solver, the default solver in the FEM Workbench for structural and thermo-mechanical analysis. Depending on the operating system you are working with, you'll need to install CalculiX before running your first simulation. Please see FEM Install.

The solver is able to do linear and non-linear calculations, for static, dynamic, and thermal problems. The solver operates on an Abaqus input file (.inp), which means it can be used with different pre-processors that support this format. The program includes its own graphical preprocessor which, however, is not used by FreeCAD, only the solver itself.

CalculiX is designed to run on Unix platforms like Linux and Irix computers but also on MS-Windows. CalculiX was developed by engineers from MTU Aero Engines, Munich, Germany, to assist them in designing machinery such as jet turbines. The software is currently released to the public on the terms of the GPL version 2.

Integration with FreeCAD

Interaction between the FEM Workbench and CalculiX is done through writing and reading text files. The sequence of operations is as follows:

  1. A CalculiX input file is created with details required to run the simulation
  2. The CalculiX solver is started with this input file
  3. The output from the solver is logged
  4. The output files from the solver are read, if they are available

The FEM Control Solver tool manages the whole process. User interaction in the process is possible.

Preprocessing interface

The input file that CalculiX uses can be prepared and edited before the solver is started. The units used in the input file are independent of the units set in FreeCAD; they will always be millimeters (mm) and Newton (N).

(ToDo: check this. What happens with the mesh if inch is used in FreeCAD? As density was introduced, with this we have kg and s and no longer N?! how about this?!)

The CalculiX interface supports the following objects:

FEM Elements

Analysis

  • Linear and nonlinear static analysis
  • Frequency analysis
  • Linear buckling analysis
  • Coupled thermal-structural analysis

Materials

  • Linear elastic isotropic materials (uniformity in all directions)
  • Plasticity with isotropic hardening

Postprocessing interface

The FEM Workbench loads CalculiX results into a result object which will contain:

  • Displacements
  • Stresses
  • Strains
  • Equivalent plastic strain (PEEQ) – if nonlinear material was used
  • Temperature – for thermomechanical analysis

FreeCAD reads results from *.frd file which was created by CalculiX. If these results contain multiple time steps, each time step is imported to FreeCAD as a new result object. Same behavior applies for Frequency or Buckling analysis with multiple eigenvalues.

Reaction forces can be found in ccx_dat_file which contains reaction force components (fx, fy, fz) for each fixed boundary condition and for each displacement boundary condition which constrains translation degrees of freedom.

Related