![]() |
OptFEM2DP1 Toolbox
V1.2b3
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 2D
|
Assembly of the Stiffness Elasticity Matrix by -Lagrange finite elements using basic version (see report).
More...
Go to the source code of this file.
Functions | |
function K = | StiffElasAssemblingP1base (nq, nme, q, me, areas, lambda, mu, Num) |
Assembly of the Stiffness Elasticity Matrix by ![]() | |
Assembly of the Stiffness Elasticity Matrix by -Lagrange finite elements using basic version (see report).
Definition in file StiffElasAssemblingP1base.m.
function K = StiffElasAssemblingP1base | ( | nq, | |
nme, | |||
q, | |||
me, | |||
areas, | |||
lambda, | |||
mu, | |||
Num | |||
) |
Assembly of the Stiffness Elasticity Matrix by -Lagrange finite elements using basic version (see report).
The Stiffness Elasticity Matrix is given by
where are
-Lagrange vector basis functions. Here
and
are the elastic stress and strain tensors respectively.
Th=SquareMesh(10); lambda=1.; mu=1.; Num=0; KK=StiffElasAssemblingP1base(Th.nq,Th.nme,Th.q,Th.me,Th.areas,lambda,mu,Num);
nq | total number of nodes in the mesh, also denoted by ![]() |
nme | total number of triangles, also denoted by ![]() |
q | Array of vertices coordinates, ![]() ![]() ![]() ![]() ![]() ![]() |
me | Connectivity array, ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
areas | Array of areas, ![]() ![]() |
lambda | the first Lame coefficient in Hooke's law |
mu | the second Lame coefficient in Hooke's law |
Num |
|
K | ![]() |
Definition at line 17 of file StiffElasAssemblingP1base.m.