![]() |
OptFEM3DP1 Toolbox
V1.0
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 3D
|
Assembly of the Stiffness Matrix by
-Lagrange finite elements in 3D.
More...
Go to the source code of this file.
Functions | |
| function R = | StiffAssembling3DP1base (nq, nme, q, me, volumes) |
Assembly of the Stiffness Matrix by -Lagrange finite elements in 3D. | |
Assembly of the Stiffness Matrix by
-Lagrange finite elements in 3D.
Definition in file StiffAssembling3DP1base.m.
| function R = StiffAssembling3DP1base | ( | nq, | |
| nme, | |||
| q, | |||
| me, | |||
| volumes | |||
| ) |
Assembly of the Stiffness Matrix by
-Lagrange finite elements in 3D.
The Stiffness Matrix
is given by
where
are
-Lagrange basis functions.
Th=CubeMesh(10);
R=StiffAssembling3DP1base(Th.nq,Th.nme,Th.q,Th.me,Th.volumes);| 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. |
| R | Global stiffness matrix, sparse matrix. |
Definition at line 17 of file StiffAssembling3DP1base.m.