File: Element_P3dc.cpp

package info (click to toggle)
freefem%2B%2B 3.61.1%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 17,108 kB
  • sloc: cpp: 141,214; ansic: 28,664; sh: 4,925; makefile: 3,142; fortran: 1,171; perl: 844; awk: 290; php: 199; pascal: 41; f90: 32
file content (227 lines) | stat: -rw-r--r-- 7,377 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/****************************************************************************/
/* This file is part of FreeFem++.                                          */
/*                                                                          */
/* FreeFem++ is free software: you can redistribute it and/or modify        */
/* it under the terms of the GNU Lesser General Public License as           */
/* published by the Free Software Foundation, either version 3 of           */
/* the License, or (at your option) any later version.                      */
/*                                                                          */
/* FreeFem++ is distributed in the hope that it will be useful,             */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of           */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            */
/* GNU Lesser General Public License for more details.                      */
/*                                                                          */
/* You should have received a copy of the GNU Lesser General Public License */
/* along with FreeFem++. If not, see <http://www.gnu.org/licenses/>.        */
/****************************************************************************/
// SUMMARY : ...
// LICENSE : LGPLv3
// ORG     : LJLL Universite Pierre et Marie Curie, Paris, FRANCE
// AUTHORS : ...
// E-MAIL  : ...

// *INDENT-OFF* //
//ff-c++-LIBRARY-dep:
//ff-c++-cpp-dep:
// *INDENT-ON* //

#include "ff++.hpp"
#include "AddNewFE.h"

// Attention probleme de numerotation des inconnues
// -------------------------------------------------
// dans freefem, il y a un noeud par objets  sommet, arete, element.
// et donc la numerotation des dl dans l'element depend
// de l'orientation des aretes
//
/// ---------------------------------------------------------------
namespace  Fem2D {
	// ------ P3dc
	class TypeOfFE_P3dcLagrange: public TypeOfFE {
		public:
			static const int k = 3;
			static const int ndf = (k + 2) * (k + 1) / 2;
			static int Data [];
			static double Pi_h_coef [];
			static const int nn[10][3];
			static const int aa[10][3];
			static const int ff[10];
			static const int il[10];
			static const int jl[10];
			static const int kl[10];
			static const R2 G;
			static const R cshrink;
			static const R cshrink1;
			// (1 -1/3)*
			static R2 Shrink (const R2 &P) {return (P - G) * cshrink + G;}

			static R2 Shrink1 (const R2 &P) {return (P - G) * cshrink1 + G;}

			TypeOfFE_P3dcLagrange (): TypeOfFE(3 + 2 * 3 + 1, 1, Data, 4, 1, 10, 10, Pi_h_coef) {
				static const R2 Pt[10] = {
					R2(0 / 3., 0 / 3.),
					R2(3 / 3., 0 / 3.),
					R2(0 / 3., 3 / 3.),
					R2(2 / 3., 1 / 3.),
					R2(1 / 3., 2 / 3.),
					R2(0 / 3., 2 / 3.),
					R2(0 / 3., 1 / 3.),
					R2(1 / 3., 0 / 3.),
					R2(2 / 3., 0 / 3.),
					R2(1 / 3., 1 / 3.)};

				// 3,4,5,6,7,8
				for (int i = 0; i < NbDoF; i++) {
					pij_alpha[i] = IPJ(i, i, 0);
					P_Pi_h[i] = Shrink(Pt[i]);
				}
			}

			void FB (const bool *whatd, const Mesh &Th, const Triangle &K, const R2 &P, RNMK_ &val) const;
			/*   void Pi_h_alpha(const baseFElement & K,KN_<double> & v) const
			 * {
			 * for (int i=0;i<10;++i)
			 *  v[i]=1;
			 * int e0=K.EdgeOrientation(0);
			 * int e1=K.EdgeOrientation(1);
			 * int e2=K.EdgeOrientation(2);
			 * int ooo[6]={e0,e0,e1,e1,e2,e2};
			 * int iii[6];
			 * int jjj[6];
			 * for(int i=0;i<6;++i)
			 *  {
			 *    iii[i]= 3+2*i; // si  orient = 1
			 *    jjj[i]= 4+2*i; // si orient = -1
			 *  }
			 * for(int i=0;i<6;++i)
			 *  if(ooo[i]==1) v[jjj[i]]=0;
			 *  else v[iii[i]]=0;
			 *
			 *  }*/
	};

	const R2 TypeOfFE_P3dcLagrange::G(1. / 3., 1. / 3.);
	const R TypeOfFE_P3dcLagrange::cshrink = 1 - 1e-2;
	const R TypeOfFE_P3dcLagrange::cshrink1 = 1. / TypeOfFE_P3dcLagrange::cshrink;

	// on what     nu df on node node of df
	int TypeOfFE_P3dcLagrange::Data [] = {
		6, 6, 6, 6, 6, 6, 6, 6, 6, 6,	// the support number  of the node of the df
		0, 1, 2, 3, 4, 5, 6, 7, 8, 9,	// the number of the df on  the node
		0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	// the node of the df
		0, 0, 0, 0, 0, 0, 0, 0, 0, 0,	// the df come from which FE (generaly 0)
		0, 1, 2, 3, 4, 5, 6, 7, 8, 9,	// which are de df on sub FE
		0,	// for each compontant $j=0,N-1$ it give the sub FE associated
		0, 10};
	double TypeOfFE_P3dcLagrange::Pi_h_coef [] = {1., 1., 1., 1., 1., 1., 1., 1., 1., 1.};
	void TypeOfFE_P3dcLagrange::FB (const bool *whatd, const Mesh &, const Triangle &K, const R2 &P1, RNMK_ &val) const {
		R2 P = Shrink1(P1);
		R2 A(K[0]), B(K[1]), C(K[2]);
		R l0 = 1 - P.x - P.y, l1 = P.x, l2 = P.y;
		R L[3] = {l0 *k, l1 *k, l2 *k};

		throwassert(val.N() >= 10);
		throwassert(val.M() == 1);
		// Attention il faut renumeroter les fonction de bases
		// car dans freefem++, il y a un node par sommet, arete or element
		// et la numerotation naturelle  mais 2 noud pas arete
		// donc p est la perumation
		// echange de numerotation si les arete sont dans le mauvais sens
		int p[10];

		for (int i = 0; i < 10; ++i) {
			p[i] = i;
		}

		/*
		 * if(K.EdgeOrientation(0) <0) Exchange(p[3],p[4]);// 3,4
		 * if(K.EdgeOrientation(1) <0) Exchange(p[5],p[6]);// 5,6
		 * if(K.EdgeOrientation(2) <0) Exchange(p[7],p[8]);// 7,8
		 */
		// cout << KN_<int>(p,10) <<endl;
		val = 0;
		/*
		 * //  les fonction de base du Pk Lagrange sont
		 * //
		 * //
		 */
// --

		if (whatd[op_id]) {
			RN_ f0(val('.', 0, op_id));

			for (int df = 0; df < ndf; df++) {
				int pdf = p[df];
				R f = 1. / ff[df];

				for (int i = 0; i < k; ++i) {
					f *= L[nn[df][i]] - aa[df][i];
					// cout <<  L[nn[df][i]]-aa[df][i]<< " ";
				}

				f0[pdf] = f;
				// cout << pdf<< " " << df << " f " <<f <<endl;
			}

			// cout <<" L " << L[0] << " " << L[1] << " " << L[2] << endl;
			// cout << ndf << " nbf = "<< f0 <<endl;
		}

		if (whatd[op_dx] || whatd[op_dy] || whatd[op_dxx] || whatd[op_dyy] || whatd[op_dxy]) {
			R ks = k * cshrink1;
			R2 D [] = {K.H(0) * ks, K.H(1) * ks, K.H(2) * ks};
			if (whatd[op_dx] || whatd[op_dy]) {
				for (int df = 0; df < ndf; df++) {
					int pdf = p[df];
					R fx = 0., fy = 0., f = 1. / ff[df];

					for (int i = 0; i < k; ++i) {
						int n = nn[df][i];
						R Ln = L[n] - aa[df][i];
						fx = fx * Ln + f * D[n].x;
						fy = fy * Ln + f * D[n].y;
						f = f * Ln;
					}

					if (whatd[op_dx]) {val(pdf, 0, op_dx) = fx;}

					if (whatd[op_dy]) {val(pdf, 0, op_dy) = fy;}
				}
			}

			if (whatd[op_dyy] || whatd[op_dxy] || whatd[op_dxx]) {
				for (int df = 0; df < ndf; df++) {
					int pdf = p[df];
					R fx = 0., fy = 0., f = 1. / ff[df];
					R fxx = 0., fyy = 0., fxy = 0.;

					for (int i = 0; i < k; ++i) {
						int n = nn[df][i];
						R Ln = L[n] - aa[df][i];
						fxx = fxx * Ln + 2. * fx * D[n].x;
						fyy = fyy * Ln + 2. * fy * D[n].y;
						fxy = fxy * Ln + fx * D[n].y + fy * D[n].x;
						fx = fx * Ln + f * D[n].x;
						fy = fy * Ln + f * D[n].y;
						f = f * Ln;
					}

					if (whatd[op_dxx]) {val(pdf, 0, op_dxx) = fxx;}

					if (whatd[op_dyy]) {val(pdf, 0, op_dyy) = fyy;}

					if (whatd[op_dxy]) {val(pdf, 0, op_dxy) = fxy;}
				}
			}
		}
	}

#include "Element_P3dc.hpp"

// link with FreeFem++
	static TypeOfFE_P3dcLagrange P3dcLagrangeP3dc;
// a static variable to add the finite element to freefem++
	static AddNewFE P3dcLagrange("P3dc", &P3dcLagrangeP3dc);
}	// FEM2d namespace

// --- fin --