-
Notifications
You must be signed in to change notification settings - Fork 2
/
diracDiscrTest.m
415 lines (349 loc) · 10.7 KB
/
diracDiscrTest.m
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
function tests = diracDiscrTest()
tests = functiontests(localfunctions);
end
%TODO:
% 1. Test discretizing with smoothness conditions.
% Only discretization with moment conditions currently tested.
% 2. Test using other types of grids. Only equidistant grids currently used.
function testLeftRandom(testCase)
orders = [2, 4, 6];
mom_conds = orders;
rng(1) % Set seed
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup1D(order, mom_cond);
xl = g.lim{1}{1};
h = g.scaling();
x = g.x{1};
% Test random points near left boundary
x0s = xl + 2*h*rand(1,10);
for j = 1:length(fs)
f = fs{j};
fx = f(x);
for i = 1:length(x0s)
x0 = x0s(i);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H*fx;
err = abs(integral - f(x0));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
function testRightRandom(testCase)
orders = [2, 4, 6];
mom_conds = orders;
rng(1) % Set seed
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup1D(order, mom_cond);
xr = g.lim{1}{2};
h = g.scaling();
x = g.x{1};
% Test random points near right boundary
x0s = xr - 2*h*rand(1,10);
for j = 1:length(fs)
f = fs{j};
fx = f(x);
for i = 1:length(x0s)
x0 = x0s(i);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H*fx;
err = abs(integral - f(x0));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
function testInteriorRandom(testCase)
orders = [2, 4, 6];
mom_conds = orders;
rng(1) % Set seed
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup1D(order, mom_cond);
xl = g.lim{1}{1};
xr = g.lim{1}{2};
h = g.scaling();
x = g.x{1};
% Test random points in interior
x0s = (xl+2*h) + (xr-xl-4*h)*rand(1,20);
for j = 1:length(fs)
f = fs{j};
fx = f(x);
for i = 1:length(x0s)
x0 = x0s(i);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H*fx;
err = abs(integral - f(x0));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
% x0 outside grid should yield 0 integral!
function testX0OutsideGrid(testCase)
orders = [2, 4, 6];
mom_conds = orders;
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup1D(order, mom_cond);
xl = g.lim{1}{1};
xr = g.lim{1}{2};
h = g.scaling();
x = g.x{1};
% Test points outisde grid
x0s = [xl-1.1*h, xr+1.1*h];
for j = 1:length(fs)
f = fs{j};
fx = f(x);
for i = 1:length(x0s)
x0 = x0s(i);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H*fx;
err = abs(integral - 0);
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
function testAllGP(testCase)
orders = [2, 4, 6];
mom_conds = orders;
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup1D(order, mom_cond);
x = g.x{1};
% Test all grid points
x0s = x;
for j = 1:length(fs)
f = fs{j};
fx = f(x);
for i = 1:length(x0s)
x0 = x0s(i);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H*fx;
err = abs(integral - f(x0));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
function testHalfGP(testCase)
orders = [2, 4, 6];
mom_conds = orders;
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup1D(order, mom_cond);
x = g.x{1};
% Test halfway between all grid points
x0s = 1/2*(x(2:end)+x(1:end-1));
for j = 1:length(fs)
f = fs{j};
fx = f(x);
for i = 1:length(x0s)
x0 = x0s(i);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H*fx;
err = abs(integral - f(x0));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
%=============== 2D tests ==============================
function testAllGP2D(testCase)
orders = [2, 4, 6];
mom_conds = orders;
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup2D(order, mom_cond);
H_global = kron(H{1}, H{2});
X = g.points();
% Test all grid points
x0s = X;
for j = 1:length(fs)
f = fs{j};
fx = f(X(:,1), X(:,2));
for i = 1:length(x0s)
x0 = x0s(i,:);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H_global*fx;
err = abs(integral - f(x0(1), x0(2)));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
function testAllRandom2D(testCase)
orders = [2, 4, 6];
mom_conds = orders;
rng(1) % Set seed
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup2D(order, mom_cond);
H_global = kron(H{1}, H{2});
X = g.points();
xl = g.lim{1}{1};
xr = g.lim{1}{2};
yl = g.lim{2}{1};
yr = g.lim{2}{2};
h = g.scaling();
% Test random points, even outside grid
Npoints = 100;
x0s = [(xl-3*h(1)) + (xr-xl+6*h(1))*rand(Npoints,1), ...
(yl-3*h(2)) + (yr-yl+6*h(2))*rand(Npoints,1) ];
for j = 1:length(fs)
f = fs{j};
fx = f(X(:,1), X(:,2));
for i = 1:length(x0s)
x0 = x0s(i,:);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H_global*fx;
% Integral should be 0 if point is outside grid
if x0(1) < xl || x0(1) > xr || x0(2) < yl || x0(2) > yr
err = abs(integral - 0);
else
err = abs(integral - f(x0(1), x0(2)));
end
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
%=============== 3D tests ==============================
function testAllGP3D(testCase)
orders = [2, 4, 6];
mom_conds = orders;
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup3D(order, mom_cond);
H_global = kron(kron(H{1}, H{2}), H{3});
X = g.points();
% Test all grid points
x0s = X;
for j = 1:length(fs)
f = fs{j};
fx = f(X(:,1), X(:,2), X(:,3));
for i = 1:length(x0s)
x0 = x0s(i,:);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H_global*fx;
err = abs(integral - f(x0(1), x0(2), x0(3)));
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
function testAllRandom3D(testCase)
orders = [2, 4, 6];
mom_conds = orders;
rng(1) % Set seed
for o = 1:length(orders)
order = orders(o);
mom_cond = mom_conds(o);
[g, H, fs] = setup3D(order, mom_cond);
H_global = kron(kron(H{1}, H{2}), H{3});
X = g.points();
xl = g.lim{1}{1};
xr = g.lim{1}{2};
yl = g.lim{2}{1};
yr = g.lim{2}{2};
zl = g.lim{3}{1};
zr = g.lim{3}{2};
h = g.scaling();
% Test random points, even outside grid
Npoints = 200;
x0s = [(xl-3*h(1)) + (xr-xl+6*h(1))*rand(Npoints,1), ...
(yl-3*h(2)) + (yr-yl+6*h(2))*rand(Npoints,1), ...
(zl-3*h(3)) + (zr-zl+6*h(3))*rand(Npoints,1) ];
for j = 1:length(fs)
f = fs{j};
fx = f(X(:,1), X(:,2), X(:,3));
for i = 1:length(x0s)
x0 = x0s(i,:);
delta = diracDiscr(g, x0, mom_cond, 0, H);
integral = delta'*H_global*fx;
% Integral should be 0 if point is outside grid
if x0(1) < xl || x0(1) > xr || x0(2) < yl || x0(2) > yr || x0(3) < zl || x0(3) > zr
err = abs(integral - 0);
else
err = abs(integral - f(x0(1), x0(2), x0(3)));
end
testCase.verifyLessThan(err, 1e-12);
end
end
end
end
% ======================================================
% ============== Setup functions =======================
% ======================================================
function [g, H, fs] = setup1D(order, mom_cond)
% Grid
xl = -3;
xr = 900;
L = xr-xl;
m = 101;
g = grid.equidistant(m, {xl, xr});
% Quadrature
ops = sbp.D2Standard(m, {xl, xr}, order);
H = ops.H;
% Moment conditions
fs = cell(mom_cond,1);
for p = 0:mom_cond-1
fs{p+1} = @(x) (x/L).^p;
end
end
function [g, H, fs] = setup2D(order, mom_cond)
% Grid
xlims = {-3, 20};
ylims = {-11,5};
Lx = xlims{2} - xlims{1};
Ly = ylims{2} - ylims{1};
m = [15, 16];
g = grid.equidistant(m, xlims, ylims);
% Quadrature
opsx = sbp.D2Standard(m(1), xlims, order);
opsy = sbp.D2Standard(m(2), ylims, order);
Hx = opsx.H;
Hy = opsy.H;
H = {Hx, Hy};
% Moment conditions
fs = cell(mom_cond,1);
for p = 0:mom_cond-1
fs{p+1} = @(x,y) (x/Lx + y/Ly).^p;
end
end
function [g, H, fs] = setup3D(order, mom_cond)
% Grid
xlims = {-3, 20};
ylims = {-11,5};
zlims = {2,4};
Lx = xlims{2} - xlims{1};
Ly = ylims{2} - ylims{1};
Lz = zlims{2} - zlims{1};
m = [13, 14, 15];
g = grid.equidistant(m, xlims, ylims, zlims);
% Quadrature
opsx = sbp.D2Standard(m(1), xlims, order);
opsy = sbp.D2Standard(m(2), ylims, order);
opsz = sbp.D2Standard(m(3), zlims, order);
Hx = opsx.H;
Hy = opsy.H;
Hz = opsz.H;
H = {Hx, Hy, Hz};
% Moment conditions
fs = cell(mom_cond,1);
for p = 0:mom_cond-1
fs{p+1} = @(x,y,z) (x/Lx + y/Ly + z/Lz).^p;
end
end