Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
221 lines (200 loc) · 6.62 KB

File metadata and controls

221 lines (200 loc) · 6.62 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package symjava.bytecode;
import static edu.uta.futureye.function.FMath.grad;
import static edu.uta.futureye.function.FMath.pow;
import static edu.uta.futureye.function.FMath.r;
import static edu.uta.futureye.function.FMath.s;
import static edu.uta.futureye.function.FMath.t;
import static edu.uta.futureye.function.FMath.x;
import static edu.uta.futureye.function.FMath.y;
import java.util.HashMap;
import java.util.Map;
import edu.uta.futureye.bytecode.CompiledFunc;
import edu.uta.futureye.core.Element;
import edu.uta.futureye.core.Node;
import edu.uta.futureye.function.basic.FX;
import edu.uta.futureye.function.intf.MathFunc;
import edu.uta.futureye.lib.shapefun.SFLinearLocal2DRS;
import edu.uta.futureye.util.container.NodeList;
public class BytecodeFuncImpFEM implements BytecodeFunc {
public static double eps = 1e-5;
static double[] triW = {
0.06296959,
0.06619708,
0.06296959,
0.06619708,
0.06296959,
0.06619708,
0.11250000
};
static double[] triR = {
0.10128651,
0.47014206,
0.79742699,
0.47014206,
0.10128651,
0.05971587,
0.33333333
};
static double[] triS = {
0.10128651,
0.05971587,
0.10128651,
0.47014206,
0.79742699,
0.47014206,
0.33333333
};
public static void check(String info, double d1, double d2) {
if(Math.abs(d1-d2) < eps) {
System.out.println("pass");
} else {
System.out.println("!!!FAIL!!! "+d1+"!="+d2+" "+info);
}
}
public static double intOnTriangleRefElement(CompiledFunc integrand, double[] params, int paramPos, int order) {
double rlt = 0.0;
if(order == 2) {
params[paramPos] = 0.333333333333333;
params[paramPos+1] = 0.333333333333333;
params[paramPos+2] = 0.333333333333333;
rlt = 0.5*integrand.apply(params);
} else if(order == 3) {
params[paramPos] = 0.5; params[paramPos+1] = 0.5; params[paramPos+2] = 0.0;
double pv1 = integrand.apply(params);
params[paramPos] = 0.0; params[paramPos+1] = 0.5; params[paramPos+2] = 0.5;
double pv2 = integrand.apply(params);
params[paramPos] = 0.5; params[paramPos+1] = 0.0; params[paramPos+2] = 0.5;
double pv3 = integrand.apply(params);
rlt = 0.5*0.333333333333333*(pv1 + pv2 + pv3);
} else if(order == 4) {
double w123 = 25.0/48.0;
double w4 = -27.0/48.0;
params[paramPos] = 0.6; params[paramPos+1] = 0.2; params[paramPos+2] = 0.2;
double pv1 = integrand.apply(params);
params[paramPos] = 0.2; params[paramPos+1] = 0.6; params[paramPos+2] = 0.2;
double pv2 = integrand.apply(params);
params[paramPos] = 0.2; params[paramPos+1] = 0.2; params[paramPos+2] = 0.6;
double pv3 = integrand.apply(params);
params[paramPos] = 0.333333333333333; params[paramPos+1] = 0.333333333333333; params[paramPos+2] = 0.333333333333333;
double pv4 = 0.5*integrand.apply(params);
rlt = 0.5*w123*(pv1 + pv2 + pv3) + w4*pv4;
} else if(order == 5) {
for(int i=0;i<7;i++) {
params[paramPos] = triR[i];
params[paramPos+1] = triS[i];
params[paramPos+2] = 1.0-triR[i]-triS[i];
rlt += triW[i]*integrand.apply(params);
}
}
return rlt;
}
public static void solveLaplace(double[] nodesData) {
int nEle = (int)nodesData[0];
NodeList nodes = new NodeList();
/**
* |\
* | \
* ----
*/
nodes.add(new Node(1, 1.0,1.0));
nodes.add(new Node(2, 2.0,1.0));
nodes.add(new Node(3, 1.0,2.0));
Element e = new Element(nodes);
e.updateJacobin();
MathFunc jac = e.getJacobin();
System.out.println(jac.compile().apply());
System.out.println(jac.apply());
SFLinearLocal2DRS[] sf = new SFLinearLocal2DRS[3];
sf[0] = new SFLinearLocal2DRS(1);
sf[1] = new SFLinearLocal2DRS(2);
sf[2] = new SFLinearLocal2DRS(3);
for(int i=0; i<3; i++)
sf[i].assignElement(e);
//Construct a function with the coordinate of points in an element as parameters
String[] argsOrder = new String[]{"x1","x2","x3","y1","y2","y3","r","s","t"};
FX x1 = new FX("x1");
FX x2 = new FX("x2");
FX x3 = new FX("x3");
FX y1 = new FX("y1");
FX y2 = new FX("y2");
FX y3 = new FX("y3");
MathFunc fx = x1*r + x2*s + x3*t;
MathFunc fy = y1*r + y2*s + y3*t;
// MathFunc ff = fx*fy;
// MathFunc f = sin(PI*x)*sin(PI*y)*pow(E, -0.2);
MathFunc f = 4*pow(x,4)*pow(y,4);
// MathFunc f = 4*(x*x*x*x + y*y*y*y);
Map<String, MathFunc> map = new HashMap<String, MathFunc>();
map.put("x", fx);
map.put("y", fy);
MathFunc ff = f.compose(map);
MathFunc[][] lhs = new MathFunc[3][3];
MathFunc[] rhs = new MathFunc[3];
for(int j=0; j<3; j++) {
MathFunc v = sf[j];
for(int i=0; i<3; i++) {
MathFunc u = sf[i];
//lhs[j][i] = (u.diff("x")*v.diff("x")+u.diff("y")*v.diff("y") + u*v)*jac;
lhs[j][i] = (grad(u,"x","y").dot(grad(v,"x","y")) + u*v)*jac;
}
rhs[j] = v*ff*jac;
rhs[j].setName("RHS"+j);
}
CompiledFunc[][] clhs = new CompiledFunc[3][3];
CompiledFunc[] crhs = new CompiledFunc[3];
for(int j=0; j<3; j++) {
for(int i=0; i<3; i++) {
clhs[j][i] = lhs[j][i].compile(argsOrder);
}
crhs[j] = rhs[j].compile(argsOrder);
}
double[][] A = new double[3][3];
double[] b = new double[3];
double[] params = new double[9];
double[] coords = e.getNodeCoords();
System.arraycopy(coords, 0, params, 0, coords.length);
long start = System.currentTimeMillis();
for(int k=0; k<nEle; k++) {
for(int j=0; j<3; j++) {
for(int i=0; i<3; i++) {
A[j][i] += intOnTriangleRefElement(clhs[j][i], params, coords.length, 3);
}
b[j] += intOnTriangleRefElement(crhs[j], params, coords.length, 3);
}
}
System.out.println(System.currentTimeMillis()-start);
for(int j=0; j<3; j++) {
for(int i=0; i<3; i++) {
System.out.print(A[j][i]+" ");
}
System.out.println();
}
for(int j=0; j<3; j++) {
System.out.println(b[j]);
}
/*
*
* 1.4999999999999984 0.0 -1.4999999999999984
0.0 0.9999999999999989 -0.9999999999999989
-1.4999999999999984 -0.9999999999999989 2.4999999999999973
0.8749999999999991
0.8749999999999991
-1.7499999999999982
Correct: (add setArgIdx() in FComposite)
1.0833333333333321 -0.45833333333333287 -0.45833333333333287
-0.45833333333333287 0.5833333333333327 0.04166666666666662
-0.45833333333333287 0.04166666666666662 0.5833333333333327
0.24999999999999972
0.31249999999999967
0.31249999999999967
*/
}
public static void main(String[] args) {
solveLaplace(new double[]{100});
}
@Override
public double apply(double... args) {
solveLaplace(args);
return args[0];
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.