FEM ConstraintSelfWeight/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 24: Line 24:
==Описание==
==Описание==


Defines a gravity acceleration of 9,81 m/s^2 acting on the whole model in the prescribed direction.
Defines a gravity acceleration acting on the whole model in the prescribed direction.

{{VersionMinus|0.21}}: The acceleration has a fixed value of 9.81 m/s^2.


<span id="Usage"></span>
<span id="Usage"></span>
Line 32: Line 34:
#* Press the {{Button|[[Image:FEM_ConstraintSelfWeight.svg|16px]] [[FEM_ConstraintSelfWeight|Gravity load]]}} button.
#* Press the {{Button|[[Image:FEM_ConstraintSelfWeight.svg|16px]] [[FEM_ConstraintSelfWeight|Gravity load]]}} button.
#* Select the {{MenuCommand|Model → Mechanical boundary conditions and loads → [[Image:FEM_ConstraintSelfWeight.svg|16px]] Gravity load}} option from the menu.
#* Select the {{MenuCommand|Model → Mechanical boundary conditions and loads → [[Image:FEM_ConstraintSelfWeight.svg|16px]] Gravity load}} option from the menu.
# A ConstraintSelfWeight object is created.
# You can modify the direction of gravity load by changing its vector coordinates in the property bar of the newly created ConstraintSelfWeight object.
# {{Version|0.22}}: Optionally change its {{PropertyData|Gravity Acceleration}} property.
# Optionally change its {{PropertyData|Gravity Direction}} property.


<span id="Scripting"></span>
<span id="Scripting"></span>
Line 63: Line 67:
===Limitations===
===Limitations===


*You need to modify the .inp file to edit gravity acceleration.
*{{VersionMinus|0.21}}: You need to modify the .inp file to edit gravity acceleration.
*Self-weight is applied to the element set Eall which includes the whole model.
*Self-weight is applied to the element set Eall which includes the whole model.



Revision as of 09:58, 24 January 2024

Other languages:

FEM ConstraintSelfWeight

Системное название
FEM ConstraintSelfWeight
Расположение в меню
FEM → Constraint self weight
Верстаки
FEM
Быстрые клавиши
C,W
Представлено в версии
-
См. также
FEM tutorial

Описание

Defines a gravity acceleration acting on the whole model in the prescribed direction.

version 0.21 and below: The acceleration has a fixed value of 9.81 m/s^2.

Применение

  1. There are several ways to invoke the command:
    • Press the Gravity load button.
    • Select the Model → Mechanical boundary conditions and loads → Gravity load option from the menu.
  2. A ConstraintSelfWeight object is created.
  3. introduced in version 0.22: Optionally change its ДанныеGravity Acceleration property.
  4. Optionally change its ДанныеGravity Direction property.

Программирование

New object:

import ObjectsFem
ObjectsFem.makeConstraintSelfWeight(name)

Add object to the analysis named Analysis:

App.ActiveDocument.Analysis.Member = App.ActiveDocument.Analysis.Member + [(object)]

Пример:

import ObjectsFem
selfweight_obj = ObjectsFem.makeConstraintSelfWeight("MySelfWeightObject")
App.ActiveDocument.Analysis.Member = App.ActiveDocument.Analysis.Member + [selfweight_obj]

Решатель CalculiX

Limitations

  • version 0.21 and below: You need to modify the .inp file to edit gravity acceleration.
  • Self-weight is applied to the element set Eall which includes the whole model.

Editing CalculiX input file

The acceleration constant can be manually edited after generating the CalculiX input file.

Example of lines in the .inp file:

*DLOAD
Eall,GRAV,9810,0.0,0.0,-1.0

where 9810 is a gravity acceleration magnitude in [mm/s^2], and 0,0,-1 is the direction vector. The value can be set as a multiple of standard gravity acceleration to simulate loading of e.g. 4g.

Решатель Z88

  • Currently, not implemented in the Z88 solver.