Hello, I have the following .fbd
file:
#!/bin/bash
#For the beam elements
valu c 1.
valu h 0.1
valu dy 1.0
valu ndx 0.05
valu ndy 0.018
pnt p1 -0.05 0 0
pnt p2 -0.05 0 dy
line l1 p1 p2 1
seta fix1 all
swep fix1 fix1 tra h 0 0 0
seta fix1 all
comp fix1 do
swep all wing tra 0 1 0 0
seta surface s A002 A003 A004
comp surface do
seta length l L00A L00B L008 L009
seta width l L002 L003 L006 L007
div length auto ndy
div width auto ndx
elty all he8
mesh all
send all abq
send fix1 abq nam
send surface abq nam
view elem
plot f all
sys mv surface.nam interface_beam.nam
sys mv fix1.nam fix1_beam.nam
The application is such that I need to have only one division in the Z direction. This prevents me from using the he20
type elements. Is it possible to have second order elements in the 2D XY plane?
My knowledge of the syntax for .fbd
files is limited and hence I seek help in this direction. Many thanks!