-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbibliography.bib
executable file
·1807 lines (1697 loc) · 160 KB
/
bibliography.bib
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
@misc{abbottMcabbottTullioJl2022,
title = {Mcabbott/{{Tullio}}.Jl: V0.3.5},
shorttitle = {Mcabbott/{{Tullio}}.Jl},
author = {Abbott, Michael and {Dilum Aluthge} and {N3N5} and Schaub, Simeon and Elrod, Chris and Lucibello, Carlo and Chen, Johnny},
year = {2022},
month = sep,
doi = {10.5281/ZENODO.7106192},
url = {https://zenodo.org/record/7106192},
urldate = {2023-07-12},
abstract = {Tullio v0.3.5 Diff since v0.3.4 {$<$}strong{$>$}Closed issues:{$<$}/strong{$>$} Using Tullio within generated functions (\#149) poor performance for simple GPU loop (\#152) Symbolic gradient producing surprising results (\#153) {$<$}strong{$>$}Merged pull requests:{$<$}/strong{$>$} Don't call {$<$}code{$>$}parent{$<$}/code{$>$} before {$<$}code{$>$}similar{$<$}/code{$>$} (\#159) (@mcabbott)},
copyright = {Open Access},
howpublished = {Zenodo}
}
@article{AlnaesEtal2015,
title = {The {{FEniCS}} Project Version 1.5},
author = {Alnaes, M. S. and Blechta, J. and Hake, J. and Johansson, A. and Kehlet, B. and Logg, A. and Richardson, C. and Ring, J. and Rognes, M. E. and Wells, G. N.},
year = {2015},
journal = {Archive of Numerical Software},
volume = {3},
doi = {10.11588/ans.2015.100.20553}
}
@article{andersonMFEMModularFinite2021a,
title = {{{MFEM}}: {{A}} Modular Finite Element Methods Library},
shorttitle = {{{MFEM}}},
author = {Anderson, Robert and Andrej, Julian and Barker, Andrew and Bramwell, Jamie and Camier, Jean-Sylvain and Cerveny, Jakub and Dobrev, Veselin and Dudouit, Yohann and Fisher, Aaron and Kolev, Tzanio and Pazner, Will and Stowell, Mark and Tomov, Vladimir and Akkerman, Ido and Dahm, Johann and Medina, David and Zampini, Stefano},
year = {2021},
month = jan,
journal = {Computers \& Mathematics with Applications},
series = {Development and {{Application}} of {{Open-source Software}} for {{Problems}} with {{Numerical PDEs}}},
volume = {81},
pages = {42--74},
issn = {0898-1221},
doi = {10.1016/j.camwa.2020.06.009},
url = {https://www.sciencedirect.com/science/article/pii/S0898122120302583},
urldate = {2024-02-01},
abstract = {MFEM is an open-source, lightweight, flexible and scalable C++ library for modular finite element methods that features arbitrary high-order finite element meshes and spaces, support for a wide variety of discretization approaches and emphasis on usability, portability, and high-performance computing efficiency. MFEM's goal is to provide application scientists with access to cutting-edge algorithms for high-order finite element meshing, discretizations and linear solvers, while enabling researchers to quickly and easily develop and test new algorithms in very general, fully unstructured, high-order, parallel and GPU-accelerated settings. In this paper we describe the underlying algorithms and finite element abstractions provided by MFEM, discuss the software implementation, and illustrate various applications of the library.},
keywords = {Finite element methods,High-order methods,High-performance computing,Matrix-free algorithms,Numerical PDEs,Open-source scientific software},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/P8YG34V6/Anderson et al. - 2021 - MFEM A modular finite element methods library.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/GTUDF8S5/S0898122120302583.html}
}
@incollection{arndtExaDGHighOrderDiscontinuous2020,
title = {{{ExaDG}}: {{High-Order Discontinuous Galerkin}} for the {{Exa-Scale}}},
shorttitle = {{{ExaDG}}},
booktitle = {Software for {{Exascale Computing}} - {{SPPEXA}} 2016-2019},
author = {Arndt, Daniel and Fehn, Niklas and Kanschat, Guido and Kormann, Katharina and Kronbichler, Martin and Munch, Peter and Wall, Wolfgang A. and Witte, Julius},
editor = {Bungartz, Hans-Joachim and Reiz, Severin and Uekermann, Benjamin and Neumann, Philipp and Nagel, Wolfgang E.},
year = {2020},
volume = {136},
pages = {189--224},
publisher = {{Springer International Publishing}},
address = {{Cham}},
doi = {10.1007/978-3-030-47956-5_8},
url = {http://link.springer.com/10.1007/978-3-030-47956-5_8},
urldate = {2023-07-10},
abstract = {This text presents contributions to efficient high-order finite element solvers in the context of the project ExaDG, part of the DFG priority program 1648 Software for Exascale Computing (SPPEXA). The main algorithmic components are the matrix-free evaluation of finite element and discontinuous Galerkin operators with sum factorization to reach a high node-level performance and parallel scalability, a massively parallel multigrid framework, and efficient multigrid smoothers. The algorithms have been applied in a computational fluid dynamics context. The software contributions of the project have led to a speedup by a factor 3 - 4 depending on the hardware. Our implementations are available via the deal.II finite element library.},
isbn = {978-3-030-47955-8 978-3-030-47956-5},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/YFXL2BZT/Arndt et al. - 2020 - ExaDG High-Order Discontinuous Galerkin for the E.pdf}
}
@article{arnoldUnifiedAnalysisDiscontinuous2002,
title = {Unified {{Analysis}} of {{Discontinuous Galerkin Methods}} for {{Elliptic Problems}}},
author = {Arnold, Douglas N. and Brezzi, Franco and Cockburn, Bernardo and Marini, L. Donatella},
year = {2002},
month = jan,
journal = {SIAM Journal on Numerical Analysis},
volume = {39},
number = {5},
pages = {1749--1779},
issn = {0036-1429, 1095-7170},
doi = {10.1137/S0036142901384162},
url = {http://epubs.siam.org/doi/10.1137/S0036142901384162},
urldate = {2022-12-20},
abstract = {We provide a framework for the analysis of a large class of discontinuous methods for second-order elliptic problems. It allows for the understanding and comparison of most of the discontinuous Galerkin methods that have been proposed over the past three decades for the numerical treatment of elliptic problems.},
langid = {english},
annotation = {2071 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/28SVLGZN/Arnold et al. - 2002 - Unified Analysis of Discontinuous Galerkin Methods.pdf}
}
@article{badiaGenericFiniteElement2020,
title = {A {{Generic Finite Element Framework}} on {{Parallel Tree-Based Adaptive Meshes}}},
author = {Badia, Santiago and Mart{\'i}n, Alberto F. and Neiva, Eric and Verdugo, Francesc},
year = {2020},
month = jan,
journal = {SIAM Journal on Scientific Computing},
volume = {42},
number = {6},
pages = {C436-C468},
issn = {1064-8275, 1095-7197},
doi = {10.1137/20M1328786},
url = {https://epubs.siam.org/doi/10.1137/20M1328786},
urldate = {2023-07-10},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/PFJRRGFN/Badia et al. - 2020 - A Generic Finite Element Framework on Parallel Tre.pdf}
}
@article{bangerthDataStructuresRequirements2009,
title = {Data Structures and Requirements for {\emph{Hp}} Finite Element Software},
author = {Bangerth, W. and {Kayser-Herold}, O.},
year = {2009},
month = mar,
journal = {ACM Transactions on Mathematical Software},
volume = {36},
number = {1},
pages = {1--31},
issn = {0098-3500, 1557-7295},
doi = {10.1145/1486525.1486529},
url = {https://dl.acm.org/doi/10.1145/1486525.1486529},
urldate = {2023-03-29},
abstract = {Finite element methods approximate solutions of partial differential equations by restricting the problem to a finite dimensional function space. In hp adaptive finite element methods, one defines these discrete spaces by choosing different polynomial degrees for the shape functions defined on a locally refined mesh. Although this basic idea is quite simple, its implementation in algorithms and data structures is challenging. It has apparently not been documented in the literature in its most general form. Rather, most existing implementations appear to be for special combinations of finite elements, or for discontinuous Galerkin methods. In this article, we discuss generic data structures and algorithms used in the implementation of hp methods for arbitrary elements, and the complications and pitfalls one encounters. As a consequence, we list the information a description of a finite element has to provide to the generic algorithms for it to be used in an hp context. We support our claim that our reference implementation is efficient using numerical examples in two dimensions and three dimensions, and demonstrate that the hp -specific parts of the program do not dominate the total computing time. This reference implementation is also made available as part of the Open Source deal.II finite element library.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/LGB6443K/Bangerth und Kayser-Herold - 2009 - Data structures and requirements for hp fin.pdf}
}
@article{bangerthDealIIGeneralpurpose2007,
title = {Deal.{{II}} - {{A}} General-Purpose Object-Oriented Finite Element Library},
author = {Bangerth, W. and Hartmann, R. and Kanschat, G.},
year = {2007},
month = aug,
journal = {ACM Transactions on Mathematical Software},
volume = {33},
number = {4},
pages = {24--es},
issn = {0098-3500},
doi = {10.1145/1268776.1268779},
url = {https://doi.org/10.1145/1268776.1268779},
urldate = {2022-05-13},
abstract = {An overview of the software design and data abstraction decisions chosen for deal.II, a general purpose finite element library written in C++, is given. The library uses advanced object-oriented and data encapsulation techniques to break finite element implementations into smaller blocks that can be arranged to fit users requirements. Through this approach, deal.II supports a large number of different applications covering a wide range of scientific areas, programming methodologies, and application-specific algorithms, without imposing a rigid framework into which they have to fit. A judicious use of programming techniques allows us to avoid the computational costs frequently associated with abstract object-oriented class libraries. The paper presents a detailed description of the abstractions chosen for defining geometric information of meshes and the handling of degrees of freedom associated with finite element spaces, as well as of linear algebra, input/output capabilities and of interfaces to other software, such as visualization tools. Finally, some results obtained with applications built atop deal.II are shown to demonstrate the powerful capabilities of this toolbox.},
keywords = {Object-orientation,software design},
annotation = {856 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/8AJA2XAC/Bangerth et al. - 2007 - deal.II—A general-purpose object-oriented f.pdf}
}
@article{barangerConnectionFiniteVolume1996,
title = {Connection between Finite Volume and Mixed Finite Element Methods},
author = {Baranger, Jacques and Maitre, Jean-Fran{\c c}ois and Oudin, Fabienne},
year = {1996},
journal = {ESAIM: Mathematical Modelling and Numerical Analysis},
volume = {30},
number = {4},
pages = {445--465},
issn = {0764-583X, 1290-3841},
doi = {10.1051/m2an/1996300404451},
url = {http://www.esaim-m2an.org/10.1051/m2an/1996300404451},
urldate = {2022-10-21},
langid = {english},
annotation = {60 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/VTXDLYKB/Baranger et al. - 1996 - Connection between finite volume and mixed finite .pdf}
}
@article{besardEffectiveExtensibleProgramming2018,
title = {Effective Extensible Programming: {{Unleashing Julia}} on {{GPUs}}},
author = {Besard, Tim and Foket, Christophe and De Sutter, Bjorn},
year = {2018},
journal = {IEEE Transactions on Parallel and Distributed Systems},
eprint = {1712.03112},
primaryclass = {cs.PL},
issn = {1045-9219},
doi = {10.1109/TPDS.2018.2872064},
archiveprefix = {arxiv},
annotation = {66 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/BRJKWEBQ/Besard et al. - 2018 - Effective extensible programming Unleashing Julia.pdf}
}
@article{bezansonJuliaFreshApproach2017,
title = {Julia: {{A Fresh Approach}} to {{Numerical Computing}}},
shorttitle = {Julia},
author = {Bezanson, Jeff and Edelman, Alan and Karpinski, Stefan and Shah, Viral B.},
year = {2017},
month = jan,
journal = {SIAM Review},
volume = {59},
number = {1},
pages = {65--98},
publisher = {{Society for Industrial and Applied Mathematics}},
issn = {0036-1445},
doi = {10.1137/141000671},
url = {https://epubs.siam.org/doi/abs/10.1137/141000671},
urldate = {2023-03-21},
abstract = {This is the third in a series of papers on aspects of modern computing environments that are relevant to statistical data analysis. In this paper, we discuss programming environments. In particular, we argue that integrated programming environments (for example, Lisp and Smalltalk environments) are more appropriate as a base for data analysis than conventional operating systems (for example, Unix).},
annotation = {2244 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/MQQ6HM4G/Bezanson et al. - 2017 - Julia A Fresh Approach to Numerical Computing.pdf}
}
@book{bitsadze1988some,
title = {Some Classes of Partial Differential Equations},
author = {Bitsadze, Andrei Vasilevich},
year = {1988},
volume = {4},
publisher = {{CRC Press}}
}
@article{brackbillContinuumMethodModeling1992,
ids = {brackbillContinuumMethodModeling1992a},
title = {A Continuum Method for Modeling Surface Tension},
author = {Brackbill, J.U and Kothe, D.B and Zemach, C},
year = {1992},
month = jun,
journal = {Journal of Computational Physics},
volume = {100},
number = {2},
pages = {335--354},
issn = {0021-9991},
doi = {10.1016/0021-9991(92)90240-Y},
url = {http://www.sciencedirect.com/science/article/pii/002199919290240Y},
abstract = {A new method for modeling surface tension effects on fluid motion has been developed. Interfaces between fluids of different properties, or ``colors,'' are represented as transition regions of finite thickness, across which the color variable varies continuously. At each point in the transition region, a force density is defined which is proportional to the curvature of the surface of constant color at that point. It is normalized so that the conventional description of surface tension on an interface is recovered when the ratio of local transition region thickness to local radius of curvature approaches zero. The continuum method eliminates the need for interface reconstruction, simplifies the calculation of surface tension, enables accurate modeling of two- and three-dimensional fluid flows driven by surface forces, and does not impose any modeling restrictions on the number, complexity, or dynamic evolution of fluid interfaces having surface tension. Computational results for two-dimensional flows are given to illustrate the properties of the method.},
keywords = {marangoni},
annotation = {6102 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/Y5IZYGKN/Brackbill et al. - 1992 - A continuum method for modeling surface tension.pdf;C\:\\Users\\zimbropa\\Downloads\\1-s2.0-002199919290240Y-main.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/T5667NVA/002199919290240Y.html}
}
@article{brezziDiscourseStabilityConditions1990,
title = {A Discourse on the Stability Conditions for Mixed Finite Element Formulations},
author = {Brezzi, Franco and Bathe, Klaus-J{\"u}rgen},
year = {1990},
month = sep,
journal = {Computer Methods in Applied Mechanics and Engineering},
volume = {82},
number = {1-3},
pages = {27--57},
issn = {00457825},
doi = {10.1016/0045-7825(90)90157-H},
url = {https://linkinghub.elsevier.com/retrieve/pii/004578259090157H},
urldate = {2024-02-02},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/VTJDMAKZ/Brezzi und Bathe - 1990 - A discourse on the stability conditions for mixed .pdf}
}
@article{brooksStreamlineUpwindPetrovGalerkin1982,
title = {Streamline Upwind/{{Petrov-Galerkin}} Formulations for Convection Dominated Flows with Particular Emphasis on the Incompressible {{Navier-Stokes}} Equations},
author = {Brooks, Alexander N. and Hughes, Thomas J. R.},
year = {1982},
month = sep,
journal = {Computer Methods in Applied Mechanics and Engineering},
volume = {32},
number = {1},
pages = {199--259},
issn = {0045-7825},
doi = {10.1016/0045-7825(82)90071-8},
url = {https://www.sciencedirect.com/science/article/pii/0045782582900718},
urldate = {2023-06-30},
abstract = {A new finite element formulation for convection dominated flows is developed. The basis of the formulation is the streamline upwind concept, which provides an accurate multidimensional generalization of optimal one-dimensional upwind schemes. When implemented as a consistent Petrov-Galerkin weighted residual method, it is shown that the new formulation is not subject to the artificial diffusion criticisms associated with many classical upwind methods. The accuracy of the streamline upwind/Petrov-Galerkin formulation for the linear advection diffusion equation is demonstrated on several numerical examples. The formulation is extended to the incompressible Navier-Stokes equations. An efficient implicit pressure/explicit velocity transient algorithm is developed which accomodates several treatments of the incompressibility constraint and allows for multiple iterations within a time step. The effectiveness of the algorithm is demonstrated on the problem of vortex shedding from a circular cylinder at a Reynolds number of 100.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/GMD5KZGT/Brooks und Hughes - 1982 - Streamline upwindPetrov-Galerkin formulations for.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/L4CP8SDB/0045782582900718.html}
}
@article{bui-thanhGodunovUnifiedHybridized2015,
title = {From {{Godunov}} to a Unified Hybridized Discontinuous {{Galerkin}} Framework for Partial Differential Equations},
author = {{Bui-Thanh}, Tan},
year = {2015},
month = aug,
journal = {Journal of Computational Physics},
volume = {295},
pages = {114--146},
issn = {00219991},
doi = {10.1016/j.jcp.2015.04.009},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0021999115002557},
urldate = {2023-07-10},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/QG8VYLEI/Bui-Thanh - 2015 - From Godunov to a unified hybridized discontinuous.pdf}
}
@article{caboussatNumericalSimulationTemperaturedriven2023,
title = {Numerical Simulation of Temperature-Driven Free Surface Flows, with Application to Laser Melting and Polishing},
author = {Caboussat, Alexandre and Hess, Julien and Masserey, Alexandre and Picasso, Marco},
year = {2023},
month = jun,
journal = {Journal of Computational Physics: X},
pages = {100127},
issn = {25900552},
doi = {10.1016/j.jcpx.2023.100127},
url = {https://linkinghub.elsevier.com/retrieve/pii/S2590055223000057},
urldate = {2023-06-06},
abstract = {We present a multi-physics model for the approximation of the coupled system formed by the heat equation and the Navier-Stokes equations with solidification and free surfaces. The computational domain is the union of two overlapping regions: a larger domain to account for thermal effects, and a smaller region to account for the fluid flow. Temperature-dependent surface effects are accounted for via surface tension and Marangoni forces. The volume-of-fluid approach is used to track the free surfaces between the metal (liquid or solidified) and the ambient air. The numerical method incorporates all the physical phenomena within an operator splitting strategy. The discretization relies on a two-grid approach that uses an unstructured finite element mesh for diffusion phenomena and a structured Cartesian grid for advection phenomena. The model is validated through numerical experiments, the main application being laser melting and polishing.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/54TG5UH2/Caboussat et al. - 2023 - Numerical simulation of temperature-driven free su.pdf}
}
@article{cahnFreeEnergyNonuniform1958,
title = {Free {{Energy}} of a {{Nonuniform System}}. {{I}}. {{Interfacial Free Energy}}},
author = {Cahn, John W. and Hilliard, John E.},
year = {1958},
month = feb,
journal = {The Journal of Chemical Physics},
volume = {28},
number = {2},
pages = {258--267},
publisher = {{American Institute of Physics}},
issn = {0021-9606},
doi = {10.1063/1.1744102},
url = {https://aip.scitation.org/doi/10.1063/1.1744102},
urldate = {2021-03-03},
annotation = {7359 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/4BAUM2QI/1.html}
}
@inproceedings{Chaco95,
title = {A Multilevel Algorithm for Partitioning Graphs},
booktitle = {Supercomputing '95: {{Proceedings}} of the 1995 {{ACM}}/{{IEEE}} Conference on Supercomputing ({{CDROM}})},
author = {Hendrickson, Bruce and Leland, Robert},
year = {1995},
pages = {28},
publisher = {{ACM Press}},
address = {{New York}},
doi = {https://doi.acm.org/10.1145/224170.224228},
isbn = {0-89791-816-9}
}
@article{chowdhuryLaserPowderBed2022,
title = {Laser {{Powder Bed Fusion}}: {{A State-of-the-Art Review}} of the {{Technology}}, {{Materials}}, {{Properties}} \& {{Defects}}, and {{Numerical Modelling}}},
shorttitle = {Laser {{Powder Bed Fusion}}},
author = {Chowdhury, Sohini and Yadaiah, N. and Prakash, Chander and Ramakrishna, Seeram and Dixit, Saurav and Gulta, Lovi Raj and Buddhi, Dharam},
year = {2022},
month = aug,
journal = {Journal of Materials Research and Technology},
issn = {2238-7854},
doi = {10.1016/j.jmrt.2022.07.121},
url = {https://www.sciencedirect.com/science/article/pii/S2238785422011607},
urldate = {2022-08-16},
abstract = {Additive Manufacturing (AM) has revolutionized the manufacturing industry in several directions. Laser powder bed fusion (LPBF), a powder bed fusion AM process, has been dramatically accepted in various industries due to its versatility with several materials, including alloys. This comprehensive review article primarily explains the basic principle of the LPBF process, scientific and technological progress of several inter-related parameters, feedstock materials, produced properties/defects, and insights of numerical modelling to virtually understand the process behavior. Specific attention has been given to selective laser-meted (LPBFed) properties, driven through the microstructure formations and, thereby, concerning defects. The scope of the post-processing techniques to refine microstructure has also been discussed in this review paper. It has been identified that the defects are vital in LPBF process and are primarily governed by the process parameters. Therefore, a wisely chosen, optimized set of parameters can play a crucial role in minimizing defects considerably. Finally, the numerical modeling discussed in this review paper will help the researchers understand the LPBF process.},
langid = {english},
keywords = {Additive Manufacturing,Defects,Feedstock Materials,Numerical Modeling,Properties,Selective Laser Melting},
annotation = {13 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/6GAIRWB3/Chowdhury et al. - 2022 - Laser Powder Bed Fusion A State-of-the-Art Review.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/P8A74WBC/S2238785422011607.html}
}
@book{ciarletFiniteElementMethod2002,
title = {The Finite Element Method for Elliptic Problems},
author = {Ciarlet, Philippe G.},
year = {2002},
series = {Classics in Applied Mathematics},
number = {40},
publisher = {{Society for Industrial and Applied Mathematics}},
address = {{Philadelphia, PA}},
isbn = {978-0-89871-514-9},
langid = {english},
lccn = {QA377 .C53 2002},
keywords = {Boundary value problems,Differential equations Elliptic,Finite element method,Numerical solutions},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/2YCXUWYD/Preface_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/3SPIT289/Copyright-page_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/4KXEDEP5/Studies-in-Mathematics-and-its-Appl_1978_Studies-in-Mathematics-and-Its-Appl.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/63D75GDQ/General-Plan-and-Interdependence-_1978_Studies-in-Mathematics-and-Its-Applic.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/6YQUT3QK/Chapter-4---Other-Finite-Element-Methods-Fo_1978_Studies-in-Mathematics-and-.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/82QUJH6R/Dedication_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/9QSGK7DW/Bibliography_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/F4VNL779/Chapter-2---Introduction-to-the-Finite-_1978_Studies-in-Mathematics-and-Its-.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/HYW4D8W4/Chapter-1---Elliptic-Boundary-Value-_1978_Studies-in-Mathematics-and-Its-App.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/IYLK2ALF/Chapter-3---Conforming-Finite-Element-Method_1978_Studies-in-Mathematics-and.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/NBKI4YNJ/Index_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/PNZXQEN3/Ciarlet - 2002 - The finite element method for elliptic problems.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/THCKSWCZ/Epilogue----Some--real-life--finite-eleme_1978_Studies-in-Mathematics-and-It.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/V39H7JZ3/Chapter-6---Finite-Element-Methods-for-T_1978_Studies-in-Mathematics-and-Its.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/XNCG74MP/Glossary-of-Symbols_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/YYVG5VZC/Chapter-5---Application-of-the-finite-Element-_1978_Studies-in-Mathematics-a.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/ZDGUL9BT/Front-Matter_1978_Studies-in-Mathematics-and-Its-Applications.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/ZDHC2XRL/Chapter-7---A-Mixed-Finite-Element-_1978_Studies-in-Mathematics-and-Its-Appl.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/ZSTELMIQ/Chapter-8---Finite-Element-Methods-f_1978_Studies-in-Mathematics-and-Its-App.pdf}
}
@book{cockburnDiscontinuousGalerkinMethods2000,
title = {Discontinuous {{Galerkin Methods}}: {{Theory}}, {{Computation}} and {{Applications}}},
shorttitle = {Discontinuous {{Galerkin Methods}}},
editor = {Cockburn, Bernardo and Karniadakis, George E. and Shu, Chi-Wang},
year = {2000},
series = {Lecture {{Notes}} in {{Computational Science}} and {{Engineering}}},
publisher = {{Springer-Verlag}},
address = {{Berlin Heidelberg}},
doi = {10.1007/978-3-642-59721-3},
url = {https://www.springer.com/gp/book/9783642640988},
urldate = {2021-03-19},
abstract = {This volume contains current progress of a new class of finite element method, the Discontinuous Galerkin Method (DGM), which has been under rapid developments recently and has found its use very quickly in such diverse applications as aeroacoustics, semi-conductor device simulation, turbomachinery, turbulent flows, materials processing, Magneto-hydro-dynamics, plasma simulations and image processing. While there has been a lot of interest from mathematicians, physicists and engineers in DGM, only scattered information is available and there has been no prior effect in organizing and publishing the existing volume of knowledge on this subject. The current volume organizes this knowledge and it covers both theoretical as well as practical issues of the Discontinuous Galerkin method.},
isbn = {978-3-642-64098-8},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/JPNLXCEZ/Cockburn et al. - 2000 - Discontinuous Galerkin Methods Theory, Computatio.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/XB2YCWD2/2000_Book_DiscontinuousGalerkinMethods.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/CHJXBB84/9783642640988.html}
}
@article{cockburnHybridizableDiscontinuousGalerkin2009,
title = {A {{Hybridizable Discontinuous Galerkin Method}} for {{Steady-State Convection-Diffusion-Reaction Problems}}},
author = {Cockburn, Bernardo and Dong, Bo and Guzm{\'a}n, Johnny and Restelli, Marco and Sacco, Riccardo},
year = {2009},
month = jan,
journal = {SIAM Journal on Scientific Computing},
volume = {31},
number = {5},
pages = {3827--3846},
issn = {1064-8275, 1095-7197},
doi = {10.1137/080728810},
url = {http://epubs.siam.org/doi/10.1137/080728810},
urldate = {2023-03-27},
abstract = {In this article, we propose a novel discontinuous Galerkin method for convectiondiffusion-reaction problems, characterized by three main properties. The first is that the method is hybridizable; this renders it efficiently implementable and competitive with the main existing methods for these problems. The second is that, when the method uses polynomial approximations of the same degree for both the total flux and the scalar variable, optimal convergence properties are obtained for both variables; this is in sharp contrast with all other discontinuous methods for this problem. The third is that the method exhibits superconvergence properties of the approximation to the scalar variable; this allows us to postprocess the approximation in an element-by-element fashion to obtain another approximation to the scalar variable which converges faster than the original one. In this paper, we focus on the efficient implementation of the method and on the validation of its computational performance. With this aim, extensive numerical tests are devoted to explore the convergence properties of the novel scheme, to compare it with other methods in the diffusiondominated regime, and to display its stability and accuracy in the convection-dominated case.},
langid = {english},
annotation = {120 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/YY6QY54W/Cockburn et al. - 2009 - A Hybridizable Discontinuous Galerkin Method for S.pdf}
}
@article{cockburnLocalDiscontinuousGalerkin1998,
title = {The {{Local Discontinuous Galerkin Method}} for {{Time-Dependent Convection-Diffusion Systems}}},
author = {Cockburn, Bernardo and Shu, Chi-Wang},
year = {1998},
month = dec,
journal = {SIAM Journal on Numerical Analysis},
volume = {35},
number = {6},
pages = {2440--2463},
issn = {0036-1429, 1095-7170},
doi = {10.1137/S0036142997316712},
url = {http://epubs.siam.org/doi/10.1137/S0036142997316712},
urldate = {2022-04-13},
abstract = {In this paper, we study the local discontinuous Galerkin (LDG) methods for nonlinear, time-dependent convection-diffusion systems. These methods are an extension of the Runge{\textendash}Kutta discontinuous Galerkin (RKDG) methods for purely hyperbolic systems to convection-diffusion systems and share with those methods their high parallelizability, high-order formal accuracy, and easy handling of complicated geometries for convection-dominated problems. It is proven that for scalar equations, the LDG methods are L2-stable in the nonlinear case. Moreover, in the linear case, it is shown that if polynomials of degree k are used, the methods are kth order accurate for general triangulations; although this order of convergence is suboptimal, it is sharp for the LDG methods. Preliminary numerical examples displaying the performance of the method are shown.},
langid = {english},
annotation = {1559 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/9B5TJJG3/S0036142997316712.pdf}
}
@article{cockburnLocallyDivergencefreeDiscontinuous2004,
title = {Locally Divergence-Free Discontinuous {{Galerkin}} Methods for the {{Maxwell}} Equations},
author = {Cockburn, Bernardo and Li, Fengyan and Shu, Chi-Wang},
year = {2004},
month = mar,
journal = {Journal of Computational Physics},
volume = {194},
number = {2},
pages = {588--610},
issn = {0021-9991},
doi = {10.1016/j.jcp.2003.09.007},
url = {https://www.sciencedirect.com/science/article/pii/S0021999103004960},
urldate = {2024-02-15},
abstract = {In this paper, we develop the locally divergence-free discontinuous Galerkin method for numerically solving the Maxwell equations. The distinctive feature of the method is the use of approximate solutions that are exactly divergence-free inside each element. As a consequence, this method has a smaller computational cost than that of the discontinuous Galerkin method with standard piecewise polynomial spaces. We show that, in spite of this fact, it produces approximations of the same accuracy. We also show that this method is more efficient than the discontinuous Galerkin method using globally divergence-free piecewise polynomial bases. Finally, a post-processing technique is used to recover (2k+1)th order of accuracy when piecewise polynomials of degree k are used.},
keywords = {Discontinuous Galerkin method,Divergence-free solutions,Maxwell equations},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/3KZCCTAQ/S0021999103004960.html}
}
@article{cockburnRungeKuttaDiscontinuous2001,
title = {Runge{\textendash}{{Kutta Discontinuous Galerkin Methods}} for {{Convection-Dominated Problems}}},
author = {Cockburn, Bernardo and Shu, Chi-Wang},
year = {2001},
month = sep,
journal = {Journal of Scientific Computing},
volume = {16},
number = {3},
pages = {173--261},
issn = {1573-7691},
doi = {10.1023/A:1012873910884},
url = {https://doi.org/10.1023/A:1012873910884},
urldate = {2022-01-18},
abstract = {In this paper, we review the development of the Runge{\textendash}Kutta discontinuous Galerkin (RKDG) methods for non-linear convection-dominated problems. These robust and accurate methods have made their way into the main stream of computational fluid dynamics and are quickly finding use in a wide variety of applications. They combine a special class of Runge{\textendash}Kutta time discretizations, that allows the method to be non-linearly stable regardless of its accuracy, with a finite element space discretization by discontinuous approximations, that incorporates the ideas of numerical fluxes and slope limiters coined during the remarkable development of the high-resolution finite difference and finite volume schemes. The resulting RKDG methods are stable, high-order accurate, and highly parallelizable schemes that can easily handle complicated geometries and boundary conditions. We review the theoretical and algorithmic aspects of these methods and show several applications including nonlinear conservation laws, the compressible and incompressible Navier{\textendash}Stokes equations, and Hamilton{\textendash}Jacobi-like equations.},
langid = {english},
keywords = {convection-diffusion equations,discontinuous Galerkin methods,non-linear conservation laws},
annotation = {1257 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/TJHNISQ2/Cockburn und Shu - 2001 - Runge–Kutta Discontinuous Galerkin Methods for Con.pdf}
}
@article{cockburnUnifiedHybridizationDiscontinuous2009,
title = {Unified {{Hybridization}} of {{Discontinuous Galerkin}}, {{Mixed}}, and {{Continuous Galerkin Methods}} for {{Second Order Elliptic Problems}}},
author = {Cockburn, Bernardo and Gopalakrishnan, Jayadeep and Lazarov, Raytcho},
year = {2009},
month = jan,
journal = {SIAM Journal on Numerical Analysis},
volume = {47},
number = {2},
pages = {1319--1365},
issn = {0036-1429, 1095-7170},
doi = {10.1137/070706616},
url = {http://epubs.siam.org/doi/10.1137/070706616},
urldate = {2023-03-27},
abstract = {We introduce a unifying framework for hybridization of finite element methods for second order elliptic problems. The methods fitting in the framework are a general class of mixed-dual finite element methods including hybridized mixed, continuous Galerkin, nonconforming, and a new, wide class of hybridizable discontinuous Galerkin methods. The distinctive feature of the methods in this framework is that the only globally coupled degrees of freedom are those of an approximation of the solution defined only on the boundaries of the elements. Since the associated matrix is sparse, symmetric, and positive definite, these methods can be efficiently implemented. Moreover, the framework allows, in a single implementation, the use of different methods in different elements or subdomains of the computational domain, which are then automatically coupled. Finally, the framework brings about a new point of view, thanks to which it is possible to see how to devise novel methods displaying very localized and simple mortaring techniques, as well as methods permitting an even further reduction of the number of globally coupled degrees of freedom.},
langid = {english},
annotation = {661 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/IM5BHIQ6/Cockburn et al. - 2009 - Unified Hybridization of Discontinuous Galerkin, M.pdf}
}
@article{dalcinParallelDistributedComputing2011,
title = {Parallel Distributed Computing Using {{Python}}},
author = {Dalcin, Lisandro D. and Paz, Rodrigo R. and Kler, Pablo A. and Cosimo, Alejandro},
year = {2011},
month = sep,
journal = {Advances in Water Resources},
volume = {34},
number = {9},
pages = {1124--1139},
issn = {03091708},
doi = {10.1016/j.advwatres.2011.04.013},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0309170811000777},
urldate = {2021-05-11},
langid = {english},
annotation = {306 citations (Crossref) [2023-03-27]}
}
@article{debroyAdditiveManufacturingMetallic2018,
title = {Additive Manufacturing of Metallic Components {\textendash} {{Process}}, Structure and Properties},
author = {DebRoy, T. and Wei, H. L. and Zuback, J. S. and Mukherjee, T. and Elmer, J. W. and Milewski, J. O. and Beese, A. M. and {Wilson-Heid}, A. and De, A. and Zhang, W.},
year = {2018},
month = mar,
journal = {Progress in Materials Science},
volume = {92},
pages = {112--224},
issn = {0079-6425},
doi = {10.1016/j.pmatsci.2017.10.001},
url = {https://www.sciencedirect.com/science/article/pii/S0079642517301172},
urldate = {2021-02-16},
abstract = {Since its inception, significant progress has been made in understanding additive manufacturing (AM) processes and the structure and properties of the fabricated metallic components. Because the field is rapidly evolving, a periodic critical assessment of our understanding is useful and this paper seeks to address this need. It covers the emerging research on AM of metallic materials and provides a comprehensive overview of the physical processes and the underlying science of metallurgical structure and properties of the deposited parts. The uniqueness of this review includes substantive discussions on refractory alloys, precious metals and compositionally graded alloys, a succinct comparison of AM with welding and a critical examination of the printability of various engineering alloys based on experiments and theory. An assessment of the status of the field, the gaps in the scientific understanding and the research needs for the expansion of AM of metallic components are provided.},
langid = {english},
keywords = {3D printing,Additive manufacturing,Directed energy deposition,Laser deposition,Powder bed fusion,Printability},
annotation = {3528 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/B5RY5Y3B/DebRoy et al. - 2018 - Additive manufacturing of metallic components – Pr.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/GSKY6E58/S0079642517301172.html}
}
@article{dugastPartscaleThermalProcess2021,
title = {Part-Scale Thermal Process Modeling for Laser Powder Bed Fusion with Matrix-Free Method and {{GPU}} Computing},
author = {Dugast, Florian and Apostolou, Petros and Fernandez, Alfonso and Dong, Wen and Chen, Qian and Strayer, Seth and Wicker, Ryan and To, Albert C.},
year = {2021},
month = jan,
journal = {Additive Manufacturing},
volume = {37},
pages = {101732},
issn = {2214-8604},
doi = {10.1016/j.addma.2020.101732},
url = {https://www.sciencedirect.com/science/article/pii/S2214860420311040},
urldate = {2022-05-09},
abstract = {This paper presents an efficient GPU-based part-scale thermal process simulator for laser powder bed fusion (L-PBF) additive manufacturing (AM). To take full advantage of modern GPU computing, a matrix-free preconditioned conjugate gradient (PCG) finite element algorithm with voxel mesh is proposed to solve the transient heat transfer problem involved in the L-PBF process. The accuracy of the developed simulator is demonstrated by comparing with a commercial software (ANSYS) using representative L-PBF process parameters and temperature-dependent thermal properties for Ti6Al4V. For efficiency, it is found that the process simulation has a significant speedup going from a single CPU to a single GPU implementation. A speedup is also observed with the matrix-free method compared to a linear solver using a sparse matrix, both on a single GPU. In addition, several schemes devised to gain higher efficiency are discussed in details, which include exclusion of inactive elements from the memory, adaptive meshing in the build direction, preconditioner, and layer lumping. Using these schemes, the adaptability and scalability of the developed simulator are demonstrated on a complex geometry. A calibration of the model is also performed in realistic conditions with a thermocouple measurement coming from experimental data.},
langid = {english},
keywords = {Additive manufacturing,Finite element analysis,GPU computing,Heat transfer modeling,Laser powder bed fusion,Matrix-free method,Process simulation},
annotation = {1 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/PANS2WXW/S2214860420311040.html}
}
@article{dumbserUnifiedFrameworkConstruction2008a,
title = {A Unified Framework for the Construction of One-Step Finite Volume and Discontinuous {{Galerkin}} Schemes on Unstructured Meshes},
author = {Dumbser, Michael and Balsara, Dinshaw S. and Toro, Eleuterio F. and Munz, Claus-Dieter},
year = {2008},
month = sep,
journal = {Journal of Computational Physics},
volume = {227},
number = {18},
pages = {8209--8253},
issn = {0021-9991},
doi = {10.1016/j.jcp.2008.05.025},
url = {https://www.sciencedirect.com/science/article/pii/S0021999108002829},
urldate = {2024-02-13},
abstract = {In this article, a conservative least-squares polynomial reconstruction operator is applied to the discontinuous Galerkin method. In a first instance, piecewise polynomials of degree N are used as test functions as well as to represent the data in each element at the beginning of a time step. The time evolution of these data and the flux computation, however, are then done with a different set of piecewise polynomials of degree M⩾N, which are reconstructed from the underlying polynomials of degree N. This approach yields a general, unified framework that contains as two special cases classical high order finite volume (FV) schemes (N=0) as well as the usual discontinuous Galerkin (DG) method (N=M). In the first case, the polynomial is reconstructed from cell averages, for the latter, the reconstruction reduces to the identity operator. A completely new class of numerical schemes is generated by choosing N{$\neq$}0 and M{$>$}N. The reconstruction operator is implemented for arbitrary polynomial degrees N and M on unstructured triangular and tetrahedral meshes in two and three space dimensions. To provide a high order accurate one-step time integration of the same formal order of accuracy as the spatial discretization operator, the (reconstructed) polynomial data of degree M are evolved in time locally inside each element using a new local continuous space{\textendash}time Galerkin method. As a result of this approach, we obtain, as a high order accurate predictor, space{\textendash}time polynomials for the vector of conserved variables and for the physical fluxes and source terms, which then can be used in a natural way to construct very efficient fully-discrete and quadrature-free one-step schemes. This feature is particularly important for DG schemes in three space dimensions, where the cost of numerical quadrature may become prohibitively expensive for very high orders of accuracy. Numerical convergence studies of all members of the new general class of proposed schemes are shown up to sixth-order of accuracy in space and time on unstructured two- and three-dimensional meshes for two very prominent nonlinear hyperbolic systems, namely for the Euler equations of compressible gas dynamics and the equations of ideal magnetohydrodynamics (MHD). The results indicate that the new class of intermediate schemes (N{$\neq$}0,M{$>$}N) is computationally more efficient than classical finite volume or DG schemes. Finally, a large set of interesting test cases is solved on unstructured meshes, where the proposed new time stepping approach is applied to the equations of ideal and relativistic MHD as well as to nonlinear elasticity, using a standard high order WENO finite volume discretization in space to cope with discontinuous solutions.},
keywords = {-exact least squares reconstruction,Discontinuous Galerkin,Euler equations,Finite volume,Hyperbolic PDE,Ideal and relativistic MHD equations,Local continuous space-time Galerkin method,Nonlinear elasticity,One-step time discretization,Unstructured meshes,WENO},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/DYVBTIKQ/S0021999108002829.html}
}
@article{eMultiscaleModeling2011,
title = {Multiscale Modeling},
author = {E, Weinan and Lu, Jianfeng},
year = {2011},
journal = {Scholarpedia},
volume = {6},
number = {10},
pages = {11527},
issn = {1941-6016},
doi = {10.4249/scholarpedia.11527},
url = {http://www.scholarpedia.org/article/Multiscale_modeling},
urldate = {2021-02-15},
langid = {english},
annotation = {14 citations (Crossref) [2023-03-27]}
}
@book{ePrinciplesMultiscaleModeling2011,
title = {Principles of Multiscale Modeling},
author = {E, Weinan},
year = {2011},
publisher = {{Cambridge University Press}},
address = {{Cambridge ; New York}},
isbn = {978-1-107-09654-7},
lccn = {TA342 .E13 2011},
keywords = {Multiscale modeling},
annotation = {OCLC: ocn721888752},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/WX9GXANS/E - 2011 - Principles of multiscale modeling.pdf}
}
@article{epshteynSymmetricInteriorPenalty,
title = {Symmetric {{Interior Penalty Galerkin Method}} for {{Elliptic Problems}}},
author = {Epshteyn, Yekaterina and Riviere, Beatrice},
abstract = {This paper presents computable lower bounds of the penalty parameters for stable and convergent symmetric interior penalty Galerkin methods. In particular, we derive the explicit dependence of the coercivity constants with respect to the polynomial degree and the angles of the mesh elements. Numerical examples in all dimensions and for different polynomial degrees are presented. We investigate the numerical effects of loss of coercivity.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/GMC8UQ8I/Epshteyn und Riviere - Symmetric Interior Penalty Galerkin Method for Ell.pdf}
}
@book{ernTheoryPracticeFinite2004,
title = {Theory and {{Practice}} of {{Finite Elements}}},
author = {Ern, Alexandre and Guermond, Jean-Luc},
year = {2004},
series = {Applied {{Mathematical Sciences}}},
publisher = {{Springer-Verlag}},
address = {{New York}},
doi = {10.1007/978-1-4757-4355-5},
url = {https://www.springer.com/gp/book/9780387205748},
urldate = {2021-03-17},
abstract = {This book presents the mathematical theory of finite elements, starting from basic results on approximation theory and finite element interpolation and building up to more recent research topics, such as and Discontinuous Galerkin, subgrid viscosity stabilization, and a posteriori error estimation. The body of the text is organized into three parts plus two appendices collecting the functional analysis results used in the book. The first part develops the theoretical basis for the finite element method and emphasizes the fundamental role of inf-sup conditions. The second party addresses various applications encompassing elliptic PDE's, mixed formulations, first-order PDEs, and the time-dependent versions of these problems. The third part covers implementation issues and should provide readers with most of the practical details needed to write or understand a finite element code. Written at the graduate level, the text contains numerous examples and exercises and is intended to serve as a graduate textbook. Depending on one's interests, several reading paths can be followed, emphasizing either theoretical results, numerical algorithms, code efficiency, or applications in the engineering sciences. The book will be useful to researchers and graduate students in mathematics, computer science and engineering.},
isbn = {978-0-387-20574-8},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/65R33WRK/Ern und Guermond - 2004 - Theory and Practice of Finite Elements.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/LZQ4AEUC/9780387205748.html}
}
@book{evansPartialDifferentialEquations2010,
title = {Partial Differential Equations},
author = {Evans, Lawrence C.},
year = {2010},
series = {Graduate Studies in Mathematics},
edition = {2nd ed},
number = {v. 19},
publisher = {{American Mathematical Society}},
address = {{Providence, R.I}},
abstract = {"This is the second edition of the now definitive text on partial differential equations (PDE). It offers a comprehensive survey of modern techniques in the theoretical study of PDE with particular emphasis on nonlinear equations. Its wide scope and clear exposition make it a great text for a graduate course in PDE. For this edition, the author has made numerous changes, including: a new chapter on nonlinear wave equations, more than 80 new exercises, several new sections, and a significantly expanded bibliography."--Publisher's description},
isbn = {978-0-8218-4974-3},
lccn = {QA377 .E95 2010},
keywords = {Differential equations Partial},
annotation = {OCLC: ocn465190110},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/5V9NYTZB/Evans - 2010 - Partial differential equations.pdf}
}
@incollection{eymardFiniteVolumeMethods2000,
title = {Finite Volume Methods},
booktitle = {Handbook of {{Numerical Analysis}}},
author = {Eymard, Robert and Gallou{\"e}t, Thierry and Herbin, Rapha{\`e}le},
year = {2000},
month = jan,
series = {Solution of {{Equation}} in {{$\mathbb{R}$}} ({{Part}} 3), {{Techniques}} of {{Scientific Computing}} ({{Part}} 3)},
volume = {7},
pages = {713--1018},
publisher = {{Elsevier}},
doi = {10.1016/S1570-8659(00)07005-8},
url = {https://www.sciencedirect.com/science/article/pii/S1570865900070058},
urldate = {2021-09-23},
abstract = {This chapter focuses on finite volume methods. The finite volume method is a discretization method that is well suited for the numerical simulation of various types (for instance, elliptic, parabolic, or hyperbolic) of conservation laws; it has been extensively used in several engineering fields, such as fluid mechanics, heat and mass transfer, or petroleum engineering. Some of the important features of the finite volume method are similar to those of the finite element method: it may be used on arbitrary geometries, using structured or unstructured meshes, and it leads to robust schemes. The finite volume method is locally conservative because it is based on a ``balance" approach: a local balance is written on each discretization cell that is often called ``control volume;'' by the divergence formula, an integral formulation of the fluxes over the boundary of the control volume is then obtained. The fluxes on the boundary are discretized with respect to the discrete unknowns.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/ADA7HTCR/bookevol.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/UV4NNXSD/Eymard et al. - 2000 - Finite volume methods.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/AMG5IP4I/S1570865900070058.html}
}
@manual{FiredrakeUserManual,
type = {Manual},
title = {Firedrake User Manual},
author = {Ham, David A. and Kelly, Paul H. J. and Mitchell, Lawrence and Cotter, Colin J. and Kirby, Robert C. and Sagiyama, Koki and Bouziani, Nacime and Vorderwuelbecke, Sophia and Gregory, Thomas J. and Betteridge, Jack and Shapero, Daniel R. and {Nixon-Hill}, Reuben W. and Ward, Connor J. and Farrell, Patrick E. and Brubeck, Pablo D. and Marsden, India and Gibson, Thomas H. and Homolya, Mikl{\'o}s and Sun, Tianjiao and McRae, Andrew T. T. and Luporini, Fabio and Gregory, Alastair and Lange, Michael and Funke, Simon W. and Rathgeber, Florian and Bercea, Gheorghe-Teodor and Markall, Graham R.},
year = {2023},
month = may,
edition = {First edition},
institution = {{Imperial College London and University of Oxford and Baylor University and University of Washington}},
doi = {10.25561/104839}
}
@article{FleckFedermannPogorelov2018,
title = {Phase-Field Modeling of {{Li-insertion}} Kinetics in Single {{LiFePO4-nano-particles}} for Rechargeable {{Li-ion}} Battery Application},
author = {Fleck, Michael and Federmann, Holger and Pogorelov, Evgeny},
year = {2018},
month = oct,
journal = {Computational Materials Science},
volume = {153},
pages = {288--296},
issn = {0927-0256},
doi = {10.1016/j.commatsci.2018.06.049},
url = {https://www.sciencedirect.com/science/article/pii/S0927025618304282},
urldate = {2023-09-25},
abstract = {We develop a continuum phase-field model for the simulation of diffusion limited solid-solid phase transformations during lithium insertion in LiFePO4-nano-particles. The solid-solid phase boundary between the LiFePO4 (LFP)-phase and the FePO4 (FP)-phase is modeled as a diffuse interface of finite width. The model-description explicitly resolves a single LiFePO4-particle, which is embedded in an elastically soft electrolyte-phase. Furthermore, we explicitly include anisotropic (orthorhombic) and inhomogeneous elastic effects, resulting from the coherency strain, as well as anisotropic (1D) Li-diffusion inside the nano-particle. In contrast to other related research work, we employ an Allen-Cahn-type phase-field approach for the diffuse interface modeling of the solid-solid phase boundary. The model contains an extra non-conserved order parameter field to distinguish the two different phases. The evolution of this order parameter field is controlled by an extra kinetic parameter independent from the Li-diffusion. Further, the effect of the nano-particle's size on the kinetics of FP to LFP phase transformations is investigated by means of both model. Both models predict a substantial increase in the steady state transformation velocity as the particle-size decreases down to dimensions that are comparable with the width of the interface between the FP and the LFP-phase. However, the extra kinetic parameter of the Allen-Cahn-type description may be used to reduce the strength of the velocity-increase with the decreasing particle size. Further, we consider the influence of anisotropic and inhomogeneous elasticity on the lithiation-kinetics within a rectangularly shaped LiFePO4-particle embedded in an elastically soft electrolyte. Finally, the simulation of equilibrium shapes of LiFePO4-particles is discussed. Within a respective feasibility study, we demonstrate that also the simulation of strongly anisotropic particles with aspect ratios up to 1/5 is possible.},
keywords = {Anisotropic elasticity,Anisotropic surface energy,LiFePO-Cathod material,Phase-field modeling,Solid-solid phase transformations},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/N4LS46K5/Fleck et al. - 2018 - Phase-field modeling of Li-insertion kinetics in s.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/VSFM36LZ/S0927025618304282.html}
}
@article{fleckFrictionlessMotionDiffuse2022,
title = {Frictionless {{Motion}} of {{Diffuse Interfaces}} by {{Sharp Phase-Field Modeling}}},
author = {Fleck, Michael and Schleifer, Felix and Zimbrod, Patrick},
year = {2022},
month = oct,
journal = {Crystals},
volume = {12},
number = {10},
pages = {1496},
publisher = {{Multidisciplinary Digital Publishing Institute}},
issn = {2073-4352},
doi = {10.3390/cryst12101496},
url = {https://www.mdpi.com/2073-4352/12/10/1496},
urldate = {2023-07-10},
abstract = {Diffuse interface descriptions offer many advantages for the modeling of microstructure evolution. However, the numerical representation of moving diffuse interfaces on discrete numerical grids involves spurious grid friction, which limits the overall performance of the model in many respects. Interestingly, this intricate and detrimental effect can be overcome in finite difference (FD) and fast Fourier transformation (FFT)-based implementations by employing the so-called sharp phase-field method (SPFM). The key idea is to restore the discretization-induced broken translational invariance (TI) in the discrete phase-field equation by using analytic properties of the equilibrium interface profile. We prove that this method can indeed eliminate spurious grid friction in the three-dimensional space. Focusing on homogeneous driving forces, we quantitatively evaluate the impact of spurious grid friction on the overall operational performance of different phase-field models. We show that the SPFM provides superior degrees of interface isotropy with respect to energy and kinetics. The latter property enables the frictionless motion of arbitrarily oriented diffuse interfaces on a fixed 3D grid.},
copyright = {http://creativecommons.org/licenses/by/3.0/},
langid = {english},
keywords = {finite differences,grid anisotropy,grid pinning,microstructure evolution,phase-field modeling},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/YSATK4T3/Fleck et al. - 2022 - Frictionless Motion of Diffuse Interfaces by Sharp.pdf}
}
@article{FleckPilipenSpatsch122010,
title = {Brittle Fracture in Viscoelastic Materials as a Pattern-Formation Process},
author = {Fleck, M. and Pilipenko, D. and Spatschek, R. and Brener, E. A.},
year = {2011},
journal = {Physical Review E: Statistical Physics, Plasmas, Fluids, and Related Interdisciplinary Topics},
volume = {83},
pages = {046213},
doi = {10.1103/PhysRevE.83.046213},
url = {http://link.aps.org/doi/10.1103/PhysRevE.83.046213},
abstract = {A continuum model of crack propagation in brittle viscoelastic materials is presented and discussed. Thereby, the phenomenon of fracture is understood as an elastically induced nonequilibrium interfacial pattern formation process. In this spirit, a full description of a propagating crack provides the determination of the entire time dependent shape of the crack surface, which is assumed to be extended over a finite and self-consistently selected length scale. The mechanism of crack propagation, that is, the motion of the crack surface, is then determined through linear nonequilibrium transport equations. Here we consider two different mechanisms, a first-order phase transformation and surface diffusion. We give scaling arguments showing that steady-state solutions with a self-consistently selected propagation velocity and crack shape can exist provided that elastodynamic or viscoelastic effects are taken into account, whereas static elasticity alone is not sufficient. In this respect, inertial effects as well as viscous damping are identified to be sufficient crack tip selection mechanisms. Exploring the arising description of brittle fracture numerically, we study steady-state crack propagation in the viscoelastic and inertia limit as well as in an intermediate regime, where both effects are important. The arising free boundary problems are solved by phase field methods and a sharp interface approach using a multipole expansion technique. Different types of loading, mode I, mode III fracture, as well as mixtures of them, are discussed.},
bdsk-url-2 = {http://arxiv.org/abs/1012.3945},
date-added = {2023-09-02 11:24:25 +0200},
date-modified = {2023-09-02 11:24:25 +0200},
keywords = {crack propagation,fracture,pattern formation}
}
@article{fleckSharpPhasefieldModeling2023,
title = {Sharp Phase-Field Modeling of Isotropic Solidification with a Super Efficient Spatial Resolution},
author = {Fleck, Michael and Schleifer, Felix},
year = {2023},
month = jun,
journal = {Engineering with Computers},
volume = {39},
number = {3},
pages = {1699--1709},
issn = {1435-5663},
doi = {10.1007/s00366-022-01729-z},
url = {https://doi.org/10.1007/s00366-022-01729-z},
urldate = {2023-07-10},
abstract = {The phase-field method provides a powerful framework for microstructure evolution modeling in complex systems, as often required within the framework of integrated computational materials engineering. However, spurious grid friction, pinning and grid anisotropy seriously limit the resolution efficiency and accuracy of these models. The energetic resolution limit is determined by the maximum dimensionless driving force at which reasonable model operation is still ensured. This limit turns out to be on the order of 1 for conventional phase-field models. In 1D, grid friction and pinning can be eliminated by a global restoration of Translational Invariance (TI) in the discretized phase-field equation. This is called the sharp phase-field method, which allows to choose substantially coarser numerical resolutions of the diffuse interface without the appearance of pinning. In 3D, global TI restricts the beneficial properties to a few specific interface orientations. We propose an accurate scheme to restore TI locally in the local interface normal direction. The new sharp phase-field model overcomes grid friction and pinning in three-dimensional simulations, and can accurately operate at dimensionless driving forces up to the order of \$\$10\^\{4\}\$\$. At one-grid-point interface resolutions, exceptional degrees of isotropy can be achieved, if further the largely inhomogeneous latent heat release at the advancing solid-liquid interface is mitigated. Imposing a newly proposed source term regularization, the new model captures the formation of isotropic seaweed structures without spurious dendritic selection by grid anisotropy, even at one-grid-point interface resolutions.},
langid = {english},
keywords = {Finite differences,Nonlinear preconditioning,Phase-field modeling,Solidification},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/TF85JN8M/Fleck und Schleifer - 2023 - Sharp phase-field modeling of isotropic solidifica.pdf}
}
@article{fornbergGenerationFiniteDifference1988,
title = {Generation of Finite Difference Formulas on Arbitrarily Spaced Grids},
author = {Fornberg, Bengt},
year = {1988},
journal = {Mathematics of Computation},
volume = {51},
number = {184},
pages = {699--706},
issn = {0025-5718, 1088-6842},
doi = {10.1090/S0025-5718-1988-0935077-0},
url = {https://www.ams.org/mcom/1988-51-184/S0025-5718-1988-0935077-0/},
urldate = {2022-05-02},
abstract = {Simple recursions are derived for calculating the weights in compact finite difference formulas for any order of derivative and to any order of accuracy on one-dimensional grids with arbitrary spacing. Tables are included for some special cases (of equispaced grids).},
langid = {english},
keywords = {Finite difference coefficients,high-order accuracy},
annotation = {556 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/WBDVSRL7/Fornberg - 1988 - Generation of finite difference formulas on arbitr.pdf}
}
@article{fringerUnstructuredgridFinitevolumeNonhydrostatic2006,
title = {An Unstructured-Grid, Finite-Volume, Nonhydrostatic, Parallel Coastal Ocean Simulator},
author = {Fringer, O.B. and Gerritsen, M. and Street, R.L.},
year = {2006},
month = jan,
journal = {Ocean Modelling},
volume = {14},
number = {3-4},
pages = {139--173},
issn = {14635003},
doi = {10.1016/j.ocemod.2006.03.006},
url = {https://linkinghub.elsevier.com/retrieve/pii/S1463500306000394},
urldate = {2023-08-28},
abstract = {A finite-volume formulation is presented that solves the three-dimensional, nonhydrostatic Navier{\textendash}Stokes equations with the Boussinesq approximation on an unstructured, staggered, z-level grid, with the goal of simulating nonhydrostatic processes in the coastal ocean with grid resolutions of tens of meters. In particular, the code has been developed to simulate the nonlinear, nonhydrostatic internal wave field in the littoral ocean. The method is based on the formulation developed by Casulli, in that the free-surface and vertical diffusion are semi-implicit, thereby removing stability limitations associated with the surface gravity wave and vertical diffusion terms. The remaining terms in the momentum equations are discretized explicitly with the second-order Adams{\textendash}Bashforth method, while the pressure-correction method is employed for the nonhydrostatic pressure in order to achieve overall second-order temporal accuracy. Advection of momentum is accomplished with an Eulerian discretization which conserves momentum in cells that do not contain the free surface, and scalar advection is discretized in a way that ensures consistency with continuity, thereby ensuring local and global mass conservation using a velocity field that conserves volume on a local and global basis. The nonhydrostatic pressure field is solved efficiently using a block-Jacobi preconditioner, and while stability is limited by the internal gravity wave speed and vertical advection of momentum, applications requiring relatively small time steps due to accuracy or stability constraints are run efficiently on parallel computers, since the present formulation is written entirely with the message-passing interface (MPI). The ParMETIS libraries are employed in order to achieve a load-balanced parallel partitioning that minimizes interprocessor communication, and the grid is reordered to optimize per-processor performance by limiting cache misses while accessing arrays in memory. Test cases demonstrate the ability of the code to efficiently and accurately compute the nonhydrostatic lock exchange and internal waves in idealized as well as real domains, and we evaluate the parallel efficiency of the code using up to 32 processors.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/FM3KRICN/Fringer et al. - 2006 - An unstructured-grid, finite-volume, nonhydrostati.pdf}
}
@article{gaburroUnifiedFrameworkSolution2021,
title = {A {{Unified Framework}} for the {{Solution}} of {{Hyperbolic PDE Systems Using High Order Direct Arbitrary-Lagrangian}}{\textendash}{{Eulerian Schemes}} on {{Moving Unstructured Meshes}} with {{Topology Change}}},
author = {Gaburro, Elena},
year = {2021},
month = may,
journal = {Archives of Computational Methods in Engineering},
volume = {28},
number = {3},
pages = {1249--1321},
issn = {1886-1784},
doi = {10.1007/s11831-020-09411-7},
url = {https://doi.org/10.1007/s11831-020-09411-7},
urldate = {2023-07-06},
abstract = {In this work, we review the family of direct Arbitrary-Lagrangian{\textendash}Eulerian (ALE) finite vlume (FV) and discontinuous Galerkin (DG) schemes on moving meshes that at each time step are rearranged by explicitly allowing topology changes, in order to guarantee a robust mesh evolution even for high shear flow and very long evolution times. Two different techniques are presented: a local nonconforming approach for dealing with sliding lines, and a global regeneration of Voronoi tessellations for treating general unpredicted movements. Corresponding elements at consecutive times are connected in space-time to construct closed space-time control volumes, whose bottom and top faces may be polygons with a different number of nodes, with different neighbors, and even degenerate space-time sliver elements. Our final ALE FV-DG scheme is obtained by integrating, over these arbitrary shaped space-time control volumes, the space-time conservation formulation of the governing hyperbolic PDE system: so, we directly evolve the solution in time avoiding any remapping stage, being conservative and satisfying the GCL by construction. Arbitrary high order of accuracy in space and time is achieved through a fully discrete one-step predictor{\textendash}corrector ADER approach, also integrated with well balancing techniques to further improve the accuracy and to maintain exactly even at discrete level many physical invariants of the studied system. A large set of different numerical tests has been carried out in order to check the accuracy and the robustness of our methods for both smooth and discontinuous problems, in particular in the case of vortical flows.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/YXUDN2N5/Gaburro - 2021 - A Unified Framework for the Solution of Hyperbolic.pdf}
}
@article{ghanbariAdaptiveLocalglobalMultiscale2020,
title = {Adaptive Local-Global Multiscale Approach for Thermal Simulation of the Selective Laser Melting Process},
author = {Ghanbari, P. Gh and Mazza, E. and Hosseini, E.},
year = {2020},
month = jan,
journal = {Additive Manufacturing},
pages = {101518},
issn = {2214-8604},
doi = {10.1016/j.addma.2020.101518},
abstract = {Additive Manufacturing, Journal Pre-proof, 101518. doi:10.1016/j.addma.2020.101518},
keywords = {Adaptive local-global simulation,additive manufacturing,Computational efficiency,Multiscale thermal modeling,selective laser melting},
annotation = {3 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/LMKR2UWE/1-s2.0-S2214860420308903-main.pdf}
}
@article{hartmannOptimalOrderInterior2008,
title = {An Optimal Order Interior Penalty Discontinuous {{Galerkin}} Discretization of the Compressible {{Navier}}{\textendash}{{Stokes}} Equations},
author = {Hartmann, Ralf and Houston, Paul},
year = {2008},
month = nov,
journal = {Journal of Computational Physics},
volume = {227},
number = {22},
pages = {9670--9685},
issn = {0021-9991},
doi = {10.1016/j.jcp.2008.07.015},
url = {https://www.sciencedirect.com/science/article/pii/S0021999108003975},
urldate = {2023-03-27},
abstract = {In this article we propose a new symmetric version of the interior penalty discontinuous Galerkin finite element method for the numerical approximation of the compressible Navier{\textendash}Stokes equations. Here, particular emphasis is devoted to the construction of an optimal numerical method for the evaluation of certain target functionals of practical interest, such as the lift and drag coefficients of a body immersed in a viscous fluid. With this in mind, the key ingredients in the construction of the method include: (i) an adjoint consistent imposition of the boundary conditions; (ii) an adjoint consistent reformulation of the underlying target functional of practical interest; (iii) design of appropriate interior penalty stabilization terms. Numerical experiments presented within this article clearly indicate the optimality of the proposed method when the error is measured in terms of both the L2-norm, as well as for certain target functionals. Computational comparisons with other discontinuous Galerkin schemes proposed in the literature, including the second scheme of Bassi and Rebay, cf. [F. Bassi, S. Rebay, GMRES discontinuous Galerkin solution of the compressible Navier{\textendash}Stokes equations, in: B. Cockburn, G. Karniadakis, C.-W. Shu (Eds.), Discontinuous Galerkin Methods, Lecture Notes in Comput. Sci. Engrg., vol. 11, Springer, Berlin, 2000, pp. 197{\textendash}208; F. Bassi, S. Rebay, Numerical evaluation of two discontinuous Galerkin methods for the compressible Navier{\textendash}Stokes equations, Int. J. Numer. Methods Fluids 40 (2002) 197{\textendash}207], the standard SIPG method outlined in [R. Hartmann, P. Houston, Symmetric interior penalty DG methods for the compressible Navier{\textendash}Stokes equations. I: Method formulation, Int. J. Numer. Anal. Model. 3(1) (2006) 1{\textendash}20], and an NIPG variant of the new scheme will be undertaken.},
langid = {english},
keywords = {Adjoint consistency,Compressible Navier-Stokes equations,Discontinuous Galerkin methods,Finite element methods},
annotation = {124 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/5D2FFC2S/Hartmann und Houston - 2008 - An optimal order interior penalty discontinuous Ga.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/NEY4VVPY/S0021999108003975.html}
}
@book{hesthavenNodalDiscontinuousGalerkin2008,
title = {Nodal {{Discontinuous Galerkin Methods}}},
author = {Hesthaven, Jan S. and Warburton, Tim},
editor = {Marsden, J. E. and Sirovich, L. and Antman, S. S.},
year = {2008},
series = {Texts in {{Applied Mathematics}}},
volume = {54},
publisher = {{Springer New York}},
address = {{New York, NY}},
doi = {10.1007/978-0-387-72067-8},
url = {http://link.springer.com/10.1007/978-0-387-72067-8},
urldate = {2021-03-19},
isbn = {978-0-387-72065-4 978-0-387-72067-8},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/SVR9HMTP/Hesthaven und Warburton - 2008 - Nodal Discontinuous Galerkin Methods.pdf}
}
@article{Homolya2016,
title = {A Parallel Edge Orientation Algorithm for Quadrilateral Meshes},
author = {Homolya, Mikl'os and Ham, David A.},
year = {2016},
journal = {SIAM Journal on Scientific Computing},
volume = {38},
number = {5},
eprint = {1505.03357},
primaryclass = {cs.MS},
pages = {S48--S61},
doi = {10.1137/15M1021325},
url = {http://arxiv.org/abs/1505.03357},
archiveprefix = {arxiv}
}
@article{hughesStabilizedMixedDiscontinuous2006,
title = {A Stabilized Mixed Discontinuous {{Galerkin}} Method for {{Darcy}} Flow},
author = {Hughes, Thomas J. R. and Masud, Arif and Wan, Jing},
year = {2006},
month = may,
journal = {Computer Methods in Applied Mechanics and Engineering},
series = {Discontinuous {{Galerkin Methods}}},
volume = {195},
number = {25},
pages = {3347--3381},
issn = {0045-7825},
doi = {10.1016/j.cma.2005.06.018},
url = {https://www.sciencedirect.com/science/article/pii/S0045782505002732},
urldate = {2024-02-15},
abstract = {A new mixed, stabilized, discontinuous Galerkin formulation for Darcy flow is presented. The formulation combines several attributes not simultaneously satisfied by other methods: It is convergent for any combination of velocity and pressure interpolation higher than first-order, it exactly satisfies a mass balance on each element, and it passes two- and three-dimensional constant-flow ``patch tests'' for distorted element geometries. The key ingredient in the formulation is a volumetric, residual-based, stabilization term that does not involve any mesh-dependent parameters.},
keywords = {Darcy flow,Discontinuous Galerkin method,Error estimates,Finite elements,Mass balance,Mixed method,Patch test,Stabilized method},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/MYJU362W/S0045782505002732.html}
}
@article{idelsohnFiniteVolumesFinite1994,
title = {Finite Volumes and Finite Elements: {{Two}} `Good Friends'},
shorttitle = {Finite Volumes and Finite Elements},
author = {Idelsohn, S. R. and O{\~n}ate, E.},
year = {1994},
month = oct,
journal = {International Journal for Numerical Methods in Engineering},
volume = {37},
number = {19},
pages = {3323--3341},
issn = {0029-5981, 1097-0207},
doi = {10.1002/nme.1620371908},
url = {https://onlinelibrary.wiley.com/doi/10.1002/nme.1620371908},
urldate = {2022-10-21},
langid = {english},
annotation = {73 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/XD3BU3UU/Idelsohn und Oñate - 1994 - Finite volumes and finite elements Two ‘good frie.pdf}
}
@article{johnDivergenceConstraintMixed2017,
title = {On the {{Divergence Constraint}} in {{Mixed Finite Element Methods}} for {{Incompressible Flows}}},
author = {John, Volker and Linke, Alexander and Merdon, Christian and Neilan, Michael and Rebholz, Leo G.},
year = {2017},
month = jan,
journal = {SIAM Review},
volume = {59},
number = {3},
pages = {492--544},
issn = {0036-1445, 1095-7200},
doi = {10.1137/15M1047696},
url = {https://epubs.siam.org/doi/10.1137/15M1047696},
urldate = {2024-02-01},
abstract = {The divergence constraint of the incompressible Navier-Stokes equations is revisite the mixed finite element framework. While many stable and convergent mixed eleme have been developed throughout the past four decades, most classical methods relax t divergence constraint and only enforce the condition discretely. As a result, these m ods introduce a pressure-dependent consistency error which can potentially pollute t computed velocity. These methods are not robust in the sense that a contribution fro the right-hand side, which influences only the pressure in the continuous equations, pacts both velocity and pressure in the discrete equations. This article reviews the the and practical implications of relaxing the divergence constraint. Several approaches f improving the discrete mass balance or even for computing divergence-free solutions be discussed: grad-div stabilization, higher order mixed methods derived on the basis an exact de Rham complex, //(div)-conforming finite elements, and mixed methods w an appropriate reconstruction of the test functions. Numerical examples illustrate bot the potential effects of using nonrobust discretizations and the improvements obtained utilizing pressure-robust discretizations.},
langid = {english},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/QQBMI49B/John et al. - 2017 - On the Divergence Constraint in Mixed Finite Eleme.pdf}
}
@incollection{keyComparisonFiniteElementFiniteDifference1973,
title = {Comparison of {{Finite-Element}} and {{Finite-Difference Methods}}},
booktitle = {Numerical and {{Computer Methods}} in {{Structural Mechanics}}},
author = {Key, Samuel W. and Krieg, Raymond D.},
year = {1973},
pages = {337--352},
publisher = {{Elsevier}},
doi = {10.1016/B978-0-12-253250-4.50019-1},
url = {https://linkinghub.elsevier.com/retrieve/pii/B9780122532504500191},
urldate = {2024-02-13},
isbn = {978-0-12-253250-4},
langid = {english}
}
@article{kirbyCGHDGComparative2012,
title = {To {{CG}} or to {{HDG}}: {{A Comparative Study}}},
shorttitle = {To {{CG}} or to {{HDG}}},
author = {Kirby, Robert M. and Sherwin, Spencer J. and Cockburn, Bernardo},
year = {2012},
month = apr,
journal = {Journal of Scientific Computing},
volume = {51},
number = {1},
pages = {183--212},
issn = {1573-7691},
doi = {10.1007/s10915-011-9501-7},
url = {https://doi.org/10.1007/s10915-011-9501-7},
urldate = {2023-03-30},
abstract = {Hybridization through the border of the elements (hybrid unknowns) combined with a Schur complement procedure (often called static condensation in the context of continuous Galerkin linear elasticity computations) has in various forms been advocated in the mathematical and engineering literature as a means of accomplishing domain decomposition, of obtaining increased accuracy and convergence results, and of algorithm optimization. Recent work on the hybridization of mixed methods, and in particular of the discontinuous Galerkin (DG) method, holds the promise of capitalizing on the three aforementioned properties; in particular, of generating a numerical scheme that is discontinuous in both the primary and flux variables, is locally conservative, and is computationally competitive with traditional continuous Galerkin (CG) approaches. In this paper we present both implementation and optimization strategies for the Hybridizable Discontinuous Galerkin (HDG) method applied to two dimensional elliptic operators. We implement our HDG approach within a spectral/hp element framework so that comparisons can be done between HDG and the traditional CG approach.},
langid = {english},
keywords = {Discontinuous Galerkin method,Domain decomposition,High-order finite elements,Hybridization,Spectral/hp elements},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/4EK6M49J/Kirby et al. - 2012 - To CG or to HDG A Comparative Study.pdf}
}
@misc{kolevModularFiniteElement2010,
title = {Modular {{Finite Element Methods}} ({{MFEM}})},
author = {Kolev, Tzanio and Dobrev, Veselin},
year = {2010},
doi = {10.11578/DC.20171025.1248},
url = {https://www.osti.gov/doecode/biblio/35738},
urldate = {2024-02-01},
abstract = {MFEM is a modular parallel C++ library for finite element methods. Its goal is to enable high-performance scalable finite element discretization research and application development on a wide variety of platforms, ranging from laptops to supercomputers.},
howpublished = {Lawrence Livermore National Laboratory (LLNL), Livermore, CA (United States)},
langid = {english}
}
@article{koppSpacetimeHpfiniteElements2022,
title = {Space-Time Hp-Finite Elements for Heat Evolution in Laser Powder Bed Fusion Additive Manufacturing},
author = {Kopp, Philipp and Calo, Victor and Rank, Ernst and Kollmannsberger, Stefan},
year = {2022},
month = sep,
journal = {Engineering with Computers},
issn = {1435-5663},
doi = {10.1007/s00366-022-01719-1},
url = {https://doi.org/10.1007/s00366-022-01719-1},
urldate = {2022-10-07},
abstract = {The direct numerical simulation of metal additive manufacturing processes such as laser powder bed fusion is challenging due to the vast differences in spatial and temporal scales. Classical approaches based on locally refined finite elements combined with time-stepping schemes can only address the spatial multi-scale nature and provide only limited scaling potential for massively parallel computations. We address these shortcomings in a space-time Galerkin framework where the finite element interpolation also includes the temporal dimension. In this setting, we construct four-dimensional meshes that are locally refined towards the laser spot and allow for varying temporal accuracy depending on the position in space. By splitting the mesh into conforming time-slabs, we recover a stepwise solution to solve the space-time problem locally in time at this slab; additionally, we can choose time-slab sizes significantly larger than classical time-stepping schemes. As a result, we believe this setting to be well suited for large-scale parallelization. In our work, we use a continuous Galerkin{\textendash}Petrov formulation of the nonlinear heat equation with an apparent heat capacity model to account for the phase change. We validate our approach by computing the AMB2018-02 benchmark, where we obtain an excellent agreement with the measured melt pool shape. Using the same setup, we demonstrate the performance potential of our approach by hatching a square area with a laser path length of about one meter.},
langid = {english},
keywords = {Laser powder bed fusion,Local hp-refinement,Metal additive manufacturing,Parallel in time,Space-time finite elements},
annotation = {2 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/56WJ6K57/Kopp et al. - 2022 - Space-time hp-finite elements for heat evolution i.pdf}
}
@article{kronbichlerFastMassivelyParallel2018,
title = {A Fast Massively Parallel Two-Phase Flow Solver for Microfluidic Chip Simulation},
author = {Kronbichler, Martin and Diagne, Ababacar and Holmgren, Hanna},
year = {2018},
journal = {The International Journal of High Performance Computing Applications},
volume = {32},
number = {2},
pages = {266--287},
publisher = {{SAGE Publications Sage UK: London, England}},
doi = {10.1177/1094342016671790},
annotation = {20 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/CH9LGBXC/Kronbichler et al. - 2018 - A fast massively parallel two-phase flow solver fo.pdf}
}
@article{kronbichlerPerformanceComparisonContinuous2018,
title = {A Performance Comparison of Continuous and Discontinuous {{Galerkin}} Methods with Fast Multigrid Solvers},
author = {Kronbichler, Martin and Wall, Wolfgang A.},
year = {2018},
month = jan,
journal = {SIAM Journal on Scientific Computing},
volume = {40},
number = {5},
eprint = {1611.03029},
pages = {A3423-A3448},
issn = {1064-8275, 1095-7197},
doi = {10.1137/16M110455X},
url = {http://arxiv.org/abs/1611.03029},
urldate = {2021-03-25},
abstract = {This study presents a fair performance comparison of the continuous finite element method, the symmetric interior penalty discontinuous Galerkin method, and the hybridized discontinuous Galerkin method. Modern implementations of high-order methods with state-of-the-art multigrid solvers for the Poisson equation are considered, including fast matrix-free implementations with sum factorization on quadrilateral and hexahedral elements. For the hybridized discontinuous Galerkin method, a multigrid approach that combines a grid transfer from the trace space to the space of linear finite elements with algebraic multigrid on further levels is developed. Despite similar solver complexity of the matrix-based HDG solver and matrix-free geometric multigrid schemes with continuous and discontinuous Galerkin finite elements, the latter offer up to order of magnitude faster time to solution, even after including the superconvergence effects. This difference is because of vastly better performance of matrix-free operator evaluation as compared to sparse matrix-vector products. A roofline performance model confirms the advantage of the matrix-free implementation.},
archiveprefix = {arxiv},
keywords = {G.1.8,Mathematics - Numerical Analysis},
annotation = {50 citations (Crossref) [2023-03-27]},
file = {/Users/zimbropa/Documents/Literaturverwaltung/storage/WYTFHA6P/Kronbichler und Wall - 2018 - A performance comparison of continuous and discont.pdf;/Users/zimbropa/Documents/Literaturverwaltung/storage/KF8U32XX/1611.html}
}
@article{lagrange-0,
title = {Periodic Table of the Finite Elements},
author = {Arnold, Douglas N. and Logg, Anders},
year = {2014},
journal = {SIAM News},
volume = {47}
}
@article{lagrange-1,
title = {A Systematic Construction of Finite Element Commuting Exact Sequences},
author = {Cockburn, Bernardo and Fu, Guosheng},
year = {2017},
journal = {SIAM journal on numerical analysis},
volume = {55},
pages = {1650--1688},
doi = {10.1137/16M1073352}
}
@article{landauTheoryPhaseTransitions1937,
title = {On the {{Theory}} of {{Phase Transitions}}},
author = {Landau, Lev},
year = {1937},
journal = {Zh. Eksp. Teor. Fiz.},
volume = {7},
pages = {19--32},