[★☆☆☆☆] Linear Analysis of A Truss Roof
The model can be downloaded. truss-roof.zip
Model
Node
A 2D truss model is developed. To define nodes, use the node
command. As this is
a 2D model, each node is defined by two coordinates, thus the command looks like this: node <tag> <x> <y>
.
Text Only | |
---|---|
Here we define 16 nodes. The truss roof has a span of 40 and an apex height of 7.5.
Element
To model truss elements, we use the T2D2
element. (Yes! The same designation
as in ABAQUS!)
Text Only | |
---|---|
Here the first five elements are shown. The cross sectional area can be directly specified
with T2D2
. Alternatively, the truss section can be built up manually using
basic shapes, see the T2D2S
element for details.
You may have noticed that the material model used is not defined. Do not worry, for model definitions, the order is not important, see Structure for explanation.
Load and BC
Definitions of nodes and elements are stored in files node
and element
. We load it first
using file
command.
For material, we simply define an elastic Elastic1D
material with a Young's modulus of \(3E4\).
The left-most node 14
is fixed, while the right-most node 16
is roller supported. This means for node 14
, both x
and y displacements are fixed, while for node 16
, only y displacement is fixed. One can use
either fix
(penalty method) or fix2
(multiplier method) to apply homogeneous boundary conditions. Both shall lead to the same result.
Text Only | |
---|---|
For load, we apply a vertical displacement
load on top of the apex.
Text Only | |
---|---|
The second parameter 0
is a placeholder for amplitude
, a 0
means a
default Ramp
is used.
Analysis
A simple static step is required to analyse the model.
Text Only | |
---|---|
Probe Result
It is possible to probe the simple results of the analysis, for example, one can check the displacement and resistance
of node 3
by using the peek
command. To record various results, one may want
to use recorder
command.
Text Only | |
---|---|
The following printout shall be expected.
Text Only | |
---|---|
Bye
Do not forget to quit.
Text Only | |
---|---|
Results
The deformation is shown.