-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadaptive.edp
More file actions
141 lines (117 loc) · 3.07 KB
/
adaptive.edp
File metadata and controls
141 lines (117 loc) · 3.07 KB
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
load "webplot"
include "getARGV.idp"
// mesh Th=square(2, 2); //the initial mesh
// webplot(0,Th);
// Th = adaptmesh(Th, 1./30., IsMetric=1, nbvx=10000);
// webplot(0,Th);
// Th = adaptmesh(Th, 1./30., IsMetric=1, nbvx=10000); //More the one time du to
// Th = adaptmesh(Th, 1./30., IsMetric=1, nbvx=10000); //Adaptation bound `maxsubdiv=`
// webplot(0,Th);
// Parameters
verbosity = 0;
int nn = 1;
real nu = 0.0025;
real dt = 0.2;
real epsv = 1e-6;
real epsu = 1e-6;
real epsp = 1e-6;
//step depth
real step = -getARGV("-step", 0.5);
// Mesh
border a0(t=1, 0){x=-2; y=t; label=1;}
border a1(t=-2, 0){x=t; y=0; label=2;}
border a2(t=0, step){x=0; y=t; label=2;}
border a3(t=0, 1){x=18*t^1.2; y=step; label=2;}
border a4(t=step, 1){x=18; y=t; label=3;}
border a5(t=1, 0){x=-2+20*t; y=1; label=4;}
mesh Th = buildmesh(a0(3*nn) + a1(20*nn) + a2(10*nn) + a3(150*nn) + a4(5*nn) + a5(100*nn));
// Fespace
fespace Vh(Th, P1);
Vh w;
Vh u=0, v=0;
Vh p=0;
Vh q=0;
// Definition of Matrix dtMx and dtMy
matrix dtM1x, dtM1y;
// Macro
macro BuildMat()
{ /* for memory managenemt */
varf vM(unused, v) = int2d(Th)(v);
varf vdx(u, v) = int2d(Th)(v*dx(u)*dt);
varf vdy(u, v) = int2d(Th)(v*dy(u)*dt);
real[int] Mlump = vM(0, Vh);
real[int] one(Vh.ndof); one = 1;
real[int] M1 = one ./ Mlump;
matrix dM1 = M1;
matrix Mdx = vdx(Vh, Vh);
matrix Mdy = vdy(Vh, Vh);
dtM1x = dM1*Mdx;
dtM1y = dM1*Mdy;
} //
// Build matrices
BuildMat
// Time iterations
real err = 1.;
real outflux = 1.;
for(int n = 0; n < 300; n++){
// Update
Vh uold=u, vold=v, pold=p;
// Solve
solve pb4u (u, w, init=n, solver=CG, eps=epsu)
= int2d(Th)(
u*w/dt
+ nu*(dx(u)*dx(w) + dy(u)*dy(w))
)
-int2d(Th)(
convect([uold, vold], -dt, uold)/dt*w
- dx(p)*w
)
+ on(1, u=4*y*(1-y))
+ on(2, 4, u=0)
;
webplot(u, Th);
solve pb4v (v, w, init=n, solver=CG, eps=epsv)
= int2d(Th)(
v*w/dt
+ nu*(dx(v)*dx(w) + dy(v)*dy(w))
)
-int2d(Th)(
convect([uold,vold],-dt,vold)/dt*w
- dy(p)*w
)
+on(1, 2, 3, 4, v=0)
;
solve pb4p (q, w, solver=CG, init=n, eps=epsp)
= int2d(Th)(
dx(q)*dx(w)+dy(q)*dy(w)
)
- int2d(Th)(
(dx(u)+ dy(v))*w/dt
)
+ on(3, q=0)
;
//to have absolute epsilon in CG algorithm.
epsv = -abs(epsv);
epsu = -abs(epsu);
epsp = -abs(epsp);
p = pold-q;
u[] += dtM1x*q[];
v[] += dtM1y*q[];
// Mesh adaptation
if (n%50 == 49){
Th = adaptmesh(Th, [u, v], q, err=0.04, nbvx=100000);
// webplot(Th);
BuildMat // Rebuild mat.
}
// Error & Outflux
err = sqrt(int2d(Th)(square(u-uold)+square(v-vold))/Th.area);
outflux = int1d(Th)([u,v]'*[N.x,N.y]);
cout << " iter " << n << " Err L2 = " << err << " outflux = " << outflux << endl;
if(err < 1e-3) break;
}
// Verification
assert(abs(outflux)< 2e-3);
// Plot
webplot(p,Th);
webplot(u,Th);
server();