forked from mmalahe/unc-dissertation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clt_dissertation_draft_v10c.tex
733 lines (696 loc) · 26.2 KB
/
clt_dissertation_draft_v10c.tex
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% HEADER
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\documentclass[11pt]{unc_dissertation}
\documentclass[11pt]{report}
%Font packages
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{import}
%Bilbiography styles
\bibliographystyle{ieeetr}
% List of acronyms
\usepackage{longtable}
\usepackage[acronym]{glossaries}
%% Math Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{bbm}
\usepackage{amssymb}
\usepackage{geometry}
\usepackage{booktabs}
%% Reduce spacing between paragraph and section title %%%%%%%
%% @todo: Put this modification in the class file itself.
\usepackage{titlesec}
\titlespacing*{\section}
{0pt}{-5pt}{0pt}
\titlespacing*{\subsection}
{0pt}{-5pt}{0pt}
\usepackage{indentfirst} %Indents first paragraphs in every section.
%% Flush footnotes to the left
\usepackage[hang,flushmargin]{footmisc}
%% Places footnotes immediately below horizontal rule
\setlength{\footnotesep}{0pt}
%% Normal LaTeX or pdfLaTeX? %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\RequirePackage{ifpdf}
%% Packages for Graphics & Figures %%%%%%%%%%%%%%%%%%%%%%%%%%
\ifpdf %%Inclusion of graphics via \includegraphics{file}
\usepackage[pdftex]{graphicx} %%graphics in pdfLaTeX
\else
\usepackage[dvips]{graphicx} %%graphics and normal LaTeX
\fi
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% DOCUMENT SETTINGS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Deep Neural Network Solution Methods for First Order Least Squares Formulations of PDEs in Fluid and Solid Mechanics}
\author{Dissertation Author}
%\committee{Advisor}{Committee Member}{Committee Member}{Committee Member}{Committee Member}
\date{January 1, 1970}
%\input{abstract.tex}
%
%\dedication{To Wawa}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% GLOSSARIES AND ABBREVIATIONS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% To update the printed glossary, you need to run:
% - pdflatex dissertation
% - makeglossaries dissertation
% - pdflatex dissertation
% On Windows, you might need to install Perl first.
\newacronym{unc}{UNC}{The University of North Carolina at Chapel Hill}
\makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% DOCUMENT
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\linespread{1.0}
\begin{document}
%% File Extensions of Graphics %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ifpdf
\DeclareGraphicsExtensions{.pdf,.jpg,.png}
\else
\DeclareGraphicsExtensions{.eps}
\fi
\pagestyle{plain}
%%%%%%%%%%%%%%%%%
%% INITIAL THINGS
%%%%%%%%%%%%%%%%%
%\frontmatter
%\maketitle
\chapter{Acknowledgements}
\input{acknowledgements.tex}
% The graduate school requires that entries are double spaced.
% They also require that multiple lines in a single entry are single spaced.
% This achieves that by setting \baselineskip (the space between lines)
% and \parskip (the additional space between paragraphs) directly, then restoring them
%
% @todo: Find a more elegant way of achieving this
% Establish original spacings
\newlength{\oldbaselineskip}
\setlength{\oldbaselineskip}{\the\baselineskip}
\newlength{\oldparskip}
\setlength{\oldparskip}{\the\parskip}
% Set spacings for these sections
\setlength{\baselineskip}{0.5\oldbaselineskip}
\setlength{\parskip}{0.5\oldbaselineskip}
\tableofcontents
\listoffigures
\listoftables
% Restore original spacings
\setlength{\baselineskip}{1.0\oldbaselineskip}
\setlength{\parskip}{1.0\oldparskip}
%\listofabbreviations
%\mainmatter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%MAIN CHAPTERS%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{plain} % Restore page numbers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter 0
% Everything, disorganized
%\chapter{Chapter 0}
%\include{UseCasePINNs}
\chapter{Introduction}
\include{ch-Introduction.tex}
\chapter{Neural Networks: Architectures, Activations, and Optimization}
%\include{ch-NeuralNetworks.tex}
\include{./neuralnetworks/sec-NeuralNetworks.tex}
\include{sec-DeepReLUConvergence.tex}
\include{slide-NeuralNetworks.tex}
\include{NNFEM.tex}
\chapter{PINNs and DNN Solution Methods for PDE}
\input{./pinn/ch-PINN.tex}
%\include{ch-PINNModulus.tex}
%\include{slide-UseCasePINNs.tex}
%\include{ch-PINNs.tex}
%\include{ch-Methods.tex}
%\include{slide--PINNConvergence.tex}
%% \include{ref-ModulusPDEStandards.tex}
%\include{ch-NeuralTangentKernel.tex}
%\include{sec-PINNsAdvancedTechniques.tex}
%% \include{ref-PINNConvergence.tex}
%\include{PINNConvergence.tex}
\chapter{Least Squares Finite Element Methods}
\input{./lsfem/sec-LSFEM-all.tex}
%\include{ch-LeastSquaredFiniteElementMethod.tex}
%\include{sec-LSFEM-part0.tex}
%\include{ch-LSFEM.tex}
%\include{ch-FOSLSElliptic.tex}
%\include{sec-LSFEMDataAssimilation}
%\chapter{Stokes Equations}
%\include{ch-Stokes_FOSLS.tex}
%\chapter{FOSLS-PINNs}
%
%\chapter{Elliptic or Poisson FOSLS Background}
%\include{./notes/FOSLS/ch-DeepFOSLS1D-Formulations.tex}
%\include{./notes/FOSLS/sec-EllipticFOSLS-Results.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS2D-Formulations.tex}
%
%
%\chapter{Elliptic FOSLS Results}
%\include{./notes/FOSLS/ch-DeepFOSLS1D2D-Results.tex}
%
%
%
%
%\chapter{Solid (Continuum) Mechanics Background}
%\include{./notes/FOSLS/sec-LinearElasticity.tex}
%\include{ch-ContinuumMechanicsHyperelastic.tex}
%
%\section{Solid Mechanics: Linear Elasticity, Pure Traction FOSLS Formulation}
%
%
%\section{Solid Mechanics: Linear Elasticity Pure Displacement FOSLS Formulation}
%
%
%\section{Solid Mechanics: Linear Elasticity General FOSLS Formulation}
%
%
%\section{Solid Mechanics: Linear Elasticity Mixed Formulation}
%
%
%\section{Solid Mechanics: Hyperelasticity Mixed Formulation}
%
%
%
%\chapter{Linear Elasticity Results}
%\include{./notes/FOSLS/ch-LinearElasticityFOSLS-Formulations.tex}
%\include{./notes/FOSLS/ch-LinearElasticityFOSLS-Results.tex}
%\include{./notes/FOSLS/sec-LinearElasticityStokesFOSLS-Formulations-PureTraction.tex}
%
%
%\chapter{Hyperelasticity Results}
%%\include{./notes/FOSLS/ch-HyperElasticityFOSLS-Formulations.tex}
%%\include{./notes/FOSLS/ch-HyperElasticityFOSLS-Results.tex}
%%\include{./notes/FOSLS/ch-StokesFOSLS-VVP-Formulations.tex}
%%\include{./notes/FOSLS/ch-StokesFOSLS-VVG-Formulations.tex}
%%\include{./notes/FOSLS/ch-StokesFOSLS-VVT-Formulations.tex}
%%\include{./notes/FOSLS/ch-StokesFOSLS-Formulations.tex}
%%\include{./notes/FOSLS/ch-StokesFOSLS-Results.tex}
%
%
%\chapter{FOSLS Formulations: Solid Mechanics}
%%\include{./notes/FOSLS/ch-LinearElasticityStokesFOSLS-Formulations.tex}
%%\include{./notes/FOSLS/sec-LinearElasticityStokesFOSLS-Formulations-PureDisplacement.tex}
%\include{./notes/FOSLS/sec-LinearElasticityStokesFOSLS-Formulations-PureTraction.tex}
%\include{./notes/FOSLS/sec-LinearElasticityStokesFOSLS-Formulations-Mixed.tex}
%
%%\include{./notes/FOSLS/ch-HyperElasticityFOSLS-Formulations.tex}
%%\include{./notes/FOSLS/sec-HyperElasticityFOSLS-Formulations-Mixed.tex}
%
%\chapter{Miscellaneous Tables}
%%\include{newmaterialmisc.tex}
%
%\chapter{Fluid Mechanics Background}
%\include{notes/FOSLS/ch-NavierStokesFormulations}
%% \include{notes/FOSLS/NavierStokesFormulations}
%%\include{notes/FOSLS/ch-NavierStokesFOSLS}
%
%
%\chapter{Navier-Stokes FOSLS Formulations}
%\include{./notes/FOSLS/ch-NavierStokesFOSLS-Formulations.tex}
%
%
%\chapter{Navier-Stokes FOSLS Results}
%%\include{./notes/FOSLS/ch-NavierStokesFOSLS-Results.tex}
%%\include{./notes/FOSLS/ch-NavierStokesFOSLS-Results}
%
%\section{Channel Flow}
%\subsection{Hagen-Poiseuille }
%\include{./notes/FOSLS/ch-SteadyNavierStokes2D-FOSLS-Results.tex}
%\include{./notes/FOSLS/sec-HagenPoiseuilleChannel2D.tex}
%\subsection{Couette }
%\include{./notes/FOSLS/sec-CouetteChannel2D.tex}
%
%\section{Kovasznay}
%\include{./notes/FOSLS/sec-Kovasznay2D.tex}
%
%\include{./notes/FOSLS/sec-BercovierSquare2D.tex}
%
%\section{Ruas Disk}
%%\include{./notes/FOSLS/sec-RuasDisk2D.tex}
%
%\section{2D Steady Newtonian Taylor-Green Vortex}
%\include{./notes/FOSLS/sec-TaylorGreen2D.tex}
%
%
%\section{Chip/Block Stenosis}
%%\begin{frame}{Convergence: RELU, Adam, Block 2D, VPS}
%\input{/home/chaztikov/git/modulus_examples/fosls_examples/chip_2d/chip_2d/results/chip_2d-8-5-adam-vps-table_L2_relative_errors_.tex}
%%\end{frame}
%\include{./notes/FOSLS/sec-BlockStenosisChannel2D.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-Block2D.tex}
%
%
%
%
%%
%\include{./notes/FOSLS/ch-NavierStokes2D-FOSLS-Results.tex}
%
%%
%%\chapter{Numerical Experiments: Steady Navier-Stokes, 3D}
%\include{./notes/FOSLS/ch-SteadyNavierStokes3D-FOSLS-Results.tex}
%\include{./notes/FOSLS/sec-TaylorGreen3D.tex}
%\include{./notes/FOSLS/sec-ABCFlow3D.tex}
%
%%\chapter{Numerical Experiments: Unsteady Navier Stokes, 2D}
%%\include{./notes/FOSLS/sec-Cylinder2DT.tex}
%%\include{./notes/FOSLS/sec-TaylorGreen2DT.tex}
%
%%\chapter{Numerical Experiments: Unsteady Navier-Stokes, 3D}
%%\include{./notes/FOSLS/ch-NavierStokes3D-FOSLS-Results.tex}
%%\include{./notes/FOSLS/sec-Beltrami3DT.tex}
%%\include{./notes/FOSLS/sec-TaylorGreen3DT.tex}
%
%
%
%
%\section{Numerical Experiments: Elliptic and Poisson}
%
%
%\section{Numerical Experiments: Linear Elasticity}
%\include{LEFormulationComparison.tex}
%\include{LESoftHardBC.tex}
%\subsection{Plane Strain Block 2D}
%\include{slide-PlaneDisplacement.tex}
%\subsection{Plane Stress Block 2D}
%\include{sec-LinearElasticity2D-Results-PureTraction}
%
%
%\section{Numerical Experiments: Hyperelastic Solid Mechanics}
%\subsection{Compressible Neohookean Block}
%\subsection{Incompressible Mooney-Rivlin Block}
%
%
%
%\section{Numerical Experiments: Steady Navier Stokes, 2D}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-LDC2D.tex}
%\include{misc-pytables.tex}
%
%
%
%
%
%
%%\include{./notes/FOSLS/sec-AnnularRing2D.tex}
%%\include{./notes/FOSLS/ch-DeepFOSLS-Results-AnnularRing.tex}
%%\include{./notes/FOSLS/ch-DeepFOSLS-Results-AnnularRing1.tex}
%
%\chapter{Inverse Problems}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-Cylinder2D_inverse.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-Block2D_inverse.tex}
%
%\input{./ch-Chapter0.tex}
%%\input{./notes/FOSLS/SECTION_ANNULUARRING_PRESSUREMONITORS_STEADY_2D}
%
%\include{slide-Activations.tex}
%
%
%\section{Plane Stress}
%\include{sec-LinearElasticity2D-Results-PlaneStress}
%\include{sec-LinearElasticity2D-Results-PlaneStress-NTK}
%\include{sec-LinearElasticity2D-Results-PlaneStress-ImportanceSampling}
%
%We consider a rectangular domain in 2D governed by solid mechanics with a linear elastic constitutive model.
%Plane stress constraints imposed on the 2D block of material.
%
%
%
%In primitive variables, the Navier equations describe the response of the material to pure Neumann (applied stress) boundary conditions and yield a set of second order linear PDEs to solve in terms of the displacement field with $d$ components, displacement).
%
%An alternative in this case (constraints) to solving the Navier Equations is to use either Mixed or FOS formulations.
%
%Here, we compare the Velocity-Flux formulation with its 2-stage variant as described in
%\ref{sec:LinearElasticityVelocityGradientPlaneStress2Stage}
%
%\begin{itemize}
% \item Velocity-Flux (1-stage)
% \item Velocity-Flux (2-stage)
% \item Stress-Displacement
%\end{itemize}
%formulations.
%
%
%\subsubsection{Formulation Comparison}
%We compare the convergence of errors in the approximation obtained by each formulation with respect to increasing number of degrees of freedom, governed by the underlying width and depth (hence number of NN weights/parameters) of the DNN.
%
%
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/
%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/multirun
%\end{verbatim}
%%\begin{verbatim}
%
%
%
%\subsubsection{Using NTK}
%We focus on the first phase of the 2-stage velocity-flux formulation, and compare preceding results with the use of the NTK to determine/assign values of (constant within each iteration) the scalar factors serving as relative weights of individual components of the discrete loss functional of the interior and (with Neumann conditions) boundary.
%%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/ntk/vvg1/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=6,custom.activation=5,custom.fosls_type=vvg1,network_dir=checkpoint_plane_stress_pinn_fosls_importance_vvg1/checkpoint_plane_stress_pinn_fosls_importance_vvg1/validators/
%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/ntk
%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/ntk/vvg1/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=6,custom.activation=5,custom.fosls_type=vvg1,network_dir=checkpoint_plane_stress_pinn_fosls_importance_vvg1/checkpoint_plane_stress_pinn_fosls_importance_vvg1/validators/
%\end{verbatim}
%%\begin{verbatim}
%
%
%
%\subsubsection{Using Importance Sampling}
%%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/importance_sampling/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=6,custom.activation=5,custom.fosls_type=vvg1
%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/importance_sampling
%\end{verbatim}
%%\begin{verbatim}
%
%\section{L-Shape Domain}
%\include{slide-LShape-Intro.tex}
%
%\section{AnnularRing}
%\include{slide-AnnularRing.tex}
%\include{./notes/FOSLS/sec-AnnularRing2D.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-AnnularRing.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-AnnularRing1.tex}
%%\input{./notes/FOSLS/SECTION_ANNULARRING_STEADY_2D.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-AnnularRing1.tex}
%\include{./notes/FOSLS/sec-AnnularRing2D.tex}
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-AnnularRing.tex}
%\include{./notes/FOSLS/SECTION_ANNULUARRING_PARAMETERIZED_STEADY_2D.tex}
%\include{./notes/FOSLS/SECTION_ANNULUARRING_PRESSUREMONITORS_STEADY_2D.tex}
%\include{./notes/FOSLS/SECTION_ANNULUARRING_STEADY_2D.tex}
%
%%\chapter{PIGAN with FOSLS}
%%\include{./notes/FOSLS/PIGANDeepFOSLS.tex}
%
%\section{SteadyChannel2D}
%\include{slide-SteadyChannel2D.tex}
%
%\section{BercovierEngelman2D}
%% \include{slide-BercovierEngelman2D-0.tex}
%\include{slide-BercovierEngelman2D.tex}
%\include{slide-BercovierEngelman2D-SILU.tex}
%\include{slide-BercovierEngelman2D-NTK-SILU.tex}
%
%\section{RuasDisk2D}
%\include{slide-RuasDisk2D.tex}
%
%\section{Cylinder2D}
%\include{slide-Cylinder2D-Intro.tex}
%\include{slide-Cylinder2D.tex}
%\include{slide-Cylinder2D-RELU.tex}
%\include{slide-Cylinder2D-SILU.tex}
%%Cylinder Tables
%%\include{/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/results/cylinder_2d-tables.tex}
%\include{./physical_systems/cylinder_2d/results/cylinder_2d-tables.tex}
%%-rw-rw-r-- 1 chaztikov chaztikov 17766 Dec 12 06:36 \include{./notes/FOSLS/ch-DeepFOSLS-Results-Cylinder2D.tex}
%
%\include{./notes/FOSLS/ch-DeepFOSLS-Results-Cylinder2D.tex}
%\include{./notes/FOSLS/sec-CylinderChannel2D.tex}
%%\include{./notes/FOSLS/SEC-CYLINDER-STEADY-2D}
%\include{./notes/FOSLS/SECTION_CYLINDER_STEADY_2D.tex}
%\include{./notes/FOSLS/SECTION_SDF_CYLINDER_STEADY_2D.tex}
%\include{./notes/FOSLS/SEC_CYLINDER_STEADY_2D.tex}
%\include{./notes/FOSLS/SEC-CYLINDER-STEADY-2D.tex}
%\include{./notes/FOSLS/viscoelastic_oldroydb_cylinder_2D_2D.tex}
%
%%\end{verbatim}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=4,custom.fosls_type=vp,network_dir=network_checkpoint_cylinder_2d_fosls_vp/network_checkpoint_cylinder_2d_fosls_vp/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=1,custom.fosls_type=vps,network_dir=network_checkpoint_cylinder_2d_fosls_vps/network_checkpoint_cylinder_2d_fosls_vps/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=2,custom.fosls_type=vps,network_dir=network_checkpoint_cylinder_2d_fosls_vps/network_checkpoint_cylinder_2d_fosls_vps/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=3,custom.fosls_type=vps,network_dir=network_checkpoint_cylinder_2d_fosls_vps/network_checkpoint_cylinder_2d_fosls_vps/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=4,custom.fosls_type=vps,network_dir=network_checkpoint_cylinder_2d_fosls_vps/network_checkpoint_cylinder_2d_fosls_vps/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=4,custom.fosls_type=vvg,network_dir=network_checkpoint_cylinder_2d_fosls_vvg/network_checkpoint_cylinder_2d_fosls_vvg/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=4,custom.fosls_type=vvp,network_dir=network_checkpoint_cylinder_2d_fosls_vvp/network_checkpoint_cylinder_2d_fosls_vvp/validators/
%/home/chaztikov/git/modulus_examples/fosls_examples/cylinder_2d/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=4,custom.fosls_type=vvt,network_dir=network_checkpoint_cylinder_2d_fosls_vvt/network_checkpoint_cylinder_2d_fosls_vvt/validators/
%\end{verbatim}
%%\begin{verbatim}
%
%
%\section{LDC2D}
%\include{slide-LDC2D.tex}
%\include{slide-LDC2D-SILU.tex}
%\include{slide-LDC2D-RELU.tex}
%\include{slide-LDC2D-TANH.tex}
%
%\section{Chip2D}
%\include{slide-Chip2D-Intro.tex}
%\include{slide-Chip2D.tex}
%
%
%
%\section{TaylorGreenVortex2D}
%\begin{verbatim}
%df.to_latex(buf=tablewritename,caption=Path(tablewritename).stem.replace('_',' ').replace('-',' '),label=Path(tablewritename).stem)
%/home/chaztikov/git/modulus_examples/fosls_examples/taylorgreenvortex_2d/mu=0.01
%/home/chaztikov/git/modulus_examples/fosls_examples/taylorgreenvortex_2d/mu=0.01/multirun/arch.fully_connected.layer_size=512,arch.fully_connected.nr_layers=6,custom.activation=10,custom.fosls_type=vp,network_dir=tgvortex_fosls_vp/
%/home/chaztikov/git/modulus_examples/fosls_examples/taylorgreenvortex_2d/mu=0.01/multirun/arch.fully_connected.layer_size=128,arch.fully_connected.nr_layers=6,custom.activation=5,custom.fosls_type=vvp,network_dir=tgvortex_fosls_vvp/
%\end{verbatim}
%
%
%
%
%
%
%
%
%\include{slide-SteadyNSFormulations.tex}
%\include{slide-SteadyNSPressureRecovery.tex}
%% \include{slide-test.tex}
%
%\include{slide-WeightedLSFEM.tex}
%\begin{verbatim}
%/home/chaztikov/git/modulus_examples/fosls_examples/regularizedtanh_ldc_2d/sdf
%/home/chaztikov/git/modulus_examples/fosls_examples/regularizedtanh_ldc_2d/foslsfunctional
%/home/chaztikov/git/modulus_examples/fosls_examples/SolidMechanics/LinearElasticity/plane_stress/ntk/vvg1
%\end{verbatim}
%
%\chapter{Conclusions and Discussion}
%\include{slide-Discussion.tex}
%\include{slide-Discussion-PINNOverfitting.tex}
%3.3. Approximation Properties of ReLU-NNs: h-Galerkin BEM 11
%DNN Architecture. We use a feed-forward DNN[1] with 12 fully-connected layers. After 8 layers, the network splits into 6 branches, 4 layers each: the first branch decides about the optimal nref parameter - $h$ refinement, the remaining branches decide about modifying the polynomial orders $-p$ refinement. Experiments have shown that further expanding of the network makes it prone to overfitting [8]. Splitting the network into branches assures sufficient parameter freedom for each variable. This approach also simplifies the model: there is no need to train a DNN for each variable. Since all possible decisions are encoded as categorical variables, we use cross-entropy as the loss function. We encoded the
%
%Salman, S., Liu, X.: Overfitting mechanism and avoidance in deep neural networks.
%arXiv preprint arXiv:1901.06566 (2019)
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter 1
% Overview of Neural Networks and Supervised (Learning) NN Approximation
%\chapter{Chapter 1}
%\input{chapter1.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter 2
% Brief Introduction to equation-informed (unsupervised) NN approximations to PDEs PINNs, overview of results (forward, backward, identification, SDEs), FFR Application? ROM and surrogate models,
%\chapter{Chapter 2}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter 3
% Brief Introduction to equation-informed (unsupervised) NN approximations to PDEs PINNs, overview of results (forward, backward, identification, SDEs), FFR Application?
%\chapter{Chapter 3}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% 1D Deep LS, Deep FOSLS, Deep Energy Method comparison
%\chapter{Chapter 2}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% 2D (Unconstrained?) PDEs
% Deep FOSLS vs PINNs comparison.
% Poisson-like Equations
% Poisson
% Diffusion
% Helmholtz
%
%\chapter{Chapter 2}
%laplace
%\input{poisson2d.tex}
%\input{surfacepoisson2d.tex}
%%\input{diffusion2d.tex}
%%\input{diffusionreaction2d.tex}
%singularlyperturbed
%\input{advectiondiffusionreaction2d.tex}
%\input{helmholtz2d.tex}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% Introduction: FEM and LSFEM methods
% Linear and Hyperelastic Elasticity
% PINNs vs Deep FOSLS (Deep Energy Method?)comparison
% thesisLeast-squares mixed finite elements for geometricallySteegerDiss.pdf
%\chapter{Finite Element Methods and Least-Squares FEM in Solid and Fluid Mechanics}
%%\input{Galerkin and mixed Galerkin finite elements.tex}
%\input{GalerkinandMixedGalerkinFiniteElements.tex}
%%\input{Least-squares mixed finite elements.tex}
%\input{LeastSquaresMixedFiniteElements.tex}
%%\input{Outline}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% 2D Static Solid Mechanics
% Linear and Hyperelastic Elasticity
% PINNs vs Deep FOSLS (Deep Energy Method?)comparison
% thesisLeast-squares mixed finite elements for geometricallySteegerDiss.pdf
%\chapter{Continuum mechanical background}
%\input{KinematicsAndDeformationMeasures.tex}
%\input{StressQuantities.tex}
%\input{Hyperelasticmaterials.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% Background: LSFFEM for Steady Newtonian Fluid Mechanics
%\chapter{First-Order Systems Least-Squares Formulations of Navier-Stokes Equations for Steady Newtonian Fluid Mechanics}
%\input{LinearElasticityPureTractionFormulation.tex}
%\input{LinearElasticityPureDisplacementFormulation.tex}
%\input{LinearElasticityTractionDisplacementFormulation.tex}
%\input{hyperelasticfosls.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% Background: LSFFEM for Steady Newtonian Fluid Mechanics
%\chapter{First-Order Systems Least-Squares Formulations of Navier-Stokes Equations for Steady Newtonian Fluid Mechanics}
%\input{VPFormulation.tex}
%\input{VVFormulation.tex}
%\input{VVPFormulation.tex}
%\input{VPSFormulation.tex}
%\input{VVGFormulation.tex}
%\input{VVTFormulation.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% PINN Approximations to Navier-Stokes:
% 2D Steady Newtonian Fluid Mechanics
%\chapter{PINN Approximations to Navier-Stokes: Steady Newtonian Fluid Mechanics}
%\input{chapter2.tex}
%\subimport{notes/}{windkessel_overview.tex}
%%\input{./notes/windkessel_overview.tex}
%%\input{../notes/FOSLS/BLOCKSTENOSISSTEADY2D.tex}
%%\input{/notes/FOSLS/BLOCKSTENOSISSTEADY2D.tex}
%%\input{../notes/FOSLS/BLOCKSTENOSIS_STEADY_2D.tex}
%%\input{../notes/FOSLS/SECTION_ANNULARRING_STEADY_2D.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% 2D Steady Non-Newtonian Fluid Mechanics, Special Methods, Applications
%\chapter{Chapter 2}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% Time-Dependent FOSLS Method, 1D/2D Advection-Diffusion-Reaction, Burger's, KdV, NL Schrodinger
%\chapter{Chapter 2}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% PIGAN FOSLS vs Primitive FOSLS: Pressure Reconstruction, Darcy, and Elasticity
%\chapter{Chapter 2}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% Bayesian PINNs vs Bayesian FOSLS PINNs for UQ, noise distributions
%\chapter{Chapter 2}
%\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Chapter
% Operator Learning (DeepONet, MIONet, and Fourcastnet) 1D Deep LS, Deep FOSLS, Deep Energy Method comparison
%\chapter{Chapter 2}
%\input{chapter2.tex}
%{\tiny }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% BIBLIOGRAPHY AND OTHER LISTS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\backmatter
% Bibliography
\bibliography{dissertation}
\addtocontents{toc}{\protect\vspace*{\baselineskip}}
% Add bibliography to contents page
\addcontentsline{toc}{chapter}{Bibliography} %'Bibliography' into toc
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% APPENDICES
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\appendix
%\chapter{}
%\section{}