FESurface
The "FESurface" Object is a component of the finite element model that represents foundations or slabs. It requires at least three different "Node" Objects and a Material object, and the thickness must also be specified using the Thickness parameter.
Example Syntax:
...
<O T="FESurface">
...
...
</O>Example:
<br><O N="FESurfaceObject1" T="Project" Category="FEM Objects" TransAlignRule="Right"><br> <!-- created by ParamML Examples on 07.02.2023 --><br> <O N="Inputs" T="Group"><br> <P N="h_col" V="500" D="column height" Role="Input" Category="Inputs" /><br> <P N="b_bm" V="400" D="beam width" Role="Input" Category="Inputs" /><br> <P N="d_bm" V="500" D="beam depth" Role="Input" Category="Inputs" /><br> </O><br> <O N="Column" T="Line"><br> <O T="Point" X="b_bm" Y="0" Z="0" /><br> <O T="Point" X="b_bm" Y="0" Z="h_col" /><br> <O N="ColSec1" T="Section"><br> <O T="Shape"><br> <O T="Point" X="0" Y="0" /><br> <O T="Point" X="0" Y="b_bm" /><br> <O T="Point" X="d_bm" Y="b_bm" /><br> <O T="Point" X="d_bm" Y="0" /><br> </O><br> <O N="ColConcrete" T="Material"><br> <P N="E" V="519120" /><br> <P N="G" V="221904" /><br> <P N="d" V="0.15" /><br> <P N="a" V="0.0000055" /><br> <P N="Fc28" V="576" /><br> </O><br> </O><br> </O><br> <O N="NB1" T="Node" Z="0" Y="0" X="0" Rz="-1" Ry="-1" Rx="-1" Tz="-1" Ty="-1" Tx="-1" /><br> <O N="NB2" T="Node" Z="0" Y="0" X="b_bm" Rz="-1" Ry="-1" Rx="-1" Tz="-1" Ty="-1" Tx="-1" /><br> <O N="NB3" T="Node" Z="0" Y="d_bm" X="b_bm" Rz="-1" Ry="-1" Rx="-1" Tz="-1" Ty="-1" Tx="-1" /><br> <O N="NB4" T="Node" Z="0" Y="d_bm" X="0" Rz="-1" Ry="-1" Rx="-1" Tz="-1" Ty="-1" Tx="-1" /><br> <O N="N1" T="Node" X="0" Y="0" Z="h_col" /><br> <O N="N2" T="Node" X="b_bm" Y="0" Z="h_col" /><br> <O N="N3" T="Node" X="b_bm" Y="d_bm" Z="h_col" /><br> <O N="N4" T="Node" X="0" Y="d_bm" Z="h_col" /><br> <O N="L1" T="FELine"><br> <P N="Node1" V="NB1" T="Node" /><br> <P N="Node2" V="N1" T="Node" /><br> <P N="Section" V="ColSec1" T="Section" /><br> <P N="Beta" V="0" /><br> </O><br> <O N="L2" T="FELine"><br> <P N="Node1" V="NB2" T="Node" /><br> <P N="Node2" V="N2" T="Node" /><br> <P N="Section" V="ColSec1" T="Section" /><br> <P N="Beta" V="0" /><br> </O><br> <O N="L3" T="FELine"><br> <P N="Node1" V="NB3" T="Node" /><br> <P N="Node2" V="N3" T="Node" /><br> <P N="Section" V="ColSec1" T="Section" /><br> <P N="Beta" V="0" /><br> </O><br> <O N="L4" T="FELine"><br> <P N="Node1" V="NB4" T="Node" /><br> <P N="Node2" V="N4" T="Node" /><br> <P N="Section" V="ColSec1" T="Section" /><br> <P N="Beta" V="0" /><br> </O><br> <O N="TopMeshSurface" T="FESurface"><br> <P N="Material" V="ColConcrete" T="Material" /><br> <P N="Node1" V="N1" T="Node" /><br> <P N="Node2" V="N2" T="Node" /><br> <P N="Node3" V="N3" T="Node" /><br> <P N="Node4" V="N4" T="Node" /><br> <P N="Thickness" V="10" /><br> </O><br></O><br>

In the above example, 8 "FENode", 4 "FELine", material class and finally "FESurface" were defined.
To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=FEM+Objects&obj=objid4faplfilk9xmwl79y0h1d9)
Parameters of FESurface Object:
Label
Mandatory
Name and Type Attributes
Default Description and Value Attributes
Other Attributes
1
Node 1
Yes
N="Node1" T="Node"
D="Node 1: The first node of the finite element." V=""
Role="Input"
2
Node 2
Yes
N="Node2" T="Node"
D="Node 2: The second node of the finite element." V=""
Role="Input"
3
Node 3
Yes
N="Node3" T="Node"
D="Node 3: The third node of the finite element." V=""
Role="Input"
4
Node 4
Yes
N="Node4" T="Node"
D="Node 4: The fourth node of the finite element." V=""
Role="Input"
5
Thickness
Yes
N="Thickness"
D="Thickness: The thickness of the surface." V="0"
Role="Input"
6
Material
Yes
N="Material" T="Material"
D="Material: The material property of the finite element." V=""
Role="Input"
Last updated