![]() |
OptFEM3DP1 Toolbox
V1.0
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 3D
|
Assembly of the Stiffness Elasticity Matrix by
-Lagrange finite elements in 3D using basic version (see report).
More...
Go to the source code of this file.
Functions | |
| function K = | StiffElasAssembling3DP1base (nq, nme, q, me, volumes, lambda, mu, Num) |
Assembly of the Stiffness Elasticity Matrix by -Lagrange finite elements in 3D using basic version (see report). | |
Assembly of the Stiffness Elasticity Matrix by
-Lagrange finite elements in 3D using basic version (see report).
Definition in file StiffElasAssembling3DP1base.m.
| function K = StiffElasAssembling3DP1base | ( | nq, | |
| nme, | |||
| q, | |||
| me, | |||
| volumes, | |||
| lambda, | |||
| mu, | |||
| Num | |||
| ) |
Assembly of the Stiffness Elasticity Matrix by
-Lagrange finite elements in 3D 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=CubeMesh(10);
KK=StiffElasAssembling3DP1base(Th.nq,Th.nme,Th.q,Th.me,Th.areas,1.,0.25,0);| nq | total number of vertices, also denoted by . |
| nme | total number of elements, also denoted by . |
| q | Array of vertices coordinates, array. is the -th coordinate of the -th vertex, and |
| me | Connectivity array, array. is the storage index of the -th vertex of the -th tetrahedron in the array of vertices coordinates, and . |
| volumes | Array of volumes, . volumes(k) is the volume of the k-th tetrahedron. |
| lambda | the first Lame coefficient in Hooke's law |
| mu | the second Lame coefficient in Hooke's law |
| Num |
|
| K | stiffness elasticity sparse matrix |
Definition at line 17 of file StiffElasAssembling3DP1base.m.