Software for performing meaningful analysis increasingly shows up on the desktops of design engineers.
A finite-element model can be thought of as a system of solid springs. When a load is applied to the structure, all elements deform until all forces balance. For each element in the model, equations can be written relating displacements and forces at the nodes.
The element shown here, for example, is a 2D quadrilateral having four nodes. Each node has two degrees of freedom associated with it (displacements in X and Y directions), so that the element has a total of eight degrees of freedom. There must also be a nodal force for each nodal degree, so there are also eight nodal forces for the element.
These displacements and forces are identified by a coordinate numbering system for entry the computer program. For example, dxi1 is the deflection in the X direction for element i at node 1, while dyi1 is the deflection in the Y direction for the same node in the same element. Forces are identified in a similar manner, so that Fxi1 is the force in the X direction for element i at node 1.
An equation relating displacements and forces for the element takes the form of basic spring equation, F = kd. For four nodes:
-
k11dxi1 + k12dyi1 + k13dxi2 + k14dyi2 + . . . + k18dyi4 = Fxi1
-
k21dxi1 + k22dyi1 + k23dxi2 + k24dyi2 + . . . + k28dyi4 = Fyi1
-
k31dxi1 + k32dyi1 + k33dxi2 + k34dyi2 + . . . + k38dyi4 = Fxi2
-
k81dxi1 + k82dyi1 + k83dxi2 + k84dyi2 + . . . + k88dyi4 = Fyi4