FEM MaterialMechanicalNonlinear/ro: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>
{{UnfinishedDocu{{#translation:}}}}


{{Docnav
{{Docnav
Line 17: Line 16:
==Description==
==Description==


Creates a nonlinear mechanical material. Currently, only plasticity with simple hardening is available.
Creates a nonlinear mechanical material. Currently, only plasticity with simple (isotropic) hardening is available.


==Usage==
==Usage==
Line 26: Line 25:
# To edit an existing MaterialMechanicalNonlinear object:
# To edit an existing MaterialMechanicalNonlinear object:
#* Select it in the [[Tree_view|Tree view]].
#* Select it in the [[Tree_view|Tree view]].
#* Specify the material model (currently, only simple hardening is available).
#* Select the material model (currently, only simple hardening is available).
#* Define yield points (stress vs plastic strain). The first point must have a zero plastic strain.
#* Define yield points (stress [MPa] vs plastic strain). The first point must have a zero plastic strain. Press the {{Button|...}} button next to {{PropertyData|Yield Points}} to input the points using a user-friendly list. The syntax is described in the [[#Notes|Notes]] section.


==Notes==
==Notes==


* In FreeCAD 0.19 and older versions, only 3 yield points can be specified. Since version 0.20 a list of yield points can contain as many as required.
* In FreeCAD 0.19 and older versions, only 3 yield points can be specified. Since version 0.20 a list of yield points can contain as many as required.
* The syntax should be:

: {{Code|code=
stress_1, 0
stress_2, plastic_strain_2
...
}}

: With dot as the decimal separator since that's what CalculiX uses.

: For example to define a bilinear model with hardening for S275 steel:

: {{Code|code=
275, 0
490, 0.2
}}

: Or, to define perfect plasticity with no hardening for this material:

: {{Code|code=
275, 0
}}





Revision as of 13:14, 24 November 2023

FEM MaterialMechanicalNonlinear

Menu location
Model → Nonlinear mechanical material
Workbenches
FEM
Default shortcut
None
Introduced in version
-
See also
FEM tutorial

Description

Creates a nonlinear mechanical material. Currently, only plasticity with simple (isotropic) hardening is available.

Usage

  1. To create a new MaterialMechanicalNonlinear object do the following:
  2. To edit an existing MaterialMechanicalNonlinear object:
    • Select it in the Tree view.
    • Select the material model (currently, only simple hardening is available).
    • Define yield points (stress [MPa] vs plastic strain). The first point must have a zero plastic strain. Press the ... button next to DateYield Points to input the points using a user-friendly list. The syntax is described in the Notes section.

Notes

  • In FreeCAD 0.19 and older versions, only 3 yield points can be specified. Since version 0.20 a list of yield points can contain as many as required.
  • The syntax should be:
stress_1, 0
stress_2, plastic_strain_2
...
With dot as the decimal separator since that's what CalculiX uses.
For example to define a bilinear model with hardening for S275 steel:
275, 0
490, 0.2
Or, to define perfect plasticity with no hardening for this material:
275, 0