FEM RandbedingungVerschiebung

From FreeCAD Documentation
This page is a translated version of the page FEM ConstraintDisplacement and the translation is 52% complete.

FEM RandbedingungVerschiebung

Menüeintrag
Modell → Mechanische Randbedingungen und Belastungen → Randbedingung Verschiebung
Arbeitsbereich
FEM
Standardtastenkürzel
Keiner
Eingeführt in Version
-
Siehe auch
FEM-Anleitung

Beschreibung

Erstellt eine FEM-Randbedingungn für eine festgelegte Verschiebung (Auslenkung) eines ausgewählten Objekts für bestimmte Freiheitsgrade.

Anwendung

  1. Die Schaltfläche Randbedingung Verschiebung drücken oder den Menüeintrag Modell → Mechanische Randbedingungen und Belastungen → Randbedingung Verschiebung auswählen.
  2. In der 3D-Ansicht das Objekt auswählen, dem die Randbedingung zugeordnet werden soll; dies kann ein Knoten (Ecke), eine Kante, oder eine Fläche sein.
  3. Die Schaltfläche Hinzufügen drücken.
  4. Das Deaktivieren von Unspecified aktiviert die erforderlichen Felder zum Bearbeiten.
  5. Die Werte anpassen oder (eingeführt mit Version 0.21) eine Formel für die Versatzwerte festlegen.

Formeln

eingeführt mit Version 0.21

Allgemein

For the solver Elmer it is possible to define the displacement as a formula. In this case the solver sets the displacement according to the given formula variable.

Take for example the case that we want to perform a transient analysis. For every time step the displacement should be increased by 6 mm:

enter this in the Formula field:
Variable "time"; Real MATC "0.006*tx"

This code has the following syntax:

  • the prefix Variable specifies that the displacement is not a constant but a variable
  • the variable is the current time
  • the displacement values are returned as Real (floating point) values
  • MATC is a prefix for the Elmer solver indicating that the following code is a formula
  • tx is always the name of the variable in MATC formulas, no matter that tx in our case is actually t

Drehungen

Elmer only uses the Displacement * fields of the boundary condition. To define rotations, we need a formula.

If for example a face should be rotated according to this condition:

then we need to enter for Displacement x
Variable "time, Coordinate" Real MATC "(cos(tx(0)*pi)-1.0)*tx(1)-sin(tx(0)*pi)*tx(2)

and for Displacement y
Variable "time, Coordinate" Real MATC "(cos(tx(0)*pi)-1.0)*tx(2)+sin(tx(0)*pi)*tx(1)

This code has the following syntax:

  • we have 4 variables, the time and all possible coordinates (x, y z)
  • tx is a vector, tx(0) refers to the first variable, the time, while tx(1) refers to the first coordinate x
  • pi denotes and was added so that after a rotation of 180° is performed

Hinweise

For the solver CalculiX: