-
Notifications
You must be signed in to change notification settings - Fork 0
/
lapTest.nb
1906 lines (1877 loc) · 79.9 KB
/
lapTest.nb
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.3' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 81653, 1898]
NotebookOptionsPosition[ 79442, 1855]
NotebookOutlinePosition[ 79831, 1871]
CellTagsIndexPosition[ 79788, 1868]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
RowBox[{"ListPointPlot3D", "[",
RowBox[{
RowBox[{"{",
RowBox[{"xFacePosS", ",", "xFacePos"}], "}"}], ",",
RowBox[{"PlotStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"Blue", ",", "Red"}], "}"}]}]}], "]"}]], "Input",
CellChangeTimes->{{3.8638712521177998`*^9, 3.863871339415874*^9}, {
3.863871380272738*^9, 3.8638714060527697`*^9}, {3.863871476026781*^9,
3.863871501410631*^9}, {3.863872600226915*^9, 3.863872603482181*^9}},
CellLabel->
"In[4143]:=",ExpressionUUID->"6d9edd4b-3451-4cb6-a6b0-987f11052235"],
Cell[BoxData[
Graphics3DBox[{{{
{RGBColor[0, 0, 1], PointSize[
NCache[
Rational[1, 90], 0.011111111111111112`]],
Point3DBox[{0.0125, 0.003125, -0.003125000000000001}],
Point3DBox[{0.018750000000000003`, 0.003125, -0.003125000000000001}],
Point3DBox[{0.025, 0.003125, -0.003125000000000001}],
Point3DBox[{0.03125, 0.003125, -0.003125000000000001}],
Point3DBox[{0.0375, 0.003125, -0.003125000000000001}],
Point3DBox[{0.043750000000000004`, 0.003125, -0.003125000000000001}],
Point3DBox[{0.05, 0.003125, -0.003125000000000001}],
Point3DBox[{0.05625, 0.003125, -0.003125000000000001}],
Point3DBox[{0.0625, 0.003125, -0.003125000000000001}],
Point3DBox[{0.06875, 0.003125, -0.003125000000000001}],
Point3DBox[{0.0125, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.018750000000000003`,
0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.025, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.03125, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.0375, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.043750000000000004`,
0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.05, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.05625, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.0625, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.06875, 0.009375000000000001, -0.003125000000000001}],
Point3DBox[{0.0125, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.025, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.03125, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.0375, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.05, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.05625, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.0625, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.06875, 0.003125, 0.0031249999999999993`}],
Point3DBox[{0.0125, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001,
0.0031249999999999993`}],
Point3DBox[{0.025, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.03125, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.0375, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001,
0.0031249999999999993`}],
Point3DBox[{0.05, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.05625, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.0625, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.06875, 0.009375000000000001, 0.0031249999999999993`}],
Point3DBox[{0.0125, 0.003125, 0.009375000000000001}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.009375000000000001}],
Point3DBox[{0.025, 0.003125, 0.009375000000000001}],
Point3DBox[{0.03125, 0.003125, 0.009375000000000001}],
Point3DBox[{0.0375, 0.003125, 0.009375000000000001}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.009375000000000001}],
Point3DBox[{0.05, 0.003125, 0.009375000000000001}],
Point3DBox[{0.05625, 0.003125, 0.009375000000000001}],
Point3DBox[{0.0625, 0.003125, 0.009375000000000001}],
Point3DBox[{0.06875, 0.003125, 0.009375000000000001}],
Point3DBox[{0.0125, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001,
0.009375000000000001}],
Point3DBox[{0.025, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.03125, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.0375, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001,
0.009375000000000001}],
Point3DBox[{0.05, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.05625, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.0625, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.06875, 0.009375000000000001, 0.009375000000000001}],
Point3DBox[{0.0125, 0.003125, 0.015625}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.015625}],
Point3DBox[{0.025, 0.003125, 0.015625}],
Point3DBox[{0.03125, 0.003125, 0.015625}],
Point3DBox[{0.0375, 0.003125, 0.015625}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.015625}],
Point3DBox[{0.05, 0.003125, 0.015625}],
Point3DBox[{0.05625, 0.003125, 0.015625}],
Point3DBox[{0.0625, 0.003125, 0.015625}],
Point3DBox[{0.06875, 0.003125, 0.015625}],
Point3DBox[{0.0125, 0.009375000000000001, 0.015625}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001, 0.015625}],
Point3DBox[{0.025, 0.009375000000000001, 0.015625}],
Point3DBox[{0.03125, 0.009375000000000001, 0.015625}],
Point3DBox[{0.0375, 0.009375000000000001, 0.015625}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001, 0.015625}],
Point3DBox[{0.05, 0.009375000000000001, 0.015625}],
Point3DBox[{0.05625, 0.009375000000000001, 0.015625}],
Point3DBox[{0.0625, 0.009375000000000001, 0.015625}],
Point3DBox[{0.06875, 0.009375000000000001, 0.015625}],
Point3DBox[{0.0125, 0.003125, 0.021875}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.021875}],
Point3DBox[{0.025, 0.003125, 0.021875}],
Point3DBox[{0.03125, 0.003125, 0.021875}],
Point3DBox[{0.0375, 0.003125, 0.021875}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.021875}],
Point3DBox[{0.05, 0.003125, 0.021875}],
Point3DBox[{0.05625, 0.003125, 0.021875}],
Point3DBox[{0.0625, 0.003125, 0.021875}],
Point3DBox[{0.06875, 0.003125, 0.021875}],
Point3DBox[{0.0125, 0.009375000000000001, 0.021875}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001, 0.021875}],
Point3DBox[{0.025, 0.009375000000000001, 0.021875}],
Point3DBox[{0.03125, 0.009375000000000001, 0.021875}],
Point3DBox[{0.0375, 0.009375000000000001, 0.021875}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001, 0.021875}],
Point3DBox[{0.05, 0.009375000000000001, 0.021875}],
Point3DBox[{0.05625, 0.009375000000000001, 0.021875}],
Point3DBox[{0.0625, 0.009375000000000001, 0.021875}],
Point3DBox[{0.06875, 0.009375000000000001, 0.021875}],
Point3DBox[{0.0125, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.025, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.03125, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.0375, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.05, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.05625, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.0625, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.06875, 0.003125, 0.028125000000000004`}],
Point3DBox[{0.0125, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001,
0.028125000000000004`}],
Point3DBox[{0.025, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.03125, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.0375, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001,
0.028125000000000004`}],
Point3DBox[{0.05, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.05625, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.0625, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.06875, 0.009375000000000001, 0.028125000000000004`}],
Point3DBox[{0.0125, 0.003125, 0.034375}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.034375}],
Point3DBox[{0.025, 0.003125, 0.034375}],
Point3DBox[{0.03125, 0.003125, 0.034375}],
Point3DBox[{0.0375, 0.003125, 0.034375}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.034375}],
Point3DBox[{0.05, 0.003125, 0.034375}],
Point3DBox[{0.05625, 0.003125, 0.034375}],
Point3DBox[{0.0625, 0.003125, 0.034375}],
Point3DBox[{0.06875, 0.003125, 0.034375}],
Point3DBox[{0.0125, 0.009375000000000001, 0.034375}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001, 0.034375}],
Point3DBox[{0.025, 0.009375000000000001, 0.034375}],
Point3DBox[{0.03125, 0.009375000000000001, 0.034375}],
Point3DBox[{0.0375, 0.009375000000000001, 0.034375}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001, 0.034375}],
Point3DBox[{0.05, 0.009375000000000001, 0.034375}],
Point3DBox[{0.05625, 0.009375000000000001, 0.034375}],
Point3DBox[{0.0625, 0.009375000000000001, 0.034375}],
Point3DBox[{0.06875, 0.009375000000000001, 0.034375}],
Point3DBox[{0.0125, 0.003125, 0.040625}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.040625}],
Point3DBox[{0.025, 0.003125, 0.040625}],
Point3DBox[{0.03125, 0.003125, 0.040625}],
Point3DBox[{0.0375, 0.003125, 0.040625}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.040625}],
Point3DBox[{0.05, 0.003125, 0.040625}],
Point3DBox[{0.05625, 0.003125, 0.040625}],
Point3DBox[{0.0625, 0.003125, 0.040625}],
Point3DBox[{0.06875, 0.003125, 0.040625}],
Point3DBox[{0.0125, 0.009375000000000001, 0.040625}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001, 0.040625}],
Point3DBox[{0.025, 0.009375000000000001, 0.040625}],
Point3DBox[{0.03125, 0.009375000000000001, 0.040625}],
Point3DBox[{0.0375, 0.009375000000000001, 0.040625}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001, 0.040625}],
Point3DBox[{0.05, 0.009375000000000001, 0.040625}],
Point3DBox[{0.05625, 0.009375000000000001, 0.040625}],
Point3DBox[{0.0625, 0.009375000000000001, 0.040625}],
Point3DBox[{0.06875, 0.009375000000000001, 0.040625}],
Point3DBox[{0.0125, 0.003125, 0.046875}],
Point3DBox[{0.018750000000000003`, 0.003125, 0.046875}],
Point3DBox[{0.025, 0.003125, 0.046875}],
Point3DBox[{0.03125, 0.003125, 0.046875}],
Point3DBox[{0.0375, 0.003125, 0.046875}],
Point3DBox[{0.043750000000000004`, 0.003125, 0.046875}],
Point3DBox[{0.05, 0.003125, 0.046875}],
Point3DBox[{0.05625, 0.003125, 0.046875}],
Point3DBox[{0.0625, 0.003125, 0.046875}],
Point3DBox[{0.06875, 0.003125, 0.046875}],
Point3DBox[{0.0125, 0.009375000000000001, 0.046875}],
Point3DBox[{0.018750000000000003`, 0.009375000000000001, 0.046875}],
Point3DBox[{0.025, 0.009375000000000001, 0.046875}],
Point3DBox[{0.03125, 0.009375000000000001, 0.046875}],
Point3DBox[{0.0375, 0.009375000000000001, 0.046875}],
Point3DBox[{0.043750000000000004`, 0.009375000000000001, 0.046875}],
Point3DBox[{0.05, 0.009375000000000001, 0.046875}],
Point3DBox[{0.05625, 0.009375000000000001, 0.046875}],
Point3DBox[{0.0625, 0.009375000000000001, 0.046875}],
Point3DBox[{0.06875, 0.009375000000000001, 0.046875}]},
{RGBColor[1, 0, 0], PointSize[
NCache[
Rational[1, 90], 0.011111111111111112`]],
Point3DBox[{0.0125, 0.018750000000000003`, 0.00625}],
Point3DBox[{0.025, 0.018750000000000003`, 0.00625}],
Point3DBox[{0.037500000000000006`, 0.018750000000000003`, 0.00625}],
Point3DBox[{0.05, 0.018750000000000003`, 0.00625}],
Point3DBox[{0.0625, 0.018750000000000003`, 0.00625}],
Point3DBox[{0.0125, 0.03125, 0.00625}],
Point3DBox[{0.025, 0.03125, 0.00625}],
Point3DBox[{0.037500000000000006`, 0.03125, 0.00625}],
Point3DBox[{0.05, 0.03125, 0.00625}],
Point3DBox[{0.0625, 0.03125, 0.00625}],
Point3DBox[{0.0125, 0.04375000000000001, 0.00625}],
Point3DBox[{0.025, 0.04375000000000001, 0.00625}],
Point3DBox[{0.037500000000000006`, 0.04375000000000001, 0.00625}],
Point3DBox[{0.05, 0.04375000000000001, 0.00625}],
Point3DBox[{0.0625, 0.04375000000000001, 0.00625}],
Point3DBox[{0.0125, 0.05625000000000001, 0.00625}],
Point3DBox[{0.025, 0.05625000000000001, 0.00625}],
Point3DBox[{0.037500000000000006`, 0.05625000000000001, 0.00625}],
Point3DBox[{0.05, 0.05625000000000001, 0.00625}],
Point3DBox[{0.0625, 0.05625000000000001, 0.00625}],
Point3DBox[{0.0125, 0.018750000000000003`, 0.018750000000000003`}],
Point3DBox[{0.025, 0.018750000000000003`, 0.018750000000000003`}],
Point3DBox[{0.037500000000000006`, 0.018750000000000003`,
0.018750000000000003`}],
Point3DBox[{0.05, 0.018750000000000003`, 0.018750000000000003`}],
Point3DBox[{0.0625, 0.018750000000000003`, 0.018750000000000003`}],
Point3DBox[{0.0125, 0.03125, 0.018750000000000003`}],
Point3DBox[{0.025, 0.03125, 0.018750000000000003`}],
Point3DBox[{0.037500000000000006`, 0.03125, 0.018750000000000003`}],
Point3DBox[{0.05, 0.03125, 0.018750000000000003`}],
Point3DBox[{0.0625, 0.03125, 0.018750000000000003`}],
Point3DBox[{0.0125, 0.04375000000000001, 0.018750000000000003`}],
Point3DBox[{0.025, 0.04375000000000001, 0.018750000000000003`}],
Point3DBox[{0.037500000000000006`, 0.04375000000000001,
0.018750000000000003`}],
Point3DBox[{0.05, 0.04375000000000001, 0.018750000000000003`}],
Point3DBox[{0.0625, 0.04375000000000001, 0.018750000000000003`}],
Point3DBox[{0.0125, 0.05625000000000001, 0.018750000000000003`}],
Point3DBox[{0.025, 0.05625000000000001, 0.018750000000000003`}],
Point3DBox[{0.037500000000000006`, 0.05625000000000001,
0.018750000000000003`}],
Point3DBox[{0.05, 0.05625000000000001, 0.018750000000000003`}],
Point3DBox[{0.0625, 0.05625000000000001, 0.018750000000000003`}],
Point3DBox[{0.0125, 0.018750000000000003`, 0.03125000000000001}],
Point3DBox[{0.025, 0.018750000000000003`, 0.03125000000000001}],
Point3DBox[{0.037500000000000006`, 0.018750000000000003`,
0.03125000000000001}],
Point3DBox[{0.05, 0.018750000000000003`, 0.03125000000000001}],
Point3DBox[{0.0625, 0.018750000000000003`, 0.03125000000000001}],
Point3DBox[{0.0125, 0.03125, 0.03125000000000001}],
Point3DBox[{0.025, 0.03125, 0.03125000000000001}],
Point3DBox[{0.037500000000000006`, 0.03125, 0.03125000000000001}],
Point3DBox[{0.05, 0.03125, 0.03125000000000001}],
Point3DBox[{0.0625, 0.03125, 0.03125000000000001}],
Point3DBox[{0.0125, 0.04375000000000001, 0.03125000000000001}],
Point3DBox[{0.025, 0.04375000000000001, 0.03125000000000001}],
Point3DBox[{0.037500000000000006`, 0.04375000000000001,
0.03125000000000001}],
Point3DBox[{0.05, 0.04375000000000001, 0.03125000000000001}],
Point3DBox[{0.0625, 0.04375000000000001, 0.03125000000000001}],
Point3DBox[{0.0125, 0.05625000000000001, 0.03125000000000001}],
Point3DBox[{0.025, 0.05625000000000001, 0.03125000000000001}],
Point3DBox[{0.037500000000000006`, 0.05625000000000001,
0.03125000000000001}],
Point3DBox[{0.05, 0.05625000000000001, 0.03125000000000001}],
Point3DBox[{0.0625, 0.05625000000000001, 0.03125000000000001}],
Point3DBox[{0.0125, 0.018750000000000003`, 0.043750000000000004`}],
Point3DBox[{0.025, 0.018750000000000003`, 0.043750000000000004`}],
Point3DBox[{0.037500000000000006`, 0.018750000000000003`,
0.043750000000000004`}],
Point3DBox[{0.05, 0.018750000000000003`, 0.043750000000000004`}],
Point3DBox[{0.0625, 0.018750000000000003`, 0.043750000000000004`}],
Point3DBox[{0.0125, 0.03125, 0.043750000000000004`}],
Point3DBox[{0.025, 0.03125, 0.043750000000000004`}],
Point3DBox[{0.037500000000000006`, 0.03125, 0.043750000000000004`}],
Point3DBox[{0.05, 0.03125, 0.043750000000000004`}],
Point3DBox[{0.0625, 0.03125, 0.043750000000000004`}],
Point3DBox[{0.0125, 0.04375000000000001, 0.043750000000000004`}],
Point3DBox[{0.025, 0.04375000000000001, 0.043750000000000004`}],
Point3DBox[{0.037500000000000006`, 0.04375000000000001,
0.043750000000000004`}],
Point3DBox[{0.05, 0.04375000000000001, 0.043750000000000004`}],
Point3DBox[{0.0625, 0.04375000000000001, 0.043750000000000004`}],
Point3DBox[{0.0125, 0.05625000000000001, 0.043750000000000004`}],
Point3DBox[{0.025, 0.05625000000000001, 0.043750000000000004`}],
Point3DBox[{0.037500000000000006`, 0.05625000000000001,
0.043750000000000004`}],
Point3DBox[{0.05, 0.05625000000000001, 0.043750000000000004`}],
Point3DBox[{0.0625, 0.05625000000000001,
0.043750000000000004`}]}}, {}, {}}, {}},
Axes->True,
AxesLabel->{None, None, None},
BoxRatios->{1, 1, 0.4},
DisplayFunction->Identity,
FaceGrids->None,
FaceGridsStyle->Automatic,
ImageSize->{345.93615960048163`, 163.92340582111265`},
ImageSizeRaw->Automatic,
Lighting->{{"Ambient",
GrayLevel[0.5]}, {"Directional",
GrayLevel[0.5],
ImageScaled[{0, 2, 2}]}, {"Directional",
GrayLevel[0.5],
ImageScaled[{2, 2, 2}]}, {"Directional",
GrayLevel[0.5],
ImageScaled[{2, 0, 2}]}},
PlotRange->{{0.0125, 0.06875}, {0.003125, 0.05625000000000001}, Automatic},
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.02],
Scaled[0.02]}, {0, 0}},
Ticks->{Automatic, Automatic, Automatic},
ViewPoint->{
3.3771592708073306`, -0.13106103329514876`, -0.16618743981331707`},
ViewVertical->{0.3127420406954181, 0.04345565583878402, 0.9488435181616021}]
], "Input",
CellChangeTimes->{3.863901330727112*^9},
CellLabel->
"Out[4143]=",ExpressionUUID->"224b0e43-0bfc-4a11-a15a-a92ef0301df1"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"allPoints", "=",
RowBox[{"Join", "[",
RowBox[{"xFacePosS", ",", "xFacePos"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"zero", "=",
RowBox[{"allPoints", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "3"}], "]"}], "]"}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{"For", "[",
RowBox[{
RowBox[{"ii", "=", "1"}], ",",
RowBox[{"ii", "<=",
RowBox[{"Length", "[", "allPoints", "]"}]}], ",",
RowBox[{"ii", "++"}], ",", "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"allPoints", "[",
RowBox[{"[", "ii", "]"}], "]"}], "=",
RowBox[{
RowBox[{"allPoints", "[",
RowBox[{"[", "ii", "]"}], "]"}], "-", "zero"}]}], ";"}]}],
"\[IndentingNewLine]", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"fancyFunction", "[",
RowBox[{"x_", ",", "y_", ",", "z_"}], "]"}], "=", " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"y", "-", "5"}], ")"}], "2"]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"realLaplacian", "[",
RowBox[{"x_", ",", "y_", ",", "z_"}], "]"}], "=",
RowBox[{"Laplacian", "[",
RowBox[{
RowBox[{"fancyFunction", "[",
RowBox[{"x", ",", "y", ",", "z"}], "]"}], ",",
RowBox[{"{",
RowBox[{"x", ",", "y", ",", "z"}], "}"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"allVals", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"fancyFunction", "[",
RowBox[{
RowBox[{"allPoints", "[",
RowBox[{"[",
RowBox[{"ii", ",", "1"}], "]"}], "]"}], ",",
RowBox[{"allPoints", "[",
RowBox[{"[",
RowBox[{"ii", ",", "2"}], "]"}], "]"}], ",",
RowBox[{"allPoints", "[",
RowBox[{"[",
RowBox[{"ii", ",", "3"}], "]"}], "]"}]}], "]"}], ",",
RowBox[{"{",
RowBox[{"ii", ",", "1", ",",
RowBox[{"Length", "[", "allPoints", "]"}]}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]", "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{
RowBox[{
FractionBox["16", "21"], " ",
FractionBox[
SubscriptBox["xf",
RowBox[{"5", ",", "4", ",", "5"}]],
SuperscriptBox["delta", "2"]]}], "+",
RowBox[{
FractionBox["16", "21"], " ",
FractionBox[
SubscriptBox["xf",
RowBox[{"5", ",", "4", ",", "6"}]],
SuperscriptBox["delta", "2"]]}], "+",
FractionBox[
SubscriptBox["XF",
RowBox[{"2", ",", "1", ",", "3"}]],
SuperscriptBox["delta", "2"]], "+",
RowBox[{
FractionBox["20", "21"], " ",
FractionBox[
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "2"}]],
SuperscriptBox["delta", "2"]]}], "-",
RowBox[{
FractionBox["46", "7"], " ",
FractionBox[
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "3"}]],
SuperscriptBox["delta", "2"]]}], "+",
RowBox[{
FractionBox["20", "21"], " ",
FractionBox[
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "4"}]],
SuperscriptBox["delta", "2"]]}], "+",
RowBox[{
FractionBox["8", "7"], " ",
FractionBox[
SubscriptBox["XF",
RowBox[{"3", ",", "2", ",", "3"}]],
SuperscriptBox["delta", "2"]]}], "+",
FractionBox[
SubscriptBox["XF",
RowBox[{"4", ",", "1", ",", "3"}]],
SuperscriptBox["delta", "2"]]}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
FractionBox[
SubscriptBox["xf",
RowBox[{"5", ",", "3", ",", "5"}]],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
SubscriptBox["xf",
RowBox[{"5", ",", "3", ",", "6"}]],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"32", " ",
SubscriptBox["xf",
RowBox[{"5", ",", "4", ",", "5"}]]}],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"32", " ",
SubscriptBox["xf",
RowBox[{"5", ",", "4", ",", "6"}]]}],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
SubscriptBox["XF",
RowBox[{"2", ",", "1", ",", "3"}]],
SuperscriptBox["\[CapitalDelta]", "2"]], "+",
FractionBox[
RowBox[{"713", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "2"}]]}],
RowBox[{"729", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "-",
FractionBox[
RowBox[{"4069", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "3"}]]}],
RowBox[{"729", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"713", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "4"}]]}],
RowBox[{"729", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"8", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "2", ",", "3"}]]}],
RowBox[{"9", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
SubscriptBox["XF",
RowBox[{"4", ",", "1", ",", "3"}]],
SuperscriptBox["\[CapitalDelta]", "2"]]}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.863871649882948*^9, 3.863871895037201*^9}, {
3.863871986544795*^9, 3.8638720113516083`*^9}, {3.863872445777289*^9,
3.863872447833733*^9}, 3.863872611619635*^9, {3.863872802673822*^9,
3.863873059037551*^9}, {3.863873149241688*^9, 3.86387317230494*^9}, {
3.863873205887083*^9, 3.863873310635241*^9}, {3.863873405102495*^9,
3.863873436299781*^9}, {3.863873498761641*^9, 3.863873498841021*^9}, {
3.863873549414646*^9, 3.863873844097686*^9}, {3.863873973595866*^9,
3.8638739914506807`*^9}, {3.863874051448792*^9, 3.86387408946213*^9},
3.8638755058445044`*^9, 3.8638830696891117`*^9, {3.863890390456697*^9,
3.863890406253858*^9}, {3.863891062616563*^9, 3.863891095333531*^9}, {
3.8638911371819897`*^9, 3.8638911854744596`*^9}, {3.863891270149584*^9,
3.863891300757419*^9}, 3.863891414711543*^9, {3.86389200176433*^9,
3.863892010179298*^9}, 3.8638920422335987`*^9, 3.863892204394541*^9,
3.8638923235887403`*^9, 3.863892625413906*^9, {3.863892700979239*^9,
3.863892729360331*^9}, {3.863892766157359*^9, 3.863892768998433*^9}, {
3.863892882642359*^9, 3.863892914744143*^9}, {3.8638929802133017`*^9,
3.863892988795101*^9}, 3.863893193883246*^9, {3.863893751769463*^9,
3.8638937899667397`*^9}, {3.863893890243182*^9, 3.863893893505433*^9}, {
3.863894126519862*^9, 3.8638941826744623`*^9}, {3.863896647229529*^9,
3.863896661016636*^9}, {3.863898583117125*^9, 3.8638985845828648`*^9}, {
3.863898846441287*^9, 3.863898855727276*^9}, {3.863898893159917*^9,
3.863898923660056*^9}},
CellLabel->
"In[5184]:=",ExpressionUUID->"d64847a4-d6ef-49fe-aac1-3bae3b6696e5"],
Cell[BoxData[
RowBox[{
FractionBox[
SubscriptBox["xf",
RowBox[{"5", ",", "3", ",", "5"}]],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
SubscriptBox["xf",
RowBox[{"5", ",", "3", ",", "6"}]],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"32", " ",
SubscriptBox["xf",
RowBox[{"5", ",", "4", ",", "5"}]]}],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"32", " ",
SubscriptBox["xf",
RowBox[{"5", ",", "4", ",", "6"}]]}],
RowBox[{"27", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
SubscriptBox["XF",
RowBox[{"2", ",", "1", ",", "3"}]],
SuperscriptBox["\[CapitalDelta]", "2"]], "+",
FractionBox[
RowBox[{"713", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "2"}]]}],
RowBox[{"729", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "-",
FractionBox[
RowBox[{"4069", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "3"}]]}],
RowBox[{"729", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"713", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "1", ",", "4"}]]}],
RowBox[{"729", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
RowBox[{"8", " ",
SubscriptBox["XF",
RowBox[{"3", ",", "2", ",", "3"}]]}],
RowBox[{"9", " ",
SuperscriptBox["\[CapitalDelta]", "2"]}]], "+",
FractionBox[
SubscriptBox["XF",
RowBox[{"4", ",", "1", ",", "3"}]],
SuperscriptBox["\[CapitalDelta]", "2"]]}]], "Output",
CellChangeTimes->{
3.863898752895319*^9, 3.8638988570586557`*^9, {3.863898893531143*^9,
3.8638989241492777`*^9}},
CellLabel->
"Out[5190]=",ExpressionUUID->"f2ca38bf-1dbe-4d60-9e76-13601cf51900"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"discreteLap", "=",
RowBox[{
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "3", ",", "5"}], "]"}], "]"}], "]"}],
RowBox[{"27.0",
SuperscriptBox["delta", "2"]}]], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "3", ",", "6"}], "]"}], "]"}], "]"}],
RowBox[{"27",
SuperscriptBox["delta", "2"]}]], "+",
FractionBox[
RowBox[{"32",
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "4", ",", "5"}], "]"}], "]"}], "]"}]}],
RowBox[{"27",
SuperscriptBox["delta", "2"]}]], "+", " ",
FractionBox[
RowBox[{"32",
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "4", ",", "6"}], "]"}], "]"}], "]"}]}],
RowBox[{"27",
SuperscriptBox["delta", "2"]}]], "+",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"2", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+", " ",
FractionBox[
RowBox[{"713", " ",
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "2"}], "]"}], "]"}], "]"}]}],
RowBox[{"729", " ",
SuperscriptBox["delta", "2"]}]], "-",
RowBox[{
FractionBox["4069", "729"], " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
RowBox[{
FractionBox["713", "729"],
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "4"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
RowBox[{
FractionBox["8", "9"],
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "2", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"4", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}]}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"2", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "-",
RowBox[{"2", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
RowBox[{
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"4", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "\[IndentingNewLine]",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "4", ",", "5"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "4", ",", "6"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "-",
RowBox[{
FractionBox["3", "2"], " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
RowBox[{
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "2", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "\[IndentingNewLine]", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "2"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "-",
RowBox[{"2", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "4"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "*)"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"discreteLap", "=",
RowBox[{
RowBox[{
FractionBox["16", "21"], " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "4", ",", "5"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+",
RowBox[{
FractionBox["16", "21"], " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupfaceS", "[",
RowBox[{"5", ",", "4", ",", "6"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"2", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "2"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "-",
RowBox[{
FractionBox["20", "3"], " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "1", ",", "4"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+",
RowBox[{
FractionBox["8", "7"], " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "2", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"4", ",", "1", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}]}], "*)"}], "\[IndentingNewLine]",
"\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{"discreteLap", "=", " ",
RowBox[{
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"2", ",", "3", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "2", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "3", ",", "2"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "-",
RowBox[{"6",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "3", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "3", ",", "4"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+", " ",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"3", ",", "4", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]], "+",
FractionBox[
RowBox[{"allVals", "[",
RowBox[{"[",
RowBox[{"lookupface", "[",
RowBox[{"4", ",", "3", ",", "3"}], "]"}], "]"}], "]"}],
SuperscriptBox["delta", "2"]]}]}], "*)"}]}], "\[IndentingNewLine]",
RowBox[{"realLaplacian", "[",
RowBox[{"0", ",", "0", ",", "0"}], "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"-",
FractionBox[
RowBox[{"discreteLap", "-",
RowBox[{"realLaplacian", "[",
RowBox[{"0", ",", "0", ",", "0"}], "]"}]}],
RowBox[{"realLaplacian", "[",
RowBox[{"0", ",", "0", ",", "0"}], "]"}]]}],
";"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.863873858866603*^9, 3.8638738702075*^9}, {
3.863873901910137*^9, 3.8638739070538588`*^9}, {3.863874129494357*^9,
3.8638742014316587`*^9}, {3.863874878706276*^9, 3.8638749292675858`*^9}, {
3.863875176666526*^9, 3.8638751801246967`*^9}, {3.863875229058243*^9,
3.8638752684862013`*^9}, {3.8638755410643997`*^9, 3.863875581231351*^9}, {
3.863876172994931*^9, 3.863876180106565*^9}, {3.863883073107473*^9,
3.863883107919533*^9}, {3.863889903982641*^9, 3.8638899071581297`*^9}, {
3.863891052515427*^9, 3.863891058255637*^9}, 3.8638911198053513`*^9, {
3.863891195229574*^9, 3.863891210505583*^9}, 3.863891259399138*^9, {
3.8638914044054527`*^9, 3.863891411143242*^9}, {3.863892064051012*^9,
3.863892107895383*^9}, 3.8638921889645*^9, {3.863892237650333*^9,
3.863892306075869*^9}, {3.863892389736908*^9, 3.863892431598925*^9}, {
3.8638925675872297`*^9, 3.8638926121497927`*^9}, 3.8638927487366743`*^9, {
3.8638927845618877`*^9, 3.863892787022832*^9}, 3.8638928722597218`*^9, {
3.863893736628715*^9, 3.863893744496118*^9}, {3.863893900330885*^9,
3.8638939120271482`*^9}, {3.863894111045866*^9, 3.863894121920166*^9}, {
3.8638941971910133`*^9, 3.8638941980838537`*^9}, {3.86389472119868*^9,
3.8638947246034937`*^9}, {3.863894831800123*^9, 3.86389489188361*^9},
3.863894929153657*^9, {3.863895725653471*^9, 3.8638957273395977`*^9}, {
3.863895806129932*^9, 3.8638958071102858`*^9}, {3.863896433539496*^9,
3.863896441505822*^9}, {3.863896472137549*^9, 3.8638964940642767`*^9}, {
3.8638965732200527`*^9, 3.863896670799477*^9}, {3.8638986000371428`*^9,
3.863898742755909*^9}, 3.863898838757568*^9, {3.8638988693686666`*^9,
3.863898885278221*^9}},
CellLabel->
"In[5191]:=",ExpressionUUID->"292b2fe0-9efc-4894-a44b-78701e2f8c0f"],
Cell[BoxData["54.84825102880658`"], "Output",
CellChangeTimes->{
3.863873846222962*^9, 3.8638739099387712`*^9, {3.863873942664364*^9,
3.863873960462028*^9}, {3.863874000801221*^9, 3.863874106694849*^9}, {
3.863874161734185*^9, 3.863874288438919*^9}, {3.863874395677141*^9,
3.863874418755723*^9}, 3.863874673602646*^9, {3.863874744659157*^9,
3.86387476228897*^9}, {3.863874954513357*^9, 3.863874968589137*^9},
3.863875001175611*^9, 3.8638752765353317`*^9, {3.863875383123247*^9,
3.863875409284382*^9}, 3.8638754511448298`*^9, {3.863876192572989*^9,
3.863876249027073*^9}, 3.863890078714758*^9, {3.8638901120304337`*^9,
3.863890138053913*^9}, {3.863890169506049*^9, 3.863890176751408*^9},
3.863890417661189*^9, {3.8638910839918747`*^9, 3.863891174387561*^9},
3.863891213598095*^9, {3.863891260797801*^9, 3.863891285636853*^9},
3.863891348398692*^9, 3.863891417182209*^9, {3.863892005294567*^9,
3.863892043866027*^9}, {3.863892078969878*^9, 3.863892108241459*^9}, {
3.863892189481185*^9, 3.863892210916185*^9}, 3.8638922898314953`*^9,
3.863892327423546*^9, 3.863892432779499*^9, 3.863892568171564*^9, {
3.863892615075144*^9, 3.86389262961933*^9}, {3.863892735143075*^9,
3.863892772536323*^9}, {3.8638928628330517`*^9, 3.863892918877955*^9},
3.863892992958797*^9, 3.863893196008239*^9, 3.863893648804957*^9, {
3.863893745036231*^9, 3.863893756839065*^9}, 3.863893799337109*^9, {
3.8638938966149597`*^9, 3.863893912682816*^9}, {3.863894106017343*^9,
3.863894122249127*^9}, {3.863894168356192*^9, 3.863894187508573*^9}, {
3.863894513004437*^9, 3.863894514135642*^9}, {3.863894545454156*^9,
3.863894592028615*^9}, {3.8638949208252907`*^9, 3.863894975815833*^9},
3.863895733378001*^9, 3.863895809482586*^9, 3.8638958408050737`*^9,
3.863895894478066*^9, 3.863896672633675*^9, 3.863896855570821*^9, {
3.86389699563658*^9, 3.863897000630763*^9}, 3.863898757800989*^9, {
3.863898861108211*^9, 3.86389892779935*^9}},
CellLabel->
"Out[5191]=",ExpressionUUID->"912a17e3-5d8f-4ae8-b4a9-89a37a8d6e82"],
Cell[BoxData["2"], "Output",
CellChangeTimes->{
3.863873846222962*^9, 3.8638739099387712`*^9, {3.863873942664364*^9,
3.863873960462028*^9}, {3.863874000801221*^9, 3.863874106694849*^9}, {
3.863874161734185*^9, 3.863874288438919*^9}, {3.863874395677141*^9,
3.863874418755723*^9}, 3.863874673602646*^9, {3.863874744659157*^9,
3.86387476228897*^9}, {3.863874954513357*^9, 3.863874968589137*^9},
3.863875001175611*^9, 3.8638752765353317`*^9, {3.863875383123247*^9,
3.863875409284382*^9}, 3.8638754511448298`*^9, {3.863876192572989*^9,
3.863876249027073*^9}, 3.863890078714758*^9, {3.8638901120304337`*^9,
3.863890138053913*^9}, {3.863890169506049*^9, 3.863890176751408*^9},
3.863890417661189*^9, {3.8638910839918747`*^9, 3.863891174387561*^9},
3.863891213598095*^9, {3.863891260797801*^9, 3.863891285636853*^9},
3.863891348398692*^9, 3.863891417182209*^9, {3.863892005294567*^9,
3.863892043866027*^9}, {3.863892078969878*^9, 3.863892108241459*^9}, {
3.863892189481185*^9, 3.863892210916185*^9}, 3.8638922898314953`*^9,
3.863892327423546*^9, 3.863892432779499*^9, 3.863892568171564*^9, {
3.863892615075144*^9, 3.86389262961933*^9}, {3.863892735143075*^9,
3.863892772536323*^9}, {3.8638928628330517`*^9, 3.863892918877955*^9},
3.863892992958797*^9, 3.863893196008239*^9, 3.863893648804957*^9, {
3.863893745036231*^9, 3.863893756839065*^9}, 3.863893799337109*^9, {
3.8638938966149597`*^9, 3.863893912682816*^9}, {3.863894106017343*^9,
3.863894122249127*^9}, {3.863894168356192*^9, 3.863894187508573*^9}, {
3.863894513004437*^9, 3.863894514135642*^9}, {3.863894545454156*^9,
3.863894592028615*^9}, {3.8638949208252907`*^9, 3.863894975815833*^9},
3.863895733378001*^9, 3.863895809482586*^9, 3.8638958408050737`*^9,
3.863895894478066*^9, 3.863896672633675*^9, 3.863896855570821*^9, {
3.86389699563658*^9, 3.863897000630763*^9}, 3.863898757800989*^9, {
3.863898861108211*^9, 3.863898927801868*^9}},
CellLabel->
"Out[5192]=",ExpressionUUID->"069f824f-b542-4841-99b4-8c331f263634"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"p1", "=",
RowBox[{"LogLogPlot", "[",
RowBox[{
RowBox[{"{",
SuperscriptBox["x", "2"], "}"}], ",",
RowBox[{"{",
RowBox[{"x", ",", "0.125", ",", "1"}], "}"}]}], "]"}]}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"conv0", "=",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "0.5726597178391083`"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.5", ",", "0.17962498401837718`"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.25", ",", "0.048522113154471073`"}], "}"}], ",",
RowBox[{"{",
RowBox[{"0.125", ",", "0.013301431509308907`"}], "}"}]}], "}"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"conv1", "=",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "0.7400348682737291`"}], "}"}], ",",
RowBox[{"{",