Finite Elements: Some Advanced Topics and Non-Linear (Implicit) Analysis
Finite Elements: Some Advanced Topics and Non-Linear (Implicit) Analysis
Finite Elements: Some Advanced Topics and Non-Linear (Implicit) Analysis
Composites modelling:
Advanced Finite Elements
IFB
Composites modelling:
Advanced Finite Elements
IFB
Composites modelling:
Advanced Finite Elements
Fi
uj= 0
ui
Fi = -(EA/L)u
(EA/L)uj, Fj= (EA/L)uj
ui= 0
uj
Stiffness matrix
IFB
Fj
Fi EA / L EA / L ui
F j EA / L EA / L u j
F K d
In matrix
form
Fj = (EA/L)*(-ui+uj)
Fj(=-Fi)
Fi k
F j k
k ui
k u j
Composites modelling:
Advanced Finite Elements
L1
1
E1, A1
E2, A2
k1 = E1A1/L1
f1
F1=- f11
u 1 , F1
F1
Force equilibrium
k2 = E2A2/L2
u2
u1
2,
F2
Element 1
Element 2
1 k1
2 k
1
2
2 k2
3 k
2
u3
2
3
3,
F3
dof
k1 u1 f
k1 u2 f
1
1
1
2
Internal
nodal forces
dof
k 2 u 2 f 22
k 2 u3 f 32
IFB
Composites modelling:
Advanced Finite Elements
u1
u2
u3
d.o.f.
0
0 0
0 k 2 k 2 Element 2 only
0 k 2 k 2
u1
u2
u3
k 1 k 1 0
Element 1 only k 1 k 1 0
0
0 0
ASSEMBLY
Global stiffness matrix of the assembly
K U F
1
k1
k1
k k k
1
2
1
0
k
IFB
dof
= F1
0 u1 F1
k 2 u2 F2
k 2 u3 F3
= F3
External loads
Composites modelling:
Advanced Finite Elements
k1
k1
k k k
1
2
1
0
k 20
0
Operations done
to enforce u3 =0
= -P
0 0 u1 F1
k 20 u2 F2
=0
0
k 2 1 u3 F3
u2 = - P / k2
2
1
3 dof
2
u1 = -P / k1 - P / k2
u3 = 0
Ditto for 2
Exercise: Impose the constraint at d.o.f 2; what are the expressions for displacement
6
IFB
Composites modelling:
Advanced Finite Elements
u4
4
Connectivity
k2
k3
Element
IFB
k1
u1
k4
u5
u3
Node 1
Node 2
u1
u2
k4
k
4
K 0
0
0
u3
k4
k1 k 2 k 4
k2
k1
0
u4
u5
k2
k2 k3
k1
0
k1
0
k3
d.o.f.
0
0
k3
0
k 3
Composites modelling:
Advanced Finite Elements
d.o.f.
u1
u2
u3 u1
u2
u3
k 1 k 1 0
0
0 0
k 1 k 1 0 + 0 k 2 k 2
0
0 k 2 k 2
0 0
Element 1 only
It is also symmetric.
Element 2 only
1
k1
k
1
0
0
0
k1
k
1
0
k1
k1
k1 k 2
0
k2
0
0
k2
0
0
k 2 k3
k3
0
k3
k3 k 4
k4
k1 k 2
k2
4
3 (dof)
0
k 2
k 2
4
0 u1 P1
0 u 2 P2
0 u3 P3
k 4 u 4 P4
k 4
u5 P5
IFB
Composites modelling:
Advanced Finite Elements
1
2
3
4
5
k1
0
0
k1
0
k4
0
0
0
k4
0
k4
0
k 2 k3
k3
k2
k3
k3 k 4
0
k1
0
k2
0
k1 k 2
P1 k1u1 k1u5
P2 k 4u 4 k 4u 2
P3 k 2u5 (k 2 k3 )u3 k3u 4
etc.
Note:
This poor numbering scheme will not change the final results. But the global stiffness
matrix structure is modified and it is no longer banded.
But it does remain symmetric.
9
IFB
Composites modelling:
Advanced Finite Elements
* * * * * * 0 0 0 0 0 0
* * * * * 0 0 0 0 0 0
* * * * * * 0 0 0 0
* * * * * 0 0 0 0
* * * * * * 0 0
* * * * * 0 0
* * * * * *
* * * * *
Symmetric
* * * *
* * *
* *
IFB
Composites modelling:
Advanced Finite Elements
Good
numbering
1
5
Half bandwidth = 6
Good numbering
scheme (optimal): The
global stiffness matrix
looks like this. It is 12*12
(=6 nodes *2 dof per
node) and well banded.
FE codes will only store
the banded part of one
symmetric half of the
matrix for inversion.
11
IFB
Bad
numbering
1
* * * * * * 0 0 0 0 0 0
* * * * * 0 0 0 0 0 0
* * * * * * 0 0 0 0
* * * * * 0 0 0 0
* * * * * * 0 0
* * * * * 0 0
* * * * * *
* * * * *
Symmetric
* * * *
* * *
* *
3
Bad numbering
scheme: If node 1 is
connected to node 6
then tems appear
here, for example.
The half bandwidth is
now 12 and the
matrix is sparsely
populated. It will
require much more
CPU and storage.
Composites modelling:
Advanced Finite Elements
Advantages can be made for reduced storage and easier inversion of [K] from:
1. Matrix symmetry,
2. Matrix sparcity (the large number of zero terms),
3. The fact that it is usually banded, or can be made to be banded.
Inversion procedures for [K] (e.g. Gaussian elimination) can be designed to
operate only on the banded part of the matrix; unnecessary operations with
zeros are avoided (saving CPU and storage).
All commercial FE codes will automatically renumber the nodes internally to try
and minimise bandwidth (e.g. renumber in the width wise direction of the
structure); you do not really see this as input and output nodal numbers remain
unchanged and refer to your original model.
Note: Renumbering is done with in Implicit codes for the above reasons.
12
IFB
Composites modelling:
Advanced Finite Elements
5192
3780
15576
521427
16.28
4.30E-03
:
:
:
:
16.35 (INTERNAL)
52.00 (EXTERNAL)
2.81E-02
6.54
13
IFB
Composites modelling:
Advanced Finite Elements
k u1
k u 2
F1 ku 1 ku 2
P ku 1 ku 2
F1 P
P ku 1 ku 2
P ku 1 ku 2
Implicit
p
FE models must have sufficient boundaryy conditions to suppress
pp
RBM
In 1D analysis 1 constraint
y
x
Note: This is for Implicit codes only the problems is not relevant to dynamic Explicit
14 codes; although you probably want some boundary conditions to represent correct loading.
IFB
Composites modelling:
Advanced Finite Elements
E.G. for a 2D plane loaded structure appropriate bcs (to suppress RBM) could be:
Constrained
Constrained in
x only
Constrained
Constrained in
x and y
15
IFB
Constrained
y
x
Composites modelling:
Advanced Finite Elements
x constrained
x constrained
y
x, y, z
constrained
x
z
16
IFB
Composites modelling:
Advanced Finite Elements
IFB
Composites modelling:
Advanced Finite Elements
E
Essentially
ti ll there
th
are two
t
types
t
off contact:
t t
Type 1 (Constraint equations) Special constraint equations and
interpolation functions enforce compatibility of free nodes to the coarse
mesh.
Type 2 (Temporary spring elements) Temporary spring elements
are introduced as contact occurs and removed when it disappears (=
penalty force method in Explicit codes). Fairly easy in Explicit codes, but
complex in Implicit codes as a new stiffness matrix must be formulated
with each new contact its highly
g y non-linear.
Master side
Slave side
18
IFB
Composites modelling:
Advanced Finite Elements
Shells to solids; or
beams to shells
shells....
19
IFB
Moments
free
If the 6 dof beam joins a single node of the 3 dof solid the
rotational moments are not transferred it acts as a pin joint.
Of course this free joint could be required in some cases!
Moments
transferred
Composites modelling:
Advanced Finite Elements
B E B t dxdy
T
1
1
[k ] t A 0 x32 0 x13 0 x21 E 0 x32 0 x13 0 x21
2A
2A
x32 y23 x13 y31 x21 y12
x32 y23 x13 y31 x21 y12
Area
Elasticity law e.g. for 2D plain stress:
x
E
y
2
1
xy
20
1
1
0 0
x
y
1
2 xy
0
0
10
IFB
Composites modelling:
Advanced Finite Elements
B E B t dxdy
B E B (detJ ) t dd
T
1 1
This makes numerical integration possible; e.g. Gauss quadrature which requires the
integration limits to be 01 (or -1 +1).
1 1
N 2
4
1
1 1
3
4
1
1 1
N 4
4
The same method as for the triangle element is used
to get the [B] matrix, except now in terms of and
=+1
=-1
1
=-1
x(u)
21
IFB
Composites modelling:
Advanced Finite Elements
F ( , )
1 1
d d
W W F ( ,
i 1
j1
In our case
F( i , j )
is the
F ( i , i ) B ( i , i ) EB ( i , i )
T
where
h
Wi and
d Wj are weighting
i hti
f t
factors
and
d F(i , i ) are values
l
off the
th integral
i t
l
function computed at n Gauss points. The following slides demonstrates the principle for
n=1, 2 and 3.
22
11
IFB
Composites modelling:
Advanced Finite Elements
F(X)
n=2
F(X)
00
0.0
Simpsons Rule,
etc
(X2-X1)
(X2-X1)
X
X1
X2
X1
X2
Area F (0) * ( X 2 X 1)
* ( X 2 X1) / 2
Increasing accuracy
23
IFB
Composites modelling:
Advanced Finite Elements
F()
Increasing accuracy
n=2
F()
0.774
0.0
0.0
-0.577
-0.774
8/9
1.0
2.0
-1
n=3
F()
0.577
1.0
-1
5/9
-1
12
IFB
Composites modelling:
Advanced Finite Elements
=0.577
Plane
=-0.577
Solid
element
element
=-0.577
=0.577
Usually codes allow the user control over the number of integration points per element.
Sometimes only n=1 is advised for certain solid elements to avoid locking problems.
25
IFB
Do not confuse the number of element nodes (which decides the strain-displacement
field) with the number of integration points (for accuracy of the element integration).
Composites modelling:
Advanced Finite Elements
An hourglass mode
26
13
IFB
Composites modelling:
Advanced Finite Elements
Hourglass control
This is controlled by (usually) very small Hourglass forces which are generated and try
to resist development of these modes.
Resistive
hourglass forces
1p
point integration
g
If it happens:
Reduced integration
Full integration
27
IFB
Composites modelling:
Advanced Finite Elements
Hourglassing
Hourglassing
28
14
IFB
Composites modelling:
Advanced Finite Elements
29
IFB
Composites modelling:
Advanced Finite Elements
Non-linear analysis
Linear analysis assumes:
1. Strains are small (usually 1-2%) and strains are linearly related to deformations, =du/dx.
2. Stresses are linearly related to strains, =E; E=constant.
3. Geometric changes
g are small and applied
pp
loads are proportional
p p
to stresses.
Geometric Nonlinearity
P
compression
Non-linear part
Non-linear
part (strain - (failure, strainsoftening, damage)
hardening)
tension
P
30
Note: The above non-linearities are often combined. For an Explicit code these are easily
handled; for an implicit code special analysis methods are needed.
15
IFB
Composites modelling:
Advanced Finite Elements
31
IFB
Composites modelling:
Advanced Finite Elements
Material
nonlinearity
lug
g
Region of contact depends on load
directions and the magnitude.
One surface is called SLAVE the other
is MASTER it doesnt matter which
is which they are interchangeable.
Note the orientations are important.
32
16
IFB
Composites modelling:
Advanced Finite Elements
With the Pin the area of contact is unknown in advance (it depends on load) and [K]
changes with loading A nonlinear iterative solution is required! [K] = f (P)
Klug
u
Kpin
33
IFB
Klug and Kpin are both constant, but the overlap changes with load.
Composites modelling:
Advanced Finite Elements
Load P
Sought solution
Iterations
Displacement u
17
IFB
Composites modelling:
Advanced Finite Elements
Linear spring
u
[P]
P=[K] u
35
IFB
Composites modelling:
Advanced Finite Elements
P1
F1
u1=uA + [KO] -1 P
4) The force in the bar F1 for the displacements (u1) can
be computed
F1 = ([KO]+[KG] )u1
Slope [Ko]
PA
u2=u1 + [KO] -1 P1
u1 u2
uA
u3
uB
Note: Each step u1 to u2, u2 to u3 etc., is an iteration in the load increment (PA to PB)
In highly geometrically non-linear problems the load increments P should be small to
ensure convergence, i.e. use many smaller load increments to reach the desired final load.
36
Convergence is when the norm of the out-of-balance forces and/or the norm of the
displacement increments, are sufficiently small. uT u
PT P
18
IFB
Composites modelling:
Advanced Finite Elements
Note:
F1
PA
uA
u1 u2
uB
Usually the modified NR method is CPU faster and preferred but it may have difficulties
to converge.
Some codes allow a mixture of the two methods with periodic updating, or updating only
when convergence gets slow and difficult. The user can usually select different options.
37
IFB
38
Composites modelling:
Advanced Finite Elements
A geometric hardening
structure [KG] > 0
A geometric
linear structure
[KG] = 0
A geometric softening
structure [KG] < 0
Load
increment
19
IFB
Composites modelling:
Advanced Finite Elements
Strain in x (=x)
= change in length (OA-OA)
original length (OA)
y(v)
V+
Original element
x(u)
( )
xy
u
dx u
u
x
x
dx
ditto
v
u
v
1
dx
x
x
x
....
u
1 u 1
dx
dx
39
IFB
v
y
... x
v
x
u
x
x ... v u
x
2
Composites modelling:
Advanced Finite Elements
dx
w
z (w)
w
dx
x
Lateral
loading
dx
Inplane loading
And in full 3D we
have the GreenLagrange strains
40
x(u )
w
dx dx 1 dx 1 ...
x
2 x
u 1 w
x 2 x
2
2
2
u 1 u v w
x 2 x x x
2
2
2
v 1 u v w
y 2 y y y
xy
Similar expressions
are developed for,
z , yz , zx
u v 1 u u v v w w
.....
y x 2 x y x y x y
20
IFB
Composites modelling:
Advanced Finite Elements
1 u v w
2 x x x
ditto for y , z
2
u
x
Lo
In Plane
terms
x
L>Lo
u v
1 u u v v w w
y x
2 x y x y x y
xy
ditto for yz , zx
This part assumes a linear straindisplacement relationship to compute [KO].
If only these terms are considered a linear
analysis is sufficient since [KO] is a
constant (independent of displacements).
L=Lo
IFB
Composites modelling:
Advanced Finite Elements
x
v3
u3
(x3,y3)
y (v)
xy
v
u
(x,y)
v1
u1
v2
(x1,y1)
u
x
(x2,y2)
u ( x, y ) c1 c2 x c3 y
v( x, y ) c4 c5 x c6 y
u
v
c2 y
c6
x
y
u v
c3 c5
y x
x
xy
42
1 u v w
2 x x x
ditto for y , z
2
u
x x
y23
v 1
y
0
y 2 A x
32
xy
u v
y x
[BG]
EBG dV
0
x32
y23
EBO dV
[KG]
u v
1 u u v v w w
y x
2 x y x y x y
ditto for yz , zx
u2
x (u)
u1
v
y31 0 y12 0 1
u
0 x13 0 x21 2
v
x13 y31 x21 y12 2
u 3
xij xi x j
v3
yij yi y j
21
IFB
Composites modelling:
Advanced Finite Elements
2
2
v
1 u v
y
2 y y
u u v v
u v
y x
x y x y
x
v
xy
u
x
1 u v
2 x x
2
xxL
x
L yyL 1 0
2
xyL
u
0
u
y
u
x
v
x
0
v
y
u
x
0 u
v y
y v
v x
x v
y
In matrix notation
x
1
0
2
u
43
IFB
0
u
y
u
x
v
x
0
v
y
L D.
u
x
0 u
v y
y v
v x
x v
y
d
d L D . dD .
2
2
d L D . d
Composites modelling:
Advanced Finite Elements
d L D . d
For the constant strain triangle element
d G d e
u
x
u
y23 0 y31 0 y12
y 1
These 2 rows need
d
computing !!
v
2A
x
0 x32 0 x13 0
v
y
d L D G d e
44
u1
0 v1
u
2
v2
x21 u3
v3
where
xij xi x j
yij yi y j
22
IFB
Composites modelling:
Advanced Finite Elements
LOAD CASE =
Loadcase 1
RESULT S FILE =
DISPLACEM ENT
CONT OURS OF DY
LOAD CASE =
Loadcase 1
RESULT S FILE =
DISPLACEM ENT
1
1
-0.872737
-0.763645
-0.654553
-0.545461
Linear:
Displacement
Dx
With the linear analysis the displacements will increase linearly with
applied loading
loading.
-0.436369
-0.327277
-0.218184
-0.109092
0
0.109092
Linear:
Displacement Dy
-6.24267
-5.20223
-4.16178
-3.12134
-2.08089
-1.04045
M ax 0.0000E+00 at Node 2
M LOAD
in -16.65
at Node
CASE
= 1 1
Increm ent 1 Load Factor = 0.100E+01
RESULT S FILE =
1
-0.34932
Nonlinear:
Displacement
Dx
45
-12.4853
-11.4449
-10.4045
-9.36401
-8.32357
-7.28312
DISPLACEMENT
CONT OURS OF DX
0.218184
0.327277
0.436369
0.545461
06 4 3
0.654553
0.763645
M ax 0.8727 at Node 1
M in -0.8727 at Node 50
-15.6067
-14.5662
-13.5258
CONT OURS OF DX
-16.6471
-0.17466
0 17466
0
0.17466
0.34932
0.52398
0.69864
0.873301
1.04796
1.22262
1.39728
1.57194
1.7466
1.92126
2.09592
2.27058
Max 2.434 at Node 1
Min -0.3602 at Node 63
IFB
Composites modelling:
Advanced Finite Elements
RESULT S FILE =
Loadcase 1
1
DISPLACEM ENT
CONT OURS OF DX
-4 37679
-4.37679
-3.82969
-3.28259
-2.73549
LOAD CASE
-2.18839
Increm ent 1
-1.6413
-1.0942
RESULT S FILE =
Y
DISPLACEM ENT
-0.547099
CONT OURS OF DX
Z
X
0
0.547099
1.62563
1.0942
3.25127
1.6413
4.8769
2.18839
6.50253
2.73549
8.12816
3.28259
Large deformation
geometric nonli
linear
analysis
l i
9.7538
3.82969
11.3794
M ax 4.366 at Node 1
13.0051
M i n -4.388 at Node 18
14.6307
16 2563
16.2563
17.882
19.5076
21.1332
22.7589
24.3845
M ax 25.28 at Node 52
M in -0.7337 at Node 23
Wrong!
46
Correct (probably)
23
IFB
Composites modelling:
Advanced Finite Elements
DPNRM
RDNRM
uT u
F T F
Individual maximums
47
IFB
Composites modelling:
Advanced Finite Elements
stress
strain
Yield point;
thereafter elastoplastic hardening
Instability
(necking)
leading to
damage and
failure
strain
stress
stress
time
48
24
IFB
Composites modelling:
Advanced Finite Elements
ES
P0
dp de
EO=/
EO
dp de
d = de + dp ,
d
d
d
EO
, EP
, ES
d E
d P
d E d P
Solution method:
1. For an imposed load increment the corresponding stress increment d is found assuming
linear elasticity (e.g. for a bar = (P1 P0)/A).
2. From the experimental stress-strain curve the corresponding strain increment d is found.
49
3. The element secant stiffness matrix is simply the stiffness matrix EO scaled by ES/EO.
IFB
Composites modelling:
Advanced Finite Elements
1 2 3
1 2
1 3
3
2 3
2 1
3
TOTAL
3 1
3
3 2
3
Deviatoric (shear)
Hydrostatic
1 2 2 2 3 2 3 1 2
2
50
25
IFB
Composites modelling:
Advanced Finite Elements
Y and curve as
measured from a
uniaxial test
For the material law you
must specify elastic and
plastic data (various
methods are possible)
IFB
F=Y
51
Yield condition
F Y
1 2 3
3
Composites modelling:
Advanced Finite Elements
An Elasto-plastic analysis
Preparing an elasto-plastic analysis
A linear elastic analysis using elastic material
behaviour is first undertaken.
undertaken Inspection of
the maximum stresses for the applied
loading allows an estimate of the load
needed to reach the yield point.
The elasto-plastic material law is then
defined and assigned.
Also specify the necessary controls to
perform
f
a non-linear
l
elasto-plastic
l
l
analysis.
l
The analysis is undertaken with several load
increments to a specified maximum load.
52
26
IFB
Composites modelling:
Advanced Finite Elements
IFB
Composites modelling:
Advanced Finite Elements
Static loading
nonlinear
l
analysis
l
Standard Newton
Raphson
User selected
convergence criteria
54
27
IFB
Composites modelling:
Advanced Finite Elements
Iteration
Load increment
Iteration number
Load
increment
More iterations
needed before the
next load increment
55
IFB
Composites modelling:
Advanced Finite Elements
56
28
IFB
Composites modelling:
Advanced Finite Elements
Buckling analysis
Pcr
( EI )
2
2
e
Primary (theoretical)
load path
P=Pcr
P
L
a
b
c
d
Bifurcation point e
and actual load path f
b
a
where Le 2 L
Buckling of complex structures can be predicted using Finite Elements and the total
geometric nonlinear stiffness matrix ([K] = [KO]+ [KG]); NB the [KG] matrix is nonlinear
since it is a function of the applied loads P.
57
IFB
Composites modelling:
Advanced Finite Elements
Buckling - a definition:
At buckling a load is reached where an applied virtual displace-ment {d} causes the loss in
membrane energy (due to this displacement) to equal the gain in bending energy without any
change in the external loading. The structure behaviour is unstable and there are different
possible deformations for the same applied loading. Mathematically the deformations {d}
causes zero
e o change
c a ge in tthe
ee
external
te a loading,
oad g,
([kO] +[kG]){d} = {dR} = 0 where {d} corresponds to the buckling mode.
P
Perfectly
straight
column
behaviour
Imperfect column
behaviour
Pcrit 4 EI / L
2
Pcrit 2 EI / L2
Note: There are as many possible buckling modes as unconstrained dof in the FE model.
58
29
IFB
Composites modelling:
Advanced Finite Elements
Pcr
2 ( EI )
L2e
The Euler load Pcr depends on the bending stiffness (EI), the length (L) and the end
constraints (free, pinned or clamped). Depending on the constraints the column effective
length Le (=KL) is modified as below.
Le
Le
59
IFB
End restraint
Le=KL
pinned-pinned
i
d i
d
10*L
1.0
clamped-clamped
0.5 * L
pinned-clamped
0.7 * L
clamped-free
2.0 * L
Composites modelling:
Advanced Finite Elements
Possible buckling
g in the side flanges
g (under
(
the point load). Simple Euler buckling is also
possible.
30
IFB
Composites modelling:
Advanced Finite Elements
LUSAS analysis of a composite box beam for the first 5 buckling modes
Geometry L=2000, b=94, h=188 and t=4.7.
Fully constrain one end and loaded at the other
with 1000N; E=32.8GPa, Gxy=4.8GPa, =0.3.
Z
MODE
FREQUENCY
ERROR NORM
53.5783
EIGENVALUE
1.16497
0.606236E-12
57.7202
1.20916
0.458210E-12
-57.7215
0.000000E+00 0.477816E-12
-62 1734
-62.1734
0 000000E+00 0.404732E-12
0.000000E+00
0 404732E-12
62.1760
1.25496
0.926765E-12
63.1296
1.26455
0.190411E-10
Z
Y
61
IFB
Composites modelling:
Advanced Finite Elements
mass M
stiffness K
M D C D K D R
damping
p gC
applied
load R
where [M], [C] and [K] are the nodal mass matrix, and the element damping and stiffness
, D and D the nodal accelerations,
matrices. {R} is the applied nodal loads and D
velocities and displacements.
Ignoring nodal loading and damping, and assuming harmonic motion with all particles in
phase with one another,
D D sin t
and
D D sin t
K M D 0
2
62
31
IFB
Composites modelling:
Advanced Finite Elements
Frequency analysis:
Basic theory
M1
M 1
x1
k1
M2
x2
k2
M3
x3
M d
dt
x
2
k3
K x 0
M4
x4
d x1
k11 x1 k12 x2 k13 x3 .... k1n xn 0
dt 2
2
d x2
M2
k 21 x1 k 22 x2 k 23 x3 .... k 2 n xn 0
dt 2
.
.
M1
x1
x
2
.
x
.
.
xn
d 2 xn
k n1 x1 k n 2 x2 k n 3 x3 .... k nn xn 0
2
63 dt
Mn
IFB
k11
k
21
.
K
.
.
k n1
d 2 x1
k11 x1 k12 x2 k13 x3 .... k1n xn 0
dt 2
d 2 x2
M2
k 21 x1 k 22 x2 k 23 x3 .... k 2 n xn 0
dt 2
.
2
Mn
d xn
k n1 x1 k n 2 x2 k n3 x3 .... k nn xn 0
dt 2
M3
0
.
.
.
kn 2
d 2 x1
2
dt2
d x2
2
d 2 x dt
2
dt
2.
d xn
dt 2
k1n
k 2 n
Siffness
matrix
k nn
Displacement
and
acceleration
vectors
Composites modelling:
Advanced Finite Elements
M1
k12
k 22
Mass
matrix
M n
M2
e4
2
x1
e1
64
x4
x2
e2
x3
e3
e5
x5
32
IFB
Composites modelling:
Advanced Finite Elements
2 M e K e 0 or
K M e 0
2
This is an eigenvalue problem and for non-zero solutions the determinant of this system of
equations must be zero.
K 2 M
33