OptFEM2DP1 Toolbox  V1.2b3
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 2D
 All Files Functions Pages
StiffAssemblingP1base.m
Go to the documentation of this file.
1 function R=StiffAssemblingP1base(nq,nme,q,me,areas)
2 % function R=StiffAssemblingP1base(nq,nme,q,me,areas)
3 % Assembly of the Stiffness Matrix by `P_1`-Lagrange finite elements
4 % - Basic version (see report).
5 %
6 % The Stiffness Matrix `\Stiff` is given by
7 % ``\Stiff_{i,j}=\int_\DOMH \DOT{\GRAD\FoncBase_i(\q)}{\GRAD\FoncBase_j(\q)}d\q,\ \forall (i,j)\in{\ENS{1}{\nq}}^2``
8 % where `\FoncBase_i` are `P_1`-Lagrange basis functions.
9 %
10 % Parameters:
11 % nq: total number of nodes of the mesh, also denoted by `\nq`.
12 % nme: total number of triangles, also denoted by `\nme`.
13 % q: Array of vertices coordinates, `2\times\nq` array. <br/>
14 % `{\q}(\il,j)` is the
15 % `\il`-th coordinate of the `j`-th vertex, `\il\in\{1,2\}` and
16 % `j\in\ENS{1}{\nq}`
17 % me: Connectivity array, `3\times\nme` array. <br/>
18 % `\me(\jl,k)` is the storage index of the
19 % `\jl`-th vertex of the `k`-th triangle in the array `\q`, `\jl\in\{1,2,3\}` and
20 % `k\in{\ENS{1}{\nme}}`.
21 % areas: Array of areas, `1\times\nme` array. areas(k) is the area of the `k`-th triangle.
22 %
23 % Return values:
24 % R: Global stiffness matrix, `\nq\times\nq` sparse matrix.
25 %
26 % Example:
27 % @verbatim
28 % Th=SquareMesh(10);
29 % R=StiffAssemblingP1base(Th.nq,Th.nme,Th.q,Th.me,Th.areas);
30 % @endverbatim
31 %
32 % See also:
33 % #ElemStiffMatP1
34 % Copyright:
35 % See \ref license
36 R=sparse(nq,nq);
37 for k=1:nme
38  E=ElemStiffMatP1(q(:,me(1,k)),q(:,me(2,k)),q(:,me(3,k)),areas(k));
39  for il=1:3
40  i=me(il,k);
41  for jl=1:3
42  j=me(jl,k);
43  R(i,j)=R(i,j)+E(il,jl);
44  end
45  end
46 end