FEM Analysis/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(24 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
{{Docnav/ru
|
|[[FEM_MaterialSolid/ru|Твердотельный материал]]
|[[FEM_Workbench/ru|FEM]]
|IconL=
|IconR=FEM_MaterialSolid.svg
|IconC=Workbench_FEM.svg
}}

<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru|Name=FEM Analysis|Name/ru=FEM Analysis|MenuLocation=FEM → Analysis container‏‎||Workbenches=[[FEM Module/ru|FEM]]|Shortcut=N,A|SeeAlso=[[FEM_tutorial/ru|FEM tutorial]]}}
|Name=FEM Analysis
|Name/ru=FEM Analysis
|MenuLocation=Model → Блок анализа
|Workbenches=[[FEM_Workbench/ru|FEM]]
|Shortcut={{KEY|N}} {{KEY|A}}
|SeeAlso=[[FEM_tutorial/ru|FEM tutorial]]
}}
</div>
</div>


==Description==
<span id="Description"></span>
==Описание==

The FEM Analysis could be seen as a Container that holds all objects of a Finite Element Analysis. It is mandatory to have a analysis container which holds all the needed objects. At least one of the following objects is needed for a mechanical analysis:
* [[FEM_MaterialSolid| material]]
* [[FEM_ConstraintFixed| fixed constraint]]
* [[FEM_ConstraintForce| force constraint]] or [[FEM_ConstraintPressure| pressure constraint]]


The FEM Analysis could be seen as a Container that holds all objects of a Finite Element Analysis. It is mandatory to have an analysis container which holds all the needed objects. At least one of the following objects is necessary for a mechanical analysis:
* [[FEM_MaterialSolid|solid material]]
* [[FEM_ConstraintFixed|fixed boundary condition]] or [[FEM_ConstraintDisplacement|displacement boundary condition]]


<span id="Usage"></span>
==How to use==
==Применение==


# There are several ways to invoke the command:
# Press the {{KEY|[[Image:FEM_Analysis.png|24px]] [[FEM_Analysis|Analysis container]]}} button, or press {{KEY|N}} then {{KEY|A}} keys. A new Analysis is created and set to active.
#* Press the {{Button|[[Image:FEM_Analysis.svg|16px]] [[FEM_Analysis|Analysis container]]}} button.
#* Select the {{MenuCommand|Model → [[Image:FEM_Analysis.svg|16px]] Analysis container‏‎}} option from the menu.
#* Use the keyboard shortcut: {{KEY|S}} then {{KEY|A}}.
# A new Analysis is created and set to active.
# Other objects could be added or removed to the analysis container by drag and drop.
# Other objects could be added or removed to the analysis container by drag and drop.
# To add new FEM Objects to the document the analysis has to be active. Double click on the analysis does activate the analysis.
# To add new FEM Objects to the document the analysis has to be active. Double click on the analysis does activate the analysis.


<span id="Options"></span>
==Опции==


* Up to date there is no option to choose.
==Options==


<span id="Properties"></span>
* Up to date there is no option to choose.
==Свойства==
* A frequency analysis in in development. See [http://forum.freecadweb.org/viewtopic.php?f=18&t=12189] for more informations.


==Properties==


* {{PropertyData|OutpuDir}}: Specifies the working directory of the analysis
* {{PropertyData|OutpuDir}}: Specifies the working directory of the analysis


<span id="Scripting"></span>
==Программирование==


most code here is deprecated in 0.17.
==Scripting==

most code here is depreciated in 0.17.
* new analysis
* new analysis
{{Code|code=
{{Code|code=
Line 49: Line 69:
}}
}}


Примеры:

Examples:
{{Code|code=
{{Code|code=
import MechanicalAnalysis
import MechanicalAnalysis
Line 66: Line 85:




{{Docnav/ru
{{clear}}
|
<languages/>
|[[FEM_MaterialSolid/ru|Твердотельный материал]]
|[[FEM_Workbench/ru|FEM]]
|IconL=
|IconR=FEM_MaterialSolid.svg
|IconC=Workbench_FEM.svg
}}

{{FEM Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 13:21, 11 November 2023

FEM Analysis

Системное название
FEM Analysis
Расположение в меню
Model → Блок анализа
Верстаки
FEM
Быстрые клавиши
N A
Представлено в версии
-
См. также
FEM tutorial

Описание

The FEM Analysis could be seen as a Container that holds all objects of a Finite Element Analysis. It is mandatory to have an analysis container which holds all the needed objects. At least one of the following objects is necessary for a mechanical analysis:

Применение

  1. There are several ways to invoke the command:
    • Press the Analysis container button.
    • Select the Model → Analysis container‏‎ option from the menu.
    • Use the keyboard shortcut: S then A.
  2. A new Analysis is created and set to active.
  3. Other objects could be added or removed to the analysis container by drag and drop.
  4. To add new FEM Objects to the document the analysis has to be active. Double click on the analysis does activate the analysis.

Опции

  • Up to date there is no option to choose.

Свойства

  • ДанныеOutpuDir: Specifies the working directory of the analysis

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

most code here is deprecated in 0.17.

  • new analysis
MechanicalAnalysis.makeMechanicalAnalysis( name )
  • add object to the analysis
App.ActiveDocument.MechanicalAnalysis.Member = App.ActiveDocument.MechanicalAnalysis.Member + [ (object) ]
  • remove object from the analysis
member = App.ActiveDocument.MechanicalAnalysis.Member
member.remove( documentobject )
 App.ActiveDocument.MechanicalAnalysis.Member = member

Примеры:

import MechanicalAnalysis
analysis = MechanicalAnalysis.makeMechanicalAnalysis("MechanicalAnalysis")
FemGui.setActiveAnalysis(analysis)

addobj = App.ActiveDocument.getObject("MechanicalMaterial")
App.ActiveDocument.MechanicalAnalysis.Member = App.ActiveDocument.MechanicalAnalysis.Member + [addobj]

removeobj = App.ActiveDocument.getObject("MechanicalMaterial")
member = App.ActiveDocument.MechanicalAnalysis.Member
member.remove(removeobj)
App.ActiveDocument.MechanicalAnalysis.Member = member