Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The mesh can be created in any plane.

The accuracy that can be obtained from the Finite Element Model created in the system is directly dependent on the finite element mesh used. Finite Element mesh (mesh) is used to divide the 3D model into smaller areas called elements, on which a set of equations is solved.

The mesh size should be chosen carefully to ensure that the model is not over-meshed and that the computation time is reasonable. A too fine mesh size increases the computational time, in this example, it is created on the X-Y plane.and a too coarse mesh size will result in an inaccurate analysis.
The mesh size should be such that the element size is small enough to capture the details of the model, but large enough to keep the computation time reasonable.

Example Syntax:

Code Block
languagexml
 ...
    <O N="MESH" T="FEMeshSurface" CX="12" CY="12" ConstraintPts="[]" Thickness="10" Material="@NULL|Material" Surface="@NULL|Surface" CoorSys="@NULL|CoorSys" Group="@NULL|FEGroup">
        <O T="Surface">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
...
...
</O>

In the OpenBrIM library, operating a Core Object can be done through the command line by typing "<ObjectName..." and highlighting the desired object, then pressing the "Tab" key on the keyboard.

This process will display the components of the selected object on the command line and can be done for any core object.

Image Added

Example:

Code Block
languagexml
<O N="FEMeshObject1" T="Project" Category="FEM Objects" TransAlignRule="Right">
    <!-- created by ParamML Examples on 07.02.2023 -->
    <O N="MESH" T="FEMeshSurface" CX="12" CY="12" ConstraintPts="[]" Thickness="10" Material="@NULL|Material" Surface="@NULL|Surface" CoorSys="@NULL|CoorSys" Group="@NULL|FEGroup" IsConstraint="1">
        <O T="Surface">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
</O>
Image Added

The object in question has three defined parameters: Surface, CX, and CY. The FEMeshSurface function generates a mesh on the defined Surface.
CX and CY parameters set the mesh sizes along their respective directions.
The CX and CY parameters control the mesh size in their respective directions, creating a node every 12 units in the X direction and every 12 units in the Y direction. If the values of CX and CY are increased, the mesh grid will also become larger.

Code Block
languagexml
<O N="FEMeshObject1" T="Project" Category="FEM Objects" TransAlignRule="Right">
    <!-- created by ParamML Examples on 07.02.2023 -->
    <O N="MESH" T="FEMeshSurface" CX="48" CY="48" ConstraintPts="[]" Thickness="10" Material="@NULL|Material" Surface="@NULL|Surface" CoorSys="@NULL|CoorSys" Group="@NULL|FEGroup" IsConstraint="1">
        <O T="Surface">
            <O T="Point" X="0" Y="0" />
            <O T="Point" X="240" Y="0" />
            <O T="Point" X="240" Y="240" />
            <O T="Point" X="0" Y="240" />
        </O>
    </O>
</O>
Image Added

To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=FEM+Objects&obj=objidcmkjttntthc0f10dwegu7ll)