-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicBoundaryConditionsInterface_8hpp_source.html
More file actions
930 lines (928 loc) · 202 KB
/
Copy pathBasicBoundaryConditionsInterface_8hpp_source.html
File metadata and controls
930 lines (928 loc) · 202 KB
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
<!-- HTML header for doxygen 1.8.13-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>MoFEM: users_modules/basic_finite_elements/src/BasicBoundaryConditionsInterface.hpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script>
<script type="text/javascript" async="async" src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js"></script>
<script>
window.MathJax = {
tex: {
tags: 'all', // Enables equation numbering
},
loader: {
load: ['[tex]/boldsymbol']
}
};
</script>
<script type="text/javascript " src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
<link href="customdoxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_style.css" rel="stylesheet" type="text/css"/>
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="shortcut icon" type="image/png" href="favicon-32x32.png"/>
<link rel="Bookmark" type="image/png" href="favicon-32x32.png"/>
<link rel="manifest" href="manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div style="background-color:#011A40" id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 30px;">
<td id="projectlogo"><img alt="Logo" src="MoFEMLogo.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<td style="padding-left: 0.5em;" bgcolor="#011A40"
<div id="projectbrief"><font color="#FFFFFF">v0.15.0</font></div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!--Google analytics tags-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65236130-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2J9RE2P3H5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2J9RE2P3H5');
</script><!-- Generated by Doxygen 1.9.8 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search/",'.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(document).ready(function() { init_codefold(0); });
/* @license-end */
</script>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_4fdd23f46654bee42f0ef7ae5010b806.html">users_modules</a></li><li class="navelem"><a class="el" href="dir_0fb3e37c83410fc916ba3837ad3905e3.html">basic_finite_elements</a></li><li class="navelem"><a class="el" href="dir_0ca3dd9647a8dd6efd8896ba0551cf14.html">src</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle"><div class="title">BasicBoundaryConditionsInterface.hpp</div></div>
</div><!--header-->
<div class="contents">
<a href="BasicBoundaryConditionsInterface_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="comment">/** \file BasicBoundaryConditionsInterface.hpp</span></div>
<div class="line"><a id="l00002" name="l00002"></a><span class="lineno"> 2</span><span class="comment"> \brief Header file for BasicBoundaryConditionsInterface element implementation</span></div>
<div class="line"><a id="l00003" name="l00003"></a><span class="lineno"> 3</span><span class="comment">*/</span></div>
<div class="line"><a id="l00004" name="l00004"></a><span class="lineno"> 4</span> </div>
<div class="line"><a id="l00005" name="l00005"></a><span class="lineno"> 5</span> </div>
<div class="line"><a id="l00006" name="l00006"></a><span class="lineno"> 6</span> </div>
<div class="line"><a id="l00007" name="l00007"></a><span class="lineno"> 7</span><span class="comment">// TODO: This is still work in progress !!!</span></div>
<div class="line"><a id="l00008" name="l00008"></a><span class="lineno"> 8</span> </div>
<div class="line"><a id="l00009" name="l00009"></a><span class="lineno"> 9</span><span class="comment">// FIX and ROTATE Boundary conditions</span></div>
<div class="line"><a id="l00010" name="l00010"></a><span class="lineno"> 10</span><span class="comment">// include SurfacePressureComplexForLazy for following load</span></div>
<div class="line"><a id="l00011" name="l00011"></a><span class="lineno"> 11</span> </div>
<div class="line"><a id="l00012" name="l00012"></a><span class="lineno"> 12</span> </div>
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"> 13</span><span class="preprocessor">#ifndef __BASICBOUNDARYCONDIONSINTERFACE_HPP__</span></div>
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span><span class="preprocessor">#define __BASICBOUNDARYCONDIONSINTERFACE_HPP__</span></div>
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"> 15</span> </div>
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span><span class="comment"></span> </div>
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"> 17</span><span class="comment">/** \brief Set of functions declaring elements and setting operators</span></div>
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span><span class="comment"> * for basic boundary conditions interface</span></div>
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span><span class="comment"> */</span></div>
<div class="foldopen" id="foldopen00020" data-start="{" data-end="};">
<div class="line"><a id="l00020" name="l00020"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html"> 20</a></span><span class="keyword">struct </span><a class="code hl_struct" href="structBasicBoundaryConditionsInterface.html">BasicBoundaryConditionsInterface</a> : <span class="keyword">public</span> <a class="code hl_struct" href="structGenericElementInterface.html">GenericElementInterface</a> {</div>
<div class="line"><a id="l00021" name="l00021"></a><span class="lineno"> 21</span> </div>
<div class="line"><a id="l00022" name="l00022"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ae4e434e8ffaaa86df3201d20e68f9c6e"> 22</a></span> <span class="keyword">using </span><a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#ae4e434e8ffaaa86df3201d20e68f9c6e">DomainEle</a> = VolumeElementForcesAndSourcesCore;</div>
<div class="line"><a id="l00023" name="l00023"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a5f6f880c4a5a7332a2ed26bc8bf15eba"> 23</a></span> <span class="keyword">using </span><a class="code hl_class" href="classDomainEleOp.html">DomainEleOp</a> = DomainEle::UserDataOperator;</div>
<div class="line"><a id="l00024" name="l00024"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#af6d62796cda72da4aa37da35e109ff6c"> 24</a></span> <span class="keyword">using </span><a class="code hl_class" href="classFaceElementForcesAndSourcesCore.html">BoundaryEle</a> = <a class="code hl_class" href="classFaceElementForcesAndSourcesCore.html">FaceElementForcesAndSourcesCore</a>;</div>
<div class="line"><a id="l00025" name="l00025"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a6a2445c16744bbc501ccf1376a603872"> 25</a></span> <span class="keyword">using </span><a class="code hl_class" href="classBoundaryEleOp.html">BoundaryEleOp</a> = BoundaryEle::UserDataOperator;</div>
<div class="line"><a id="l00026" name="l00026"></a><span class="lineno"> 26</span> </div>
<div class="line"><a id="l00027" name="l00027"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a4ce66b1703c8f6ef4fa9e68bc6d14bee"> 27</a></span> <span class="keyword">using </span><a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#a4ce66b1703c8f6ef4fa9e68bc6d14bee">OpBodyForce</a> = FormsIntegrators<DomainEleOp>::Assembly<</div>
<div class="line"><a id="l00028" name="l00028"></a><span class="lineno"> 28</span> PETSC><a class="code hl_class" href="classLinearForm.html">::LinearForm<GAUSS>::OpSource</a><1, 3>;</div>
<div class="line"><a id="l00029" name="l00029"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a9a018b3f961b6236bb2f28b69a9b4c07"> 29</a></span> <span class="keyword">using </span><a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#a9a018b3f961b6236bb2f28b69a9b4c07">DomainNaturalBC</a> =</div>
<div class="line"><a id="l00030" name="l00030"></a><span class="lineno"> 30</span> NaturalBC<DomainEleOp>::Assembly<PETSC><a class="code hl_class" href="classLinearForm.html">::LinearForm<GAUSS></a>;</div>
<div class="line"><a id="l00031" name="l00031"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ad898c8ff03a92c28420a5e81b3810841"> 31</a></span> <span class="keyword">using </span><a class="code hl_struct" href="structMoFEM_1_1OpFluxRhsImpl.html">OpBodyForceVector</a> =</div>
<div class="line"><a id="l00032" name="l00032"></a><span class="lineno"> 32</span> <a class="code hl_struct" href="structMoFEM_1_1OpFluxRhsImpl.html">DomainNaturalBC::OpFlux<NaturalMeshsetTypeVectorScaling<BLOCKSET></a>, 1, 3>;</div>
<div class="line"><a id="l00033" name="l00033"></a><span class="lineno"> 33</span> </div>
<div class="line"><a id="l00034" name="l00034"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#aa29171a765a61da5835672ce79fc5d25"> 34</a></span> <span class="keyword">using </span><a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#aa29171a765a61da5835672ce79fc5d25">OpMass</a> = FormsIntegrators<DomainEleOp>::Assembly<PETSC><a class="code hl_class" href="classBiLinearForm.html">::BiLinearForm</a><</div>
<div class="line"><a id="l00035" name="l00035"></a><span class="lineno"> 35</span> GAUSS><a class="code hl_typedef" href="seepage_8cpp.html#a2993c54e90f2427566f6d9dc8e5399a9">::OpMass<1, 3></a>;</div>
<div class="line"><a id="l00036" name="l00036"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ab651975f24f1b3bdfd75e9ee192410a2"> 36</a></span> <span class="keyword">using </span><a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#ab651975f24f1b3bdfd75e9ee192410a2">OpInertiaForce</a> = FormsIntegrators<DomainEleOp>::Assembly<</div>
<div class="line"><a id="l00037" name="l00037"></a><span class="lineno"> 37</span> PETSC><a class="code hl_class" href="classLinearForm.html">::LinearForm<GAUSS>::OpBaseTimesVector</a><1, 3, 1>;</div>
<div class="line"><a id="l00038" name="l00038"></a><span class="lineno"> 38</span> </div>
<div class="foldopen" id="foldopen00039" data-start="{" data-end="};">
<div class="line"><a id="l00039" name="l00039"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html"> 39</a></span> <span class="keyword">struct </span><a class="code hl_struct" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html">BasicBCVectorConst</a> : <span class="keyword">public</span> <a class="code hl_struct" href="structMoFEM_1_1TimeScaleVector.html">MoFEM::TimeScaleVector3</a> {</div>
<div class="foldopen" id="foldopen00040" data-start="{" data-end="}">
<div class="line"><a id="l00040" name="l00040"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af38a7892c0854e2db785cc2899eda73e"> 40</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af38a7892c0854e2db785cc2899eda73e">BasicBCVectorConst</a>(<span class="keywordtype">double</span> <a class="code hl_variable" href="plastic_8cpp.html#a80d402d10e8341004c0caf10133b80ab">scale</a>, <a class="code hl_class" href="classFTensor_1_1Tensor1.html">FTensor::Tensor1<double, 3></a> t_vec)</div>
<div class="line"><a id="l00041" name="l00041"></a><span class="lineno"> 41</span> : <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af380c3e759a9df4b85fe64af86f14ae1">tForce</a>(t_vec), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a742e915357471c28bb8126c2a8c5b586">sCale</a>(<a class="code hl_variable" href="plastic_8cpp.html#a80d402d10e8341004c0caf10133b80ab">scale</a>) {}</div>
</div>
<div class="line"><a id="l00042" name="l00042"></a><span class="lineno"> 42</span> </div>
<div class="foldopen" id="foldopen00043" data-start="{" data-end="}">
<div class="line"><a id="l00043" name="l00043"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a6e608d5f6f9a3ade7491842c46bd5bc7"> 43</a></span> <a class="code hl_class" href="classFTensor_1_1Tensor1.html">FTensor::Tensor1<double, 3></a> <a class="code hl_function" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a6e608d5f6f9a3ade7491842c46bd5bc7">getVector</a>(<span class="keyword">const</span> <span class="keywordtype">double</span> time) {</div>
<div class="line"><a id="l00044" name="l00044"></a><span class="lineno"> 44</span> <a class="code hl_class" href="classFTensor_1_1Index.html">FTensor::Index</a><<span class="charliteral">'i'</span>, 3> <a class="code hl_variable" href="hcurl__divergence__operator__2d_8cpp.html#a4c0436605284b64f6b0b5482594d86bc">i</a>;</div>
<div class="line"><a id="l00045" name="l00045"></a><span class="lineno"> 45</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af380c3e759a9df4b85fe64af86f14ae1">tForce</a>(<a class="code hl_variable" href="hcurl__divergence__operator__2d_8cpp.html#a4c0436605284b64f6b0b5482594d86bc">i</a>) *= <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a742e915357471c28bb8126c2a8c5b586">sCale</a>;</div>
<div class="line"><a id="l00046" name="l00046"></a><span class="lineno"> 46</span> <span class="keywordflow">return</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af380c3e759a9df4b85fe64af86f14ae1">tForce</a>;</div>
<div class="line"><a id="l00047" name="l00047"></a><span class="lineno"> 47</span> }</div>
</div>
<div class="line"><a id="l00048" name="l00048"></a><span class="lineno"> 48</span> </div>
<div class="line"><a id="l00049" name="l00049"></a><span class="lineno"> 49</span> <span class="keyword">private</span>:</div>
<div class="line"><a id="l00050" name="l00050"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a742e915357471c28bb8126c2a8c5b586"> 50</a></span> <span class="keywordtype">double</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a742e915357471c28bb8126c2a8c5b586">sCale</a>;</div>
<div class="line"><a id="l00051" name="l00051"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af380c3e759a9df4b85fe64af86f14ae1"> 51</a></span> <a class="code hl_class" href="classFTensor_1_1Tensor1.html">FTensor::Tensor1<double, 3></a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af380c3e759a9df4b85fe64af86f14ae1">tForce</a>;</div>
<div class="line"><a id="l00052" name="l00052"></a><span class="lineno"> 52</span> };</div>
</div>
<div class="line"><a id="l00053" name="l00053"></a><span class="lineno"> 53</span> </div>
<div class="foldopen" id="foldopen00054" data-start="{" data-end="};">
<div class="line"><a id="l00054" name="l00054"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html"> 54</a></span> <span class="keyword">struct </span><a class="code hl_struct" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html">BasicBCVectorScale</a> : <span class="keyword">public</span> <a class="code hl_struct" href="structMoFEM_1_1TimeScaleVector.html">MoFEM::TimeScaleVector3</a> {</div>
<div class="line"><a id="l00055" name="l00055"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#aba389d6eab47905f7d711d23f410a534"> 55</a></span> <span class="keywordtype">double</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#aba389d6eab47905f7d711d23f410a534">sCale</a>;</div>
<div class="foldopen" id="foldopen00056" data-start="{" data-end="}">
<div class="line"><a id="l00056" name="l00056"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#a05c613579e49b80bc8001682efbaf4c0"> 56</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#a05c613579e49b80bc8001682efbaf4c0">BasicBCVectorScale</a>(<span class="keywordtype">double</span> <a class="code hl_variable" href="plastic_8cpp.html#a80d402d10e8341004c0caf10133b80ab">scale</a>, std::string file_name)</div>
<div class="line"><a id="l00057" name="l00057"></a><span class="lineno"> 57</span> : <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#aba389d6eab47905f7d711d23f410a534">sCale</a>(<a class="code hl_variable" href="plastic_8cpp.html#a80d402d10e8341004c0caf10133b80ab">scale</a>), TimeScaleVector3(file_name, false) {}</div>
</div>
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"> 58</span> </div>
<div class="foldopen" id="foldopen00059" data-start="{" data-end="}">
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#ae5ceae1f17ab535f2ba4b1cd9e038ff1"> 59</a></span> <a class="code hl_class" href="classFTensor_1_1Tensor1.html">FTensor::Tensor1<double, 3></a> <a class="code hl_function" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#ae5ceae1f17ab535f2ba4b1cd9e038ff1">getVector</a>(<span class="keyword">const</span> <span class="keywordtype">double</span> time) {</div>
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"> 60</span> <a class="code hl_class" href="classFTensor_1_1Tensor1.html">FTensor::Tensor1<double, 3></a> vec;</div>
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"> 61</span> <span class="keyword">auto</span> vec2 = <a class="code hl_function" href="structMoFEM_1_1TimeScaleVector.html#ad29a8985a586cc9e31ec2bf168b93ed1">MoFEM::TimeScaleVector3::getVector</a>(time);</div>
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"> 62</span> <a class="code hl_class" href="classFTensor_1_1Index.html">FTensor::Index</a><<span class="charliteral">'i'</span>, 3> <a class="code hl_variable" href="hcurl__divergence__operator__2d_8cpp.html#a4c0436605284b64f6b0b5482594d86bc">i</a>;</div>
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"> 63</span> vec(<a class="code hl_variable" href="hcurl__divergence__operator__2d_8cpp.html#a4c0436605284b64f6b0b5482594d86bc">i</a>) = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#aba389d6eab47905f7d711d23f410a534">sCale</a> * vec2(<a class="code hl_variable" href="hcurl__divergence__operator__2d_8cpp.html#a4c0436605284b64f6b0b5482594d86bc">i</a>);</div>
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"> 64</span> <span class="keywordflow">return</span> vec;</div>
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"> 65</span> }</div>
</div>
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"> 66</span> };</div>
</div>
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span> </div>
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b"> 68</a></span> <a class="code hl_struct" href="structMoFEM_1_1DeprecatedCoreInterface.html">MoFEM::Interface</a> &<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>;</div>
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528"> 69</a></span> SmartPetscObj<DM> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>;</div>
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span> </div>
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a05de7d90abd5a1d361dfef1f1022d9a9"> 71</a></span> <span class="keywordtype">double</span> *<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a05de7d90abd5a1d361dfef1f1022d9a9">snesLambdaLoadFactorPtr</a>;</div>
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"> 72</span> </div>
<div class="foldopen" id="foldopen00073" data-start="{" data-end="};">
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html"> 73</a></span> <span class="keyword">struct </span><a class="code hl_struct" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html">LoadScale</a> : <span class="keyword">public</span> <a class="code hl_struct" href="structMethodForForceScaling.html">MethodForForceScaling</a> {</div>
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#ab8ff671b8d70840b0c00a07e99b93c07"> 74</a></span> <span class="keywordtype">double</span> *<a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#ab8ff671b8d70840b0c00a07e99b93c07">lAmbda</a>;</div>
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#a9abbab01ddbdbc7c679dd779afce13eb"> 75</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#a9abbab01ddbdbc7c679dd779afce13eb">LoadScale</a>(<span class="keywordtype">double</span> *my_lambda) : <a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#ab8ff671b8d70840b0c00a07e99b93c07">lAmbda</a>(my_lambda){};</div>
<div class="foldopen" id="foldopen00076" data-start="{" data-end="}">
<div class="line"><a id="l00076" name="l00076"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#a1287c203ad541d1bce00afddb08594a6"> 76</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#a1287c203ad541d1bce00afddb08594a6">scaleNf</a>(<span class="keyword">const</span> <a class="code hl_class" href="classFEMethod.html">FEMethod</a> *fe, VectorDouble &nf) {</div>
<div class="line"><a id="l00077" name="l00077"></a><span class="lineno"> 77</span> <a class="code hl_define" href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a>;</div>
<div class="line"><a id="l00078" name="l00078"></a><span class="lineno"> 78</span> nf *= *<a class="code hl_variable" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#ab8ff671b8d70840b0c00a07e99b93c07">lAmbda</a>;</div>
<div class="line"><a id="l00079" name="l00079"></a><span class="lineno"> 79</span> <a class="code hl_define" href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a>(0);</div>
<div class="line"><a id="l00080" name="l00080"></a><span class="lineno"> 80</span> }</div>
</div>
<div class="line"><a id="l00081" name="l00081"></a><span class="lineno"> 81</span> };</div>
</div>
<div class="line"><a id="l00082" name="l00082"></a><span class="lineno"> 82</span> </div>
<div class="line"><a id="l00083" name="l00083"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a7d838029ed05594a447a84e16fc15949"> 83</a></span> <span class="keywordtype">bool</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7d838029ed05594a447a84e16fc15949">isDisplacementField</a>;</div>
<div class="line"><a id="l00084" name="l00084"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a5cee7fb102326dfe6fac290344511f39"> 84</a></span> <span class="keywordtype">bool</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5cee7fb102326dfe6fac290344511f39">isQuasiStatic</a>;</div>
<div class="line"><a id="l00085" name="l00085"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c"> 85</a></span> <span class="keywordtype">bool</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>;</div>
<div class="line"><a id="l00086" name="l00086"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a779f41c506f1017486f92703e53651fc"> 86</a></span> <span class="keywordtype">bool</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a779f41c506f1017486f92703e53651fc">isLinear</a>;</div>
<div class="line"><a id="l00087" name="l00087"></a><span class="lineno"> 87</span> </div>
<div class="line"><a id="l00088" name="l00088"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a35394b542c331861cd374925c04cbef8"> 88</a></span> BitRefLevel <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a35394b542c331861cd374925c04cbef8">bIt</a>;</div>
<div class="line"><a id="l00089" name="l00089"></a><span class="lineno"> 89</span> </div>
<div class="line"><a id="l00090" name="l00090"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce"> 90</a></span> <span class="keywordtype">string</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>;</div>
<div class="line"><a id="l00091" name="l00091"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad"> 91</a></span> <span class="keywordtype">string</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>;</div>
<div class="line"><a id="l00092" name="l00092"></a><span class="lineno"> 92</span> </div>
<div class="line"><a id="l00093" name="l00093"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a97cd171ab7d75c8920b45458aba303d5"> 93</a></span> boost::ptr_map<std::string, NeumannForcesSurface> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a97cd171ab7d75c8920b45458aba303d5">neumann_forces</a>;</div>
<div class="line"><a id="l00094" name="l00094"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a84899ab75b898c0e98d04e2d1da0f42e"> 94</a></span> boost::ptr_map<std::string, NodalForce> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a84899ab75b898c0e98d04e2d1da0f42e">nodal_forces</a>;</div>
<div class="line"><a id="l00095" name="l00095"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a7a605d84b56aa6bb4c8f2d4ec116fc7b"> 95</a></span> boost::ptr_map<std::string, EdgeForce> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7a605d84b56aa6bb4c8f2d4ec116fc7b">edge_forces</a>;</div>
<div class="line"><a id="l00096" name="l00096"></a><span class="lineno"> 96</span> </div>
<div class="line"><a id="l00097" name="l00097"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995"> 97</a></span> boost::shared_ptr<FluidPressure> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">fluidPressureElementPtr</a>;</div>
<div class="line"><a id="l00098" name="l00098"></a><span class="lineno"> 98</span> </div>
<div class="line"><a id="l00099" name="l00099"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84"> 99</a></span> boost::shared_ptr<FaceElementForcesAndSourcesCore> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84">springRhsPtr</a>;</div>
<div class="line"><a id="l00100" name="l00100"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf"> 100</a></span> boost::shared_ptr<FaceElementForcesAndSourcesCore> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf">springLhsPtr</a>;</div>
<div class="line"><a id="l00101" name="l00101"></a><span class="lineno"> 101</span> </div>
<div class="line"><a id="l00102" name="l00102"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d"> 102</a></span> boost::shared_ptr<VolumeElementForcesAndSourcesCore> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">bodyForceRhsPtr</a>;</div>
<div class="line"><a id="l00103" name="l00103"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec"> 103</a></span> boost::shared_ptr<VolumeElementForcesAndSourcesCore> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a>;</div>
<div class="line"><a id="l00104" name="l00104"></a><span class="lineno"> 104</span> <span class="comment">// boost::shared_ptr<FEMethod> dirichletBcPtr;</span></div>
<div class="line"><a id="l00105" name="l00105"></a><span class="lineno"> 105</span> </div>
<div class="line"><a id="l00106" name="l00106"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1"> 106</a></span> boost::shared_ptr<DirichletDisplacementBc> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>;</div>
<div class="line"><a id="l00107" name="l00107"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8"> 107</a></span> boost::shared_ptr<KelvinVoigtDamper> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>;</div>
<div class="line"><a id="l00108" name="l00108"></a><span class="lineno"> 108</span> </div>
<div class="line"><a id="l00109" name="l00109"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801"> 109</a></span> <span class="keyword">const</span> <span class="keywordtype">string</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>;</div>
<div class="line"><a id="l00110" name="l00110"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675"> 110</a></span> <span class="keyword">const</span> <span class="keywordtype">string</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">domainElementName</a>;</div>
<div class="line"><a id="l00111" name="l00111"></a><span class="lineno"> 111</span> </div>
<div class="line"><a id="l00112" name="l00112"></a><span class="lineno"> 112</span> <span class="comment">// boost::shared_ptr<PostProcVolumeOnRefinedMesh> postProc;</span></div>
<div class="line"><a id="l00113" name="l00113"></a><span class="lineno"> 113</span> <span class="comment">// boost::shared_ptr<PostProcFaceOnRefinedMesh> postProcSkin;</span></div>
<div class="line"><a id="l00114" name="l00114"></a><span class="lineno"> 114</span> </div>
<div class="foldopen" id="foldopen00115" data-start="{" data-end="}">
<div class="line"><a id="l00115" name="l00115"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a0485fb91eed71fd1b42f945d9d305237"> 115</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a0485fb91eed71fd1b42f945d9d305237">BasicBoundaryConditionsInterface</a>(</div>
<div class="line"><a id="l00116" name="l00116"></a><span class="lineno"> 116</span> <a class="code hl_struct" href="structMoFEM_1_1DeprecatedCoreInterface.html">MoFEM::Interface</a> &m_field, <span class="keywordtype">string</span> postion_field,</div>
<div class="line"><a id="l00117" name="l00117"></a><span class="lineno"> 117</span> <span class="keywordtype">string</span> mesh_pos_field_name = <span class="stringliteral">"MESH_NODE_POSITIONS"</span>,</div>
<div class="line"><a id="l00118" name="l00118"></a><span class="lineno"> 118</span> <span class="keywordtype">string</span> problem_name = <span class="stringliteral">"ELASTIC"</span>,</div>
<div class="line"><a id="l00119" name="l00119"></a><span class="lineno"> 119</span> <span class="keywordtype">string</span> domain_element_name = <span class="stringliteral">"ELASTIC_FE"</span>,</div>
<div class="line"><a id="l00120" name="l00120"></a><span class="lineno"> 120</span> <span class="keywordtype">bool</span> is_displacement_field = <span class="keyword">true</span>, <span class="keywordtype">bool</span> <a class="code hl_variable" href="plastic_8cpp.html#a4a5fcbe78f3285ba525f15c780eb6cd5">is_quasi_static</a> = <span class="keyword">true</span>,</div>
<div class="line"><a id="l00121" name="l00121"></a><span class="lineno"> 121</span> <span class="keywordtype">double</span> *snes_load_factor = <span class="keyword">nullptr</span>, <span class="keywordtype">bool</span> is_partitioned = <span class="keyword">true</span>)</div>
<div class="line"><a id="l00122" name="l00122"></a><span class="lineno"> 122</span> : <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>(m_field), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>(postion_field),</div>
<div class="line"><a id="l00123" name="l00123"></a><span class="lineno"> 123</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>(mesh_pos_field_name), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>(problem_name),</div>
<div class="line"><a id="l00124" name="l00124"></a><span class="lineno"> 124</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">domainElementName</a>(domain_element_name),</div>
<div class="line"><a id="l00125" name="l00125"></a><span class="lineno"> 125</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7d838029ed05594a447a84e16fc15949">isDisplacementField</a>(is_displacement_field),</div>
<div class="line"><a id="l00126" name="l00126"></a><span class="lineno"> 126</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5cee7fb102326dfe6fac290344511f39">isQuasiStatic</a>(<a class="code hl_variable" href="plastic_8cpp.html#a4a5fcbe78f3285ba525f15c780eb6cd5">is_quasi_static</a>),</div>
<div class="line"><a id="l00127" name="l00127"></a><span class="lineno"> 127</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a05de7d90abd5a1d361dfef1f1022d9a9">snesLambdaLoadFactorPtr</a>(snes_load_factor),</div>
<div class="line"><a id="l00128" name="l00128"></a><span class="lineno"> 128</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>(is_partitioned), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a779f41c506f1017486f92703e53651fc">isLinear</a>(PETSC_FALSE) {}</div>
</div>
<div class="line"><a id="l00129" name="l00129"></a><span class="lineno"> 129</span> </div>
<div class="line"><a id="l00130" name="l00130"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a38a117219b0a19887c5d3833d795d948"> 130</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a38a117219b0a19887c5d3833d795d948">~BasicBoundaryConditionsInterface</a>() {}</div>
<div class="line"><a id="l00131" name="l00131"></a><span class="lineno"> 131</span> </div>
<div class="foldopen" id="foldopen00132" data-start="{" data-end="}">
<div class="line"><a id="l00132" name="l00132"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a142cd8bd81282b06af4b6184112c1f7c"> 132</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a142cd8bd81282b06af4b6184112c1f7c">getCommandLineParameters</a>()<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00133" name="l00133"></a><span class="lineno"> 133</span> <a class="code hl_define" href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a>;</div>
<div class="line"><a id="l00134" name="l00134"></a><span class="lineno"> 134</span> </div>
<div class="line"><a id="l00135" name="l00135"></a><span class="lineno"> 135</span> PetscBool quasi_static = PETSC_FALSE;</div>
<div class="line"><a id="l00136" name="l00136"></a><span class="lineno"> 136</span> PetscBool is_linear = PETSC_FALSE;</div>
<div class="line"><a id="l00137" name="l00137"></a><span class="lineno"> 137</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> PetscOptionsGetBool(PETSC_NULLPTR, <span class="stringliteral">"-is_quasi_static"</span>, &quasi_static,</div>
<div class="line"><a id="l00138" name="l00138"></a><span class="lineno"> 138</span> PETSC_NULLPTR);</div>
<div class="line"><a id="l00139" name="l00139"></a><span class="lineno"> 139</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> PetscOptionsGetBool(PETSC_NULLPTR, <span class="stringliteral">"-is_linear"</span>, &is_linear,</div>
<div class="line"><a id="l00140" name="l00140"></a><span class="lineno"> 140</span> PETSC_NULLPTR);</div>
<div class="line"><a id="l00141" name="l00141"></a><span class="lineno"> 141</span> </div>
<div class="line"><a id="l00142" name="l00142"></a><span class="lineno"> 142</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5cee7fb102326dfe6fac290344511f39">isQuasiStatic</a> = quasi_static;</div>
<div class="line"><a id="l00143" name="l00143"></a><span class="lineno"> 143</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a779f41c506f1017486f92703e53651fc">isLinear</a> = is_linear;</div>
<div class="line"><a id="l00144" name="l00144"></a><span class="lineno"> 144</span> </div>
<div class="line"><a id="l00145" name="l00145"></a><span class="lineno"> 145</span> <a class="code hl_define" href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a>(0);</div>
<div class="line"><a id="l00146" name="l00146"></a><span class="lineno"> 146</span> };</div>
</div>
<div class="line"><a id="l00147" name="l00147"></a><span class="lineno"> 147</span> </div>
<div class="line"><a id="l00148" name="l00148"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a1c87d530007d46f334cbd17ca5f1f346"> 148</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a1c87d530007d46f334cbd17ca5f1f346">addElementFields</a>()<span class="keyword"> override </span>{ <span class="keywordflow">return</span> 0;};</div>
<div class="line"><a id="l00149" name="l00149"></a><span class="lineno"> 149</span> </div>
<div class="foldopen" id="foldopen00150" data-start="{" data-end="}">
<div class="line"><a id="l00150" name="l00150"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a85368a8068b6a56e5f2c7fe8ae173d6f"> 150</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a85368a8068b6a56e5f2c7fe8ae173d6f">createElements</a>()<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00151" name="l00151"></a><span class="lineno"> 151</span> <a class="code hl_define" href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a>;</div>
<div class="line"><a id="l00152" name="l00152"></a><span class="lineno"> 152</span> </div>
<div class="line"><a id="l00153" name="l00153"></a><span class="lineno"> 153</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaSpringBC.html#a910c25acc8c3975877acdf922e94bbea">MetaSpringBC::addSpringElements</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>,</div>
<div class="line"><a id="l00154" name="l00154"></a><span class="lineno"> 154</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>);</div>
<div class="line"><a id="l00155" name="l00155"></a><span class="lineno"> 155</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaNeumannForces.html#ace9c5266987cd42a1d2350e4962e6f1b">MetaNeumannForces::addNeumannBCElements</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00156" name="l00156"></a><span class="lineno"> 156</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaNodalForces.html#a8e0b96853208e8320b7268f96f4fd8ee">MetaNodalForces::addElement</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00157" name="l00157"></a><span class="lineno"> 157</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaEdgeForces.html#ad4ba172a5f79e0c41430c6dcecdd95f8">MetaEdgeForces::addElement</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00158" name="l00158"></a><span class="lineno"> 158</span> </div>
<div class="line"><a id="l00159" name="l00159"></a><span class="lineno"> 159</span> <span class="keywordflow">if</span> (!<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7d838029ed05594a447a84e16fc15949">isDisplacementField</a>)</div>
<div class="line"><a id="l00160" name="l00160"></a><span class="lineno"> 160</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a> = boost::make_shared<DirichletSpatialRemoveDofsBc>(</div>
<div class="line"><a id="l00161" name="l00161"></a><span class="lineno"> 161</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>,</div>
<div class="line"><a id="l00162" name="l00162"></a><span class="lineno"> 162</span> <span class="stringliteral">"DISPLACEMENT"</span>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>);</div>
<div class="line"><a id="l00163" name="l00163"></a><span class="lineno"> 163</span> <span class="keywordflow">else</span></div>
<div class="line"><a id="l00164" name="l00164"></a><span class="lineno"> 164</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a> = boost::make_shared<DirichletDisplacementRemoveDofsBc>(</div>
<div class="line"><a id="l00165" name="l00165"></a><span class="lineno"> 165</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"DISPLACEMENT"</span>,</div>
<div class="line"><a id="l00166" name="l00166"></a><span class="lineno"> 166</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>);</div>
<div class="line"><a id="l00167" name="l00167"></a><span class="lineno"> 167</span> <span class="comment">// CHKERR dynamic_cast<DirichletDisplacementRemoveDofsBc &>(</span></div>
<div class="line"><a id="l00168" name="l00168"></a><span class="lineno"> 168</span> <span class="comment">// *dirichletBcPtr).iNitialize();</span></div>
<div class="line"><a id="l00169" name="l00169"></a><span class="lineno"> 169</span> </div>
<div class="line"><a id="l00170" name="l00170"></a><span class="lineno"> 170</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="group__mofem__fe.html#ga4a5b822f605f1a4faa668595a3f2a5ae">add_finite_element</a>(<span class="stringliteral">"DAMPER_FE"</span>, <a class="code hl_enumvalue" href="definitions_8h.html#a2c740dc34f8edf00c432912eaa5484c1a0bb920c38e835e0fbae45b0c0c029264">MF_ZERO</a>);</div>
<div class="line"><a id="l00171" name="l00171"></a><span class="lineno"> 171</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="group__mofem__fe.html#gad29d66fc5706d3b20e4acd02eac81c9d">modify_finite_element_add_field_row</a>(<span class="stringliteral">"DAMPER_FE"</span>,</div>
<div class="line"><a id="l00172" name="l00172"></a><span class="lineno"> 172</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00173" name="l00173"></a><span class="lineno"> 173</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="group__mofem__fe.html#ga8a9935d6f31d07ed365e6cc76bd041d2">modify_finite_element_add_field_col</a>(<span class="stringliteral">"DAMPER_FE"</span>,</div>
<div class="line"><a id="l00174" name="l00174"></a><span class="lineno"> 174</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00175" name="l00175"></a><span class="lineno"> 175</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="group__mofem__fe.html#gaef2eb2d85b90b55bd7c4f355e10fa498">modify_finite_element_add_field_data</a>(<span class="stringliteral">"DAMPER_FE"</span>,</div>
<div class="line"><a id="l00176" name="l00176"></a><span class="lineno"> 176</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00177" name="l00177"></a><span class="lineno"> 177</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="group__mofem__fe.html#gaef2eb2d85b90b55bd7c4f355e10fa498">modify_finite_element_add_field_data</a>(<span class="stringliteral">"DAMPER_FE"</span>,</div>
<div class="line"><a id="l00178" name="l00178"></a><span class="lineno"> 178</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>);</div>
<div class="line"><a id="l00179" name="l00179"></a><span class="lineno"> 179</span> </div>
<div class="line"><a id="l00180" name="l00180"></a><span class="lineno"> 180</span> <span class="comment">// CHKERR mField.add_finite_element(domainElementName, "FLUID_PRESSURE_FE");</span></div>
<div class="line"><a id="l00181" name="l00181"></a><span class="lineno"> 181</span> </div>
<div class="line"><a id="l00182" name="l00182"></a><span class="lineno"> 182</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">fluidPressureElementPtr</a> = boost::make_shared<FluidPressure>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>);</div>
<div class="line"><a id="l00183" name="l00183"></a><span class="lineno"> 183</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">fluidPressureElementPtr</a>->addNeumannFluidPressureBCElements(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00184" name="l00184"></a><span class="lineno"> 184</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> addHOOpsFace3D(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">fluidPressureElementPtr</a>->getLoopFe(),</div>
<div class="line"><a id="l00185" name="l00185"></a><span class="lineno"> 185</span> <span class="keyword">false</span>, <span class="keyword">false</span>);</div>
<div class="line"><a id="l00186" name="l00186"></a><span class="lineno"> 186</span> </div>
<div class="line"><a id="l00187" name="l00187"></a><span class="lineno"> 187</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a> = boost::make_shared<KelvinVoigtDamper>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>);</div>
<div class="line"><a id="l00188" name="l00188"></a><span class="lineno"> 188</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->commonData.meshNodePositionName = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>;</div>
<div class="line"><a id="l00189" name="l00189"></a><span class="lineno"> 189</span> </div>
<div class="line"><a id="l00190" name="l00190"></a><span class="lineno"> 190</span> <span class="keyword">auto</span> &common_data = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->commonData;</div>
<div class="line"><a id="l00191" name="l00191"></a><span class="lineno"> 191</span> </div>
<div class="line"><a id="l00192" name="l00192"></a><span class="lineno"> 192</span> common_data.spatialPositionName = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>;</div>
<div class="line"><a id="l00193" name="l00193"></a><span class="lineno"> 193</span> common_data.spatialPositionNameDot = <span class="stringliteral">"DOT_"</span> + <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>;</div>
<div class="line"><a id="l00194" name="l00194"></a><span class="lineno"> 194</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->setBlockDataMap(); FIXME:</div>
<div class="line"><a id="l00195" name="l00195"></a><span class="lineno"> 195</span> </div>
<div class="line"><a id="l00196" name="l00196"></a><span class="lineno"> 196</span> <span class="keywordflow">for</span> (<span class="keyword">auto</span> &[<span class="keywordtype">id</span>, data] : <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->blockMaterialDataMap) {</div>
<div class="line"><a id="l00197" name="l00197"></a><span class="lineno"> 197</span> data.lInear = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a779f41c506f1017486f92703e53651fc">isLinear</a>;</div>
<div class="line"><a id="l00198" name="l00198"></a><span class="lineno"> 198</span> <span class="keywordtype">int</span> cid = id;</div>
<div class="line"><a id="l00199" name="l00199"></a><span class="lineno"> 199</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->constitutiveEquationMap.insert(</div>
<div class="line"><a id="l00200" name="l00200"></a><span class="lineno"> 200</span> cid, <span class="keyword">new</span> <a class="code hl_struct" href="structKelvinVoigtDamper_1_1ConstitutiveEquation.html">KelvinVoigtDamper::ConstitutiveEquation<adouble></a>(data, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7d838029ed05594a447a84e16fc15949">isDisplacementField</a>));</div>
<div class="line"><a id="l00201" name="l00201"></a><span class="lineno"> 201</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="group__mofem__fe.html#gacbb3bbf1fa80b85848bc3cfcd604182b">add_ents_to_finite_element_by_type</a>(data.tEts, MBTET,</div>
<div class="line"><a id="l00202" name="l00202"></a><span class="lineno"> 202</span> <span class="stringliteral">"DAMPER_FE"</span>);</div>
<div class="line"><a id="l00203" name="l00203"></a><span class="lineno"> 203</span> }</div>
<div class="line"><a id="l00204" name="l00204"></a><span class="lineno"> 204</span> </div>
<div class="line"><a id="l00205" name="l00205"></a><span class="lineno"> 205</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00206" name="l00206"></a><span class="lineno"> 206</span> };</div>
</div>
<div class="line"><a id="l00207" name="l00207"></a><span class="lineno"> 207</span> </div>
<div class="foldopen" id="foldopen00208" data-start="{" data-end="}">
<div class="line"><a id="l00208" name="l00208"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a84536cd321db5deea71675a5beadbc98"> 208</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a84536cd321db5deea71675a5beadbc98">setOperators</a>()<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00209" name="l00209"></a><span class="lineno"> 209</span> <a class="code hl_define" href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a>;</div>
<div class="line"><a id="l00210" name="l00210"></a><span class="lineno"> 210</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaNodalForces.html#a84ba4b4c66e9df18c139cb81808cadc2">MetaNodalForces::setOperators</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a84899ab75b898c0e98d04e2d1da0f42e">nodal_forces</a>, PETSC_NULLPTR,</div>
<div class="line"><a id="l00211" name="l00211"></a><span class="lineno"> 211</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00212" name="l00212"></a><span class="lineno"> 212</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaEdgeForces.html#a46625c9571b0469a5c4a7aa1c8f6c272">MetaEdgeForces::setOperators</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7a605d84b56aa6bb4c8f2d4ec116fc7b">edge_forces</a>, PETSC_NULLPTR,</div>
<div class="line"><a id="l00213" name="l00213"></a><span class="lineno"> 213</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00214" name="l00214"></a><span class="lineno"> 214</span> </div>
<div class="line"><a id="l00215" name="l00215"></a><span class="lineno"> 215</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaNeumannForces.html#ad0f272e64b6937cc53769ecaa409d8b1">MetaNeumannForces::setMomentumFluxOperators</a>(</div>
<div class="line"><a id="l00216" name="l00216"></a><span class="lineno"> 216</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a97cd171ab7d75c8920b45458aba303d5">neumann_forces</a>, PETSC_NULLPTR, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>);</div>
<div class="line"><a id="l00217" name="l00217"></a><span class="lineno"> 217</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf">springLhsPtr</a> = boost::make_shared<FaceElementForcesAndSourcesCore>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>);</div>
<div class="line"><a id="l00218" name="l00218"></a><span class="lineno"> 218</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84">springRhsPtr</a> = boost::make_shared<FaceElementForcesAndSourcesCore>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>);</div>
<div class="line"><a id="l00219" name="l00219"></a><span class="lineno"> 219</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">bodyForceRhsPtr</a> =</div>
<div class="line"><a id="l00220" name="l00220"></a><span class="lineno"> 220</span> boost::make_shared<VolumeElementForcesAndSourcesCore>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>);</div>
<div class="line"><a id="l00221" name="l00221"></a><span class="lineno"> 221</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a> =</div>
<div class="line"><a id="l00222" name="l00222"></a><span class="lineno"> 222</span> boost::make_shared<VolumeElementForcesAndSourcesCore>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>);</div>
<div class="line"><a id="l00223" name="l00223"></a><span class="lineno"> 223</span> </div>
<div class="line"><a id="l00224" name="l00224"></a><span class="lineno"> 224</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_function" href="structMetaSpringBC.html#a07079b9a92cb3a661d2f62bc07bfbdea">MetaSpringBC::setSpringOperators</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf">springLhsPtr</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84">springRhsPtr</a>,</div>
<div class="line"><a id="l00225" name="l00225"></a><span class="lineno"> 225</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>,</div>
<div class="line"><a id="l00226" name="l00226"></a><span class="lineno"> 226</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>);</div>
<div class="line"><a id="l00227" name="l00227"></a><span class="lineno"> 227</span> </div>
<div class="line"><a id="l00228" name="l00228"></a><span class="lineno"> 228</span> </div>
<div class="line"><a id="l00229" name="l00229"></a><span class="lineno"> 229</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">fluidPressureElementPtr</a>->setNeumannFluidPressureFiniteElementOperators(</div>
<div class="line"><a id="l00230" name="l00230"></a><span class="lineno"> 230</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, PETSC_NULLPTR, <span class="keyword">true</span>, <span class="keyword">true</span>);</div>
<div class="line"><a id="l00231" name="l00231"></a><span class="lineno"> 231</span> </div>
<div class="line"><a id="l00232" name="l00232"></a><span class="lineno"> 232</span> <span class="comment">// KelvinVoigtDamper::CommonData &common_data =</span></div>
<div class="line"><a id="l00233" name="l00233"></a><span class="lineno"> 233</span> <span class="comment">// damperElementPtr->commonData;</span></div>
<div class="line"><a id="l00234" name="l00234"></a><span class="lineno"> 234</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->setOperators(3);</div>
<div class="line"><a id="l00235" name="l00235"></a><span class="lineno"> 235</span> </div>
<div class="line"><a id="l00236" name="l00236"></a><span class="lineno"> 236</span> <span class="comment">// auto dm = mField.getInterface<Simple>()->getDM();</span></div>
<div class="line"><a id="l00237" name="l00237"></a><span class="lineno"> 237</span> </div>
<div class="line"><a id="l00238" name="l00238"></a><span class="lineno"> 238</span> <span class="keyword">auto</span> get_id_block_param = [&](<span class="keywordtype">string</span> base_name, <span class="keywordtype">int</span> id) {</div>
<div class="line"><a id="l00239" name="l00239"></a><span class="lineno"> 239</span> <span class="keywordtype">char</span> load_hist_file[255] = <span class="stringliteral">"hist.in"</span>;</div>
<div class="line"><a id="l00240" name="l00240"></a><span class="lineno"> 240</span> PetscBool ctg_flag = PETSC_FALSE;</div>
<div class="line"><a id="l00241" name="l00241"></a><span class="lineno"> 241</span> <span class="keywordtype">string</span> param_name_with_id = <span class="stringliteral">"-"</span> + base_name + <span class="stringliteral">"_"</span> + to_string(<span class="keywordtype">id</span>);</div>
<div class="line"><a id="l00242" name="l00242"></a><span class="lineno"> 242</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> PetscOptionsGetString(PETSC_NULLPTR, PETSC_NULLPTR,</div>
<div class="line"><a id="l00243" name="l00243"></a><span class="lineno"> 243</span> param_name_with_id.c_str(), load_hist_file,</div>
<div class="line"><a id="l00244" name="l00244"></a><span class="lineno"> 244</span> 255, &ctg_flag);</div>
<div class="line"><a id="l00245" name="l00245"></a><span class="lineno"> 245</span> <span class="keywordflow">if</span> (ctg_flag)</div>
<div class="line"><a id="l00246" name="l00246"></a><span class="lineno"> 246</span> <span class="keywordflow">return</span> param_name_with_id;</div>
<div class="line"><a id="l00247" name="l00247"></a><span class="lineno"> 247</span> </div>
<div class="line"><a id="l00248" name="l00248"></a><span class="lineno"> 248</span> param_name_with_id = <span class="stringliteral">"-"</span> + base_name;</div>
<div class="line"><a id="l00249" name="l00249"></a><span class="lineno"> 249</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> PetscOptionsGetString(PETSC_NULLPTR, PETSC_NULLPTR,</div>
<div class="line"><a id="l00250" name="l00250"></a><span class="lineno"> 250</span> param_name_with_id.c_str(), load_hist_file,</div>
<div class="line"><a id="l00251" name="l00251"></a><span class="lineno"> 251</span> 255, &ctg_flag);</div>
<div class="line"><a id="l00252" name="l00252"></a><span class="lineno"> 252</span> <span class="keywordflow">if</span> (ctg_flag) {</div>
<div class="line"><a id="l00253" name="l00253"></a><span class="lineno"> 253</span> <a class="code hl_define" href="group__mofem__log__manager.html#ga19fe81dc9081ceb92ced847e619ca654">MOFEM_LOG</a>(<span class="stringliteral">"WORLD"</span>, Sev::verbose)</div>
<div class="line"><a id="l00254" name="l00254"></a><span class="lineno"> 254</span> << <span class="stringliteral">"Setting one accelerogram for all blocks!"</span>;</div>
<div class="line"><a id="l00255" name="l00255"></a><span class="lineno"> 255</span> <span class="keywordflow">return</span> param_name_with_id;</div>
<div class="line"><a id="l00256" name="l00256"></a><span class="lineno"> 256</span> }</div>
<div class="line"><a id="l00257" name="l00257"></a><span class="lineno"> 257</span> </div>
<div class="line"><a id="l00258" name="l00258"></a><span class="lineno"> 258</span> <span class="keywordflow">return</span> string(<span class="stringliteral">""</span>);</div>
<div class="line"><a id="l00259" name="l00259"></a><span class="lineno"> 259</span> };</div>
<div class="line"><a id="l00260" name="l00260"></a><span class="lineno"> 260</span> </div>
<div class="line"><a id="l00261" name="l00261"></a><span class="lineno"> 261</span> <span class="keyword">auto</span> get_adj_ents = [&](<span class="keyword">const</span> <a class="code hl_class" href="classRange.html">Range</a> &ents) {</div>
<div class="line"><a id="l00262" name="l00262"></a><span class="lineno"> 262</span> <a class="code hl_class" href="classRange.html">Range</a> verts;</div>
<div class="line"><a id="l00263" name="l00263"></a><span class="lineno"> 263</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1CoreInterface.html#a174e70b67f4f235d096d3c45d865645b">get_moab</a>().get_connectivity(ents, verts, <span class="keyword">true</span>);</div>
<div class="line"><a id="l00264" name="l00264"></a><span class="lineno"> 264</span> <span class="keywordflow">for</span> (<span class="keywordtype">size_t</span> d = 1; d < 3; ++d)</div>
<div class="line"><a id="l00265" name="l00265"></a><span class="lineno"> 265</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1CoreInterface.html#a174e70b67f4f235d096d3c45d865645b">get_moab</a>().get_adjacencies(ents, d, <span class="keyword">false</span>, verts,</div>
<div class="line"><a id="l00266" name="l00266"></a><span class="lineno"> 266</span> moab::Interface::UNION);</div>
<div class="line"><a id="l00267" name="l00267"></a><span class="lineno"> 267</span> verts.merge(ents);</div>
<div class="line"><a id="l00268" name="l00268"></a><span class="lineno"> 268</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1UnknownInterface.html#a7ab248ec45fca778800dcd92e5171beb">getInterface</a><CommInterface>()->synchroniseEntities(verts);</div>
<div class="line"><a id="l00269" name="l00269"></a><span class="lineno"> 269</span> <span class="keywordflow">return</span> verts;</div>
<div class="line"><a id="l00270" name="l00270"></a><span class="lineno"> 270</span> };</div>
<div class="line"><a id="l00271" name="l00271"></a><span class="lineno"> 271</span> </div>
<div class="line"><a id="l00272" name="l00272"></a><span class="lineno"> 272</span> <span class="keywordflow">for</span> (<a class="code hl_define" href="group__mofem__meshset__mng.html#gaff36ed0367e6b0a57541419546aa1323">_IT_CUBITMESHSETS_BY_SET_TYPE_FOR_LOOP_</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <a class="code hl_enumvalue" href="definitions_8h.html#a82340fd7aca566defb002f93cc299efcac77b6cdcfb446c668fd1d7c66cfd15ab">BLOCKSET</a>, it)) {</div>
<div class="line"><a id="l00273" name="l00273"></a><span class="lineno"> 273</span> <span class="keyword">const</span> std::string block_name = <span class="stringliteral">"BODY_FORCE"</span>;</div>
<div class="line"><a id="l00274" name="l00274"></a><span class="lineno"> 274</span> <span class="keywordflow">if</span> (it->getName().compare(0, block_name.size(), block_name) == 0) {</div>
<div class="line"><a id="l00275" name="l00275"></a><span class="lineno"> 275</span> std::vector<double> attr;</div>
<div class="line"><a id="l00276" name="l00276"></a><span class="lineno"> 276</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> it->getAttributes(attr);</div>
<div class="line"><a id="l00277" name="l00277"></a><span class="lineno"> 277</span> <span class="keywordflow">if</span> (attr.size() > 3) {</div>
<div class="line"><a id="l00278" name="l00278"></a><span class="lineno"> 278</span> </div>
<div class="line"><a id="l00279" name="l00279"></a><span class="lineno"> 279</span> <span class="keyword">const</span> <span class="keywordtype">int</span> <span class="keywordtype">id</span> = it->getMeshsetId();</div>
<div class="line"><a id="l00280" name="l00280"></a><span class="lineno"> 280</span> </div>
<div class="line"><a id="l00281" name="l00281"></a><span class="lineno"> 281</span> <a class="code hl_class" href="classRange.html">Range</a> bc_ents;</div>
<div class="line"><a id="l00282" name="l00282"></a><span class="lineno"> 282</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> it->getMeshsetIdEntitiesByDimension(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1CoreInterface.html#a174e70b67f4f235d096d3c45d865645b">get_moab</a>(), 3,</div>
<div class="line"><a id="l00283" name="l00283"></a><span class="lineno"> 283</span> bc_ents, <span class="keyword">true</span>);</div>
<div class="line"><a id="l00284" name="l00284"></a><span class="lineno"> 284</span> <span class="keyword">auto</span> bc_ents_ptr = boost::make_shared<Range>(get_adj_ents(bc_ents));</div>
<div class="line"><a id="l00285" name="l00285"></a><span class="lineno"> 285</span> </div>
<div class="line"><a id="l00286" name="l00286"></a><span class="lineno"> 286</span> <span class="comment">// the first parameter is density!!! FIXME:</span></div>
<div class="line"><a id="l00287" name="l00287"></a><span class="lineno"> 287</span> </div>
<div class="line"><a id="l00288" name="l00288"></a><span class="lineno"> 288</span> VectorDouble acc({attr[1], attr[2], attr[3]});</div>
<div class="line"><a id="l00289" name="l00289"></a><span class="lineno"> 289</span> <span class="keywordtype">double</span> density = attr[0];</div>
<div class="line"><a id="l00290" name="l00290"></a><span class="lineno"> 290</span> <span class="keywordtype">bool</span> inertia_flag =</div>
<div class="line"><a id="l00291" name="l00291"></a><span class="lineno"> 291</span> attr.size() > 4 ? <a class="code hl_class" href="classbool.html">bool</a>(std::floor(attr[4])) : <span class="keyword">true</span>;</div>
<div class="line"><a id="l00292" name="l00292"></a><span class="lineno"> 292</span> <span class="comment">// if accelerogram is provided then change the acceleration,</span></div>
<div class="line"><a id="l00293" name="l00293"></a><span class="lineno"> 293</span> <span class="comment">// otherwise use whatever is in that block TODO:</span></div>
<div class="line"><a id="l00294" name="l00294"></a><span class="lineno"> 294</span> std::vector<boost::shared_ptr<TimeScaleVector3>> methods_for_scaling;</div>
<div class="line"><a id="l00295" name="l00295"></a><span class="lineno"> 295</span> std::string param_name_for_scaling =</div>
<div class="line"><a id="l00296" name="l00296"></a><span class="lineno"> 296</span> get_id_block_param(<span class="stringliteral">"accelerogram"</span>, <span class="keywordtype">id</span>);</div>
<div class="line"><a id="l00297" name="l00297"></a><span class="lineno"> 297</span> </div>
<div class="line"><a id="l00298" name="l00298"></a><span class="lineno"> 298</span> <span class="keywordflow">if</span> (!param_name_for_scaling.empty())</div>
<div class="line"><a id="l00299" name="l00299"></a><span class="lineno"> 299</span> methods_for_scaling.push_back(</div>
<div class="line"><a id="l00300" name="l00300"></a><span class="lineno"> 300</span> boost::make_shared<BasicBCVectorScale>(density,</div>
<div class="line"><a id="l00301" name="l00301"></a><span class="lineno"> 301</span> param_name_for_scaling));</div>
<div class="line"><a id="l00302" name="l00302"></a><span class="lineno"> 302</span> <span class="keywordflow">else</span></div>
<div class="line"><a id="l00303" name="l00303"></a><span class="lineno"> 303</span> methods_for_scaling.push_back(</div>
<div class="line"><a id="l00304" name="l00304"></a><span class="lineno"> 304</span> boost::make_shared<BasicBCVectorConst>(</div>
<div class="line"><a id="l00305" name="l00305"></a><span class="lineno"> 305</span> density,</div>
<div class="line"><a id="l00306" name="l00306"></a><span class="lineno"> 306</span> <a class="code hl_class" href="classFTensor_1_1Tensor1.html">FTensor::Tensor1<double, 3></a>({acc(0), acc(1), acc(2)})));</div>
<div class="line"><a id="l00307" name="l00307"></a><span class="lineno"> 307</span> </div>
<div class="line"><a id="l00308" name="l00308"></a><span class="lineno"> 308</span> <span class="comment">// FIXME: this require correction for large strains, multiply by det_F</span></div>
<div class="line"><a id="l00309" name="l00309"></a><span class="lineno"> 309</span> <span class="keyword">auto</span> get_rho = [&](<a class="code hl_class" href="classdouble.html">double</a>, <a class="code hl_class" href="classdouble.html">double</a>, <a class="code hl_class" href="classdouble.html">double</a>) {</div>
<div class="line"><a id="l00310" name="l00310"></a><span class="lineno"> 310</span> <span class="keyword">auto</span> *pipeline_mng = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1UnknownInterface.html#a7ab248ec45fca778800dcd92e5171beb">getInterface</a><PipelineManager>();</div>
<div class="line"><a id="l00311" name="l00311"></a><span class="lineno"> 311</span> <span class="keyword">auto</span> &fe_domain_lhs = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a>;</div>
<div class="line"><a id="l00312" name="l00312"></a><span class="lineno"> 312</span> <span class="keywordflow">return</span> density * fe_domain_lhs->ts_aa;</div>
<div class="line"><a id="l00313" name="l00313"></a><span class="lineno"> 313</span> };</div>
<div class="line"><a id="l00314" name="l00314"></a><span class="lineno"> 314</span> </div>
<div class="line"><a id="l00315" name="l00315"></a><span class="lineno"> 315</span> <span class="keyword">auto</span> &pipeline_rhs = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">bodyForceRhsPtr</a>->getOpPtrVector();</div>
<div class="line"><a id="l00316" name="l00316"></a><span class="lineno"> 316</span> <span class="keyword">auto</span> &pipeline_lhs = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a>->getOpPtrVector();</div>
<div class="line"><a id="l00317" name="l00317"></a><span class="lineno"> 317</span> </div>
<div class="line"><a id="l00318" name="l00318"></a><span class="lineno"> 318</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> addHOOpsVol(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>, *<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">bodyForceRhsPtr</a>, <span class="keyword">true</span>, <span class="keyword">false</span>,</div>
<div class="line"><a id="l00319" name="l00319"></a><span class="lineno"> 319</span> <span class="keyword">false</span>, <span class="keyword">false</span>);</div>
<div class="line"><a id="l00320" name="l00320"></a><span class="lineno"> 320</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> addHOOpsVol(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>, *<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a>, <span class="keyword">true</span>, <span class="keyword">false</span>,</div>
<div class="line"><a id="l00321" name="l00321"></a><span class="lineno"> 321</span> <span class="keyword">false</span>, <span class="keyword">false</span>);</div>
<div class="line"><a id="l00322" name="l00322"></a><span class="lineno"> 322</span> </div>
<div class="line"><a id="l00323" name="l00323"></a><span class="lineno"> 323</span> <span class="comment">//FIXME: fix for large strains</span></div>
<div class="line"><a id="l00324" name="l00324"></a><span class="lineno"> 324</span> pipeline_rhs.push_back(</div>
<div class="line"><a id="l00325" name="l00325"></a><span class="lineno"> 325</span> <span class="keyword">new</span> OpSetBc(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, <span class="keyword">true</span>, <a class="code hl_variable" href="structGenericElementInterface.html#a958e4d737d0734a4e2845814b5da5c57">mBoundaryMarker</a>));</div>
<div class="line"><a id="l00326" name="l00326"></a><span class="lineno"> 326</span> </div>
<div class="line"><a id="l00327" name="l00327"></a><span class="lineno"> 327</span> <span class="comment">// using new way of adding BCs</span></div>
<div class="line"><a id="l00328" name="l00328"></a><span class="lineno"> 328</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a></div>
<div class="line"><a id="l00329" name="l00329"></a><span class="lineno"> 329</span> <a class="code hl_struct" href="structMoFEM_1_1AddFluxToRhsPipelineImpl.html">DomainNaturalBC::AddFluxToPipeline<OpBodyForceVector>::add</a>(</div>
<div class="line"><a id="l00330" name="l00330"></a><span class="lineno"> 330</span> pipeline_rhs, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>, <span class="stringliteral">"U"</span>, {}, methods_for_scaling,</div>
<div class="line"><a id="l00331" name="l00331"></a><span class="lineno"> 331</span> it->getName(), Sev::inform);</div>
<div class="line"><a id="l00332" name="l00332"></a><span class="lineno"> 332</span> </div>
<div class="line"><a id="l00333" name="l00333"></a><span class="lineno"> 333</span> <span class="keywordflow">if</span> (!<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5cee7fb102326dfe6fac290344511f39">isQuasiStatic</a> && inertia_flag) {</div>
<div class="line"><a id="l00334" name="l00334"></a><span class="lineno"> 334</span> pipeline_lhs.push_back(</div>
<div class="line"><a id="l00335" name="l00335"></a><span class="lineno"> 335</span> <span class="keyword">new</span> OpSetBc(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, <span class="keyword">true</span>, <a class="code hl_variable" href="structGenericElementInterface.html#a958e4d737d0734a4e2845814b5da5c57">mBoundaryMarker</a>));</div>
<div class="line"><a id="l00336" name="l00336"></a><span class="lineno"> 336</span> pipeline_lhs.push_back(</div>
<div class="line"><a id="l00337" name="l00337"></a><span class="lineno"> 337</span> <span class="keyword">new</span> <a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#aa29171a765a61da5835672ce79fc5d25">OpMass</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, get_rho, bc_ents_ptr));</div>
<div class="line"><a id="l00338" name="l00338"></a><span class="lineno"> 338</span> <span class="keyword">auto</span> mat_acceleration = boost::make_shared<MatrixDouble>();</div>
<div class="line"><a id="l00339" name="l00339"></a><span class="lineno"> 339</span> pipeline_rhs.push_back(<span class="keyword">new</span> OpCalculateVectorFieldValuesDotDot<3>(</div>
<div class="line"><a id="l00340" name="l00340"></a><span class="lineno"> 340</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, mat_acceleration));</div>
<div class="line"><a id="l00341" name="l00341"></a><span class="lineno"> 341</span> pipeline_rhs.push_back(<span class="keyword">new</span> <a class="code hl_typedef" href="structBasicBoundaryConditionsInterface.html#ab651975f24f1b3bdfd75e9ee192410a2">OpInertiaForce</a>(</div>
<div class="line"><a id="l00342" name="l00342"></a><span class="lineno"> 342</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, mat_acceleration,</div>
<div class="line"><a id="l00343" name="l00343"></a><span class="lineno"> 343</span> [&](<span class="keywordtype">double</span>, <span class="keywordtype">double</span>, <span class="keywordtype">double</span>) { <span class="keywordflow">return</span> density; }, bc_ents_ptr));</div>
<div class="line"><a id="l00344" name="l00344"></a><span class="lineno"> 344</span> pipeline_lhs.push_back(<span class="keyword">new</span> OpUnSetBc(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>));</div>
<div class="line"><a id="l00345" name="l00345"></a><span class="lineno"> 345</span> }</div>
<div class="line"><a id="l00346" name="l00346"></a><span class="lineno"> 346</span> pipeline_rhs.push_back(<span class="keyword">new</span> OpUnSetBc(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>));</div>
<div class="line"><a id="l00347" name="l00347"></a><span class="lineno"> 347</span> </div>
<div class="line"><a id="l00348" name="l00348"></a><span class="lineno"> 348</span> } <span class="keywordflow">else</span> {</div>
<div class="line"><a id="l00349" name="l00349"></a><span class="lineno"> 349</span> SETERRQ(</div>
<div class="line"><a id="l00350" name="l00350"></a><span class="lineno"> 350</span> PETSC_COMM_SELF, <a class="code hl_enumvalue" href="definitions_8h.html#a980bf270a5c3f2f984262f7e74786a2eaded6d08fa6d0cd6d9b116fac8318c262">MOFEM_INVALID_DATA</a>,</div>
<div class="line"><a id="l00351" name="l00351"></a><span class="lineno"> 351</span> <span class="stringliteral">"There should be (1 density + 3 accelerations ) attributes in "</span></div>
<div class="line"><a id="l00352" name="l00352"></a><span class="lineno"> 352</span> <span class="stringliteral">"BODY_FORCE blockset, but is %ld. Optionally, you can set 5th "</span></div>
<div class="line"><a id="l00353" name="l00353"></a><span class="lineno"> 353</span> <span class="stringliteral">"parameter to inertia flag."</span>,</div>
<div class="line"><a id="l00354" name="l00354"></a><span class="lineno"> 354</span> attr.size());</div>
<div class="line"><a id="l00355" name="l00355"></a><span class="lineno"> 355</span> }</div>
<div class="line"><a id="l00356" name="l00356"></a><span class="lineno"> 356</span> }</div>
<div class="line"><a id="l00357" name="l00357"></a><span class="lineno"> 357</span> }</div>
<div class="line"><a id="l00358" name="l00358"></a><span class="lineno"> 358</span> </div>
<div class="line"><a id="l00359" name="l00359"></a><span class="lineno"> 359</span> <span class="keyword">auto</span> integration_rule_vol = [](int, int, <span class="keywordtype">int</span> <a class="code hl_variable" href="prism__polynomial__approximation_8cpp.html#a67c2672e3debe9c63fb239645337a1bd">approx_order</a>) {</div>
<div class="line"><a id="l00360" name="l00360"></a><span class="lineno"> 360</span> <span class="keywordflow">return</span> 2 * <a class="code hl_variable" href="prism__polynomial__approximation_8cpp.html#a67c2672e3debe9c63fb239645337a1bd">approx_order</a> + 1;</div>
<div class="line"><a id="l00361" name="l00361"></a><span class="lineno"> 361</span> };</div>
<div class="line"><a id="l00362" name="l00362"></a><span class="lineno"> 362</span> <span class="keyword">auto</span> integration_rule_boundary = [](int, int, <span class="keywordtype">int</span> <a class="code hl_variable" href="prism__polynomial__approximation_8cpp.html#a67c2672e3debe9c63fb239645337a1bd">approx_order</a>) {</div>
<div class="line"><a id="l00363" name="l00363"></a><span class="lineno"> 363</span> <span class="keywordflow">return</span> 2 * <a class="code hl_variable" href="prism__polynomial__approximation_8cpp.html#a67c2672e3debe9c63fb239645337a1bd">approx_order</a> + 1;</div>
<div class="line"><a id="l00364" name="l00364"></a><span class="lineno"> 364</span> };</div>
<div class="line"><a id="l00365" name="l00365"></a><span class="lineno"> 365</span> </div>
<div class="line"><a id="l00366" name="l00366"></a><span class="lineno"> 366</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf">springLhsPtr</a>->getRuleHook = integration_rule_boundary;</div>
<div class="line"><a id="l00367" name="l00367"></a><span class="lineno"> 367</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84">springRhsPtr</a>->getRuleHook = integration_rule_boundary;</div>
<div class="line"><a id="l00368" name="l00368"></a><span class="lineno"> 368</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a>->getRuleHook = integration_rule_vol;</div>
<div class="line"><a id="l00369" name="l00369"></a><span class="lineno"> 369</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">bodyForceRhsPtr</a>->getRuleHook = integration_rule_vol;</div>
<div class="line"><a id="l00370" name="l00370"></a><span class="lineno"> 370</span> </div>
<div class="line"><a id="l00371" name="l00371"></a><span class="lineno"> 371</span> <span class="comment">// set other boundary conditions</span></div>
<div class="line"><a id="l00372" name="l00372"></a><span class="lineno"> 372</span> <span class="keyword">auto</span> bc_mng = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1UnknownInterface.html#a7ab248ec45fca778800dcd92e5171beb">getInterface</a><BcManager>();</div>
<div class="line"><a id="l00373" name="l00373"></a><span class="lineno"> 373</span> <span class="keyword">auto</span> *pipeline_mng = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1UnknownInterface.html#a7ab248ec45fca778800dcd92e5171beb">getInterface</a><PipelineManager>();</div>
<div class="line"><a id="l00374" name="l00374"></a><span class="lineno"> 374</span> </div>
<div class="line"><a id="l00375" name="l00375"></a><span class="lineno"> 375</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->removeBlockDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"REMOVE_X"</span>,</div>
<div class="line"><a id="l00376" name="l00376"></a><span class="lineno"> 376</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 0, 0, <span class="keyword">true</span>,</div>
<div class="line"><a id="l00377" name="l00377"></a><span class="lineno"> 377</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>);</div>
<div class="line"><a id="l00378" name="l00378"></a><span class="lineno"> 378</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->removeBlockDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"REMOVE_Y"</span>,</div>
<div class="line"><a id="l00379" name="l00379"></a><span class="lineno"> 379</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 1, 1, <span class="keyword">true</span>,</div>
<div class="line"><a id="l00380" name="l00380"></a><span class="lineno"> 380</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>);</div>
<div class="line"><a id="l00381" name="l00381"></a><span class="lineno"> 381</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->removeBlockDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"REMOVE_Z"</span>,</div>
<div class="line"><a id="l00382" name="l00382"></a><span class="lineno"> 382</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 2, 2, <span class="keyword">true</span>,</div>
<div class="line"><a id="l00383" name="l00383"></a><span class="lineno"> 383</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>);</div>
<div class="line"><a id="l00384" name="l00384"></a><span class="lineno"> 384</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->removeBlockDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"REMOVE_ALL"</span>,</div>
<div class="line"><a id="l00385" name="l00385"></a><span class="lineno"> 385</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 0, 2, <span class="keyword">true</span>,</div>
<div class="line"><a id="l00386" name="l00386"></a><span class="lineno"> 386</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">isPartitioned</a>);</div>
<div class="line"><a id="l00387" name="l00387"></a><span class="lineno"> 387</span> </div>
<div class="line"><a id="l00388" name="l00388"></a><span class="lineno"> 388</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->pushMarkDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"FIX_X"</span>,</div>
<div class="line"><a id="l00389" name="l00389"></a><span class="lineno"> 389</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 0, 0);</div>
<div class="line"><a id="l00390" name="l00390"></a><span class="lineno"> 390</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->pushMarkDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"FIX_Y"</span>,</div>
<div class="line"><a id="l00391" name="l00391"></a><span class="lineno"> 391</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 1, 1);</div>
<div class="line"><a id="l00392" name="l00392"></a><span class="lineno"> 392</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->pushMarkDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"FIX_Z"</span>,</div>
<div class="line"><a id="l00393" name="l00393"></a><span class="lineno"> 393</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 2, 2);</div>
<div class="line"><a id="l00394" name="l00394"></a><span class="lineno"> 394</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->pushMarkDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"FIX_ALL"</span>,</div>
<div class="line"><a id="l00395" name="l00395"></a><span class="lineno"> 395</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 0, 2);</div>
<div class="line"><a id="l00396" name="l00396"></a><span class="lineno"> 396</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> bc_mng->pushMarkDOFsOnEntities(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">domainProblemName</a>, <span class="stringliteral">"ROTATE"</span>,</div>
<div class="line"><a id="l00397" name="l00397"></a><span class="lineno"> 397</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">positionField</a>, 0, 2);</div>
<div class="line"><a id="l00398" name="l00398"></a><span class="lineno"> 398</span> </div>
<div class="line"><a id="l00399" name="l00399"></a><span class="lineno"> 399</span> <a class="code hl_variable" href="structGenericElementInterface.html#a958e4d737d0734a4e2845814b5da5c57">mBoundaryMarker</a> =</div>
<div class="line"><a id="l00400" name="l00400"></a><span class="lineno"> 400</span> bc_mng->getMergedBlocksMarker(vector<string>{<span class="stringliteral">"FIX_"</span>, <span class="stringliteral">"ROTATE"</span>});</div>
<div class="line"><a id="l00401" name="l00401"></a><span class="lineno"> 401</span> </div>
<div class="line"><a id="l00402" name="l00402"></a><span class="lineno"> 402</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00403" name="l00403"></a><span class="lineno"> 403</span> };</div>
</div>
<div class="line"><a id="l00404" name="l00404"></a><span class="lineno"> 404</span> </div>
<div class="foldopen" id="foldopen00405" data-start="{" data-end="}">
<div class="line"><a id="l00405" name="l00405"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#aaff7f92007ba1ccce40f3c2f3ec3e2e8"> 405</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#aaff7f92007ba1ccce40f3c2f3ec3e2e8">addElementsToDM</a>(SmartPetscObj<DM> dm)<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00406" name="l00406"></a><span class="lineno"> 406</span> <a class="code hl_define" href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a>;</div>
<div class="line"><a id="l00407" name="l00407"></a><span class="lineno"> 407</span> this->dM = dm;</div>
<div class="line"><a id="l00408" name="l00408"></a><span class="lineno"> 408</span> <span class="keyword">auto</span> <a class="code hl_function" href="acoustic_8cpp.html#ad68ed57e17c71816ecfad0ea6746c8d3">simple</a> = <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">mField</a>.<a class="code hl_function" href="structMoFEM_1_1UnknownInterface.html#a7ab248ec45fca778800dcd92e5171beb">getInterface</a><Simple>();</div>
<div class="line"><a id="l00409" name="l00409"></a><span class="lineno"> 409</span> vector<const char *> element_list{<span class="stringliteral">"FORCE_FE"</span>, <span class="stringliteral">"PRESSURE_FE"</span>,</div>
<div class="line"><a id="l00410" name="l00410"></a><span class="lineno"> 410</span> <span class="stringliteral">"FLUID_PRESSURE_FE"</span>,</div>
<div class="line"><a id="l00411" name="l00411"></a><span class="lineno"> 411</span> <span class="stringliteral">"SPRING"</span>,</div>
<div class="line"><a id="l00412" name="l00412"></a><span class="lineno"> 412</span> <span class="stringliteral">"DAMPER_FE"</span>};</div>
<div class="line"><a id="l00413" name="l00413"></a><span class="lineno"> 413</span> <span class="keywordflow">for</span> (<span class="keyword">auto</span> &el : element_list) {</div>
<div class="line"><a id="l00414" name="l00414"></a><span class="lineno"> 414</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> DMMoFEMAddElement(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, el);</div>
<div class="line"><a id="l00415" name="l00415"></a><span class="lineno"> 415</span> <a class="code hl_function" href="acoustic_8cpp.html#ad68ed57e17c71816ecfad0ea6746c8d3">simple</a>->getOtherFiniteElements().push_back(el);</div>
<div class="line"><a id="l00416" name="l00416"></a><span class="lineno"> 416</span> }</div>
<div class="line"><a id="l00417" name="l00417"></a><span class="lineno"> 417</span> <span class="comment">// if (!fluidPressureElementPtr->setOfFluids.empty())</span></div>
<div class="line"><a id="l00418" name="l00418"></a><span class="lineno"> 418</span> <span class="comment">// FIXME:</span></div>
<div class="line"><a id="l00419" name="l00419"></a><span class="lineno"> 419</span> <span class="comment">// CHKERR mField.modify_problem_add_finite_element(domainProblemName,</span></div>
<div class="line"><a id="l00420" name="l00420"></a><span class="lineno"> 420</span> <span class="comment">// "FLUID_PRESSURE_FE");</span></div>
<div class="line"><a id="l00421" name="l00421"></a><span class="lineno"> 421</span> <span class="comment">// CHKERR dynamic_cast<DirichletDisplacementRemoveDofsBc &>(</span></div>
<div class="line"><a id="l00422" name="l00422"></a><span class="lineno"> 422</span> <span class="comment">// *dirichletBcPtr).iNitialize();</span></div>
<div class="line"><a id="l00423" name="l00423"></a><span class="lineno"> 423</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00424" name="l00424"></a><span class="lineno"> 424</span> };</div>
</div>
<div class="line"><a id="l00425" name="l00425"></a><span class="lineno"> 425</span> </div>
<div class="line"><a id="l00426" name="l00426"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ae422470a235b8376597a789ac46f99c6"> 426</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#ae422470a235b8376597a789ac46f99c6">updateElementVariables</a>()<span class="keyword"> override </span>{ <span class="keywordflow">return</span> 0; };</div>
<div class="line"><a id="l00427" name="l00427"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#aeae7fbe298d80f4ae4068c5677d130f2"> 427</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#aeae7fbe298d80f4ae4068c5677d130f2">postProcessElement</a>(<span class="keywordtype">int</span> step)<span class="keyword"> override </span>{ <span class="keywordflow">return</span> 0; };</div>
<div class="line"><a id="l00428" name="l00428"></a><span class="lineno"> 428</span> </div>
<div class="foldopen" id="foldopen00429" data-start="{" data-end="}">
<div class="line"><a id="l00429" name="l00429"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a889f24fb50fd43466b8fe60480f0158d"> 429</a></span> <span class="keywordtype">string</span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a889f24fb50fd43466b8fe60480f0158d">getHistoryParam</a>(<span class="keywordtype">string</span> prefix) {</div>
<div class="line"><a id="l00430" name="l00430"></a><span class="lineno"> 430</span> <span class="keywordtype">char</span> load_hist_file[255] = <span class="stringliteral">"hist.in"</span>;</div>
<div class="line"><a id="l00431" name="l00431"></a><span class="lineno"> 431</span> PetscBool ctg_flag = PETSC_FALSE;</div>
<div class="line"><a id="l00432" name="l00432"></a><span class="lineno"> 432</span> <span class="keywordtype">string</span> new_param_file = string(<span class="stringliteral">"-"</span>) + prefix + string(<span class="stringliteral">"_history"</span>);</div>
<div class="line"><a id="l00433" name="l00433"></a><span class="lineno"> 433</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> PetscOptionsGetString(PETSC_NULLPTR, PETSC_NULLPTR, new_param_file.c_str(),</div>
<div class="line"><a id="l00434" name="l00434"></a><span class="lineno"> 434</span> load_hist_file, 255, &ctg_flag);</div>
<div class="line"><a id="l00435" name="l00435"></a><span class="lineno"> 435</span> <span class="keywordflow">if</span> (ctg_flag)</div>
<div class="line"><a id="l00436" name="l00436"></a><span class="lineno"> 436</span> <span class="keywordflow">return</span> new_param_file;</div>
<div class="line"><a id="l00437" name="l00437"></a><span class="lineno"> 437</span> <span class="keywordflow">return</span> string(<span class="stringliteral">"-load_history"</span>);</div>
<div class="line"><a id="l00438" name="l00438"></a><span class="lineno"> 438</span> };</div>
</div>
<div class="line"><a id="l00439" name="l00439"></a><span class="lineno"> 439</span> </div>
<div class="line"><a id="l00440" name="l00440"></a><span class="lineno"> 440</span> <span class="keyword">template</span> <<span class="keyword">typename</span> T></div>
<div class="foldopen" id="foldopen00441" data-start="{" data-end="}">
<div class="line"><a id="l00441" name="l00441"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a34c782a34af9858d13dde9324424c1e5"> 441</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a34c782a34af9858d13dde9324424c1e5">setupSolverFunction</a>(<span class="keyword">const</span> <a class="code hl_enumeration" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9">TSType</a> type = <a class="code hl_enumvalue" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a229e1f84e5a5616a46bbcacc5d28a83d">IM</a>) {</div>
<div class="line"><a id="l00442" name="l00442"></a><span class="lineno"> 442</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> setupSolverImpl<T, true>(type);</div>
<div class="line"><a id="l00443" name="l00443"></a><span class="lineno"> 443</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00444" name="l00444"></a><span class="lineno"> 444</span> }</div>
</div>
<div class="line"><a id="l00445" name="l00445"></a><span class="lineno"> 445</span> </div>
<div class="line"><a id="l00446" name="l00446"></a><span class="lineno"> 446</span> <span class="keyword">template</span> <<span class="keyword">typename</span> T></div>
<div class="foldopen" id="foldopen00447" data-start="{" data-end="}">
<div class="line"><a id="l00447" name="l00447"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#ac538a188f9faa52099555518d3e0460e"> 447</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#ac538a188f9faa52099555518d3e0460e">setupSolverJacobian</a>(<span class="keyword">const</span> <a class="code hl_enumeration" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9">TSType</a> type = <a class="code hl_enumvalue" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a229e1f84e5a5616a46bbcacc5d28a83d">IM</a>) {</div>
<div class="line"><a id="l00448" name="l00448"></a><span class="lineno"> 448</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> setupSolverImpl<T, false>(type);</div>
<div class="line"><a id="l00449" name="l00449"></a><span class="lineno"> 449</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00450" name="l00450"></a><span class="lineno"> 450</span> }</div>
</div>
<div class="line"><a id="l00451" name="l00451"></a><span class="lineno"> 451</span> </div>
<div class="line"><a id="l00452" name="l00452"></a><span class="lineno"> 452</span> <span class="keyword">template</span> <<span class="keyword">typename</span> T, <span class="keywordtype">bool</span> RHS></div>
<div class="foldopen" id="foldopen00453" data-start="{" data-end="}">
<div class="line"><a id="l00453" name="l00453"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a7c9301d2fc4dbf797485626f2b53862e"> 453</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a7c9301d2fc4dbf797485626f2b53862e">setupSolverImpl</a>(<span class="keyword">const</span> <a class="code hl_enumeration" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9">TSType</a> type = <a class="code hl_enumvalue" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a229e1f84e5a5616a46bbcacc5d28a83d">IM</a>) {</div>
<div class="line"><a id="l00454" name="l00454"></a><span class="lineno"> 454</span> <a class="code hl_define" href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a>;</div>
<div class="line"><a id="l00455" name="l00455"></a><span class="lineno"> 455</span> <span class="comment">// auto dm = dM;</span></div>
<div class="line"><a id="l00456" name="l00456"></a><span class="lineno"> 456</span> <span class="comment">// boost::shared_ptr<FEMethod> null;</span></div>
<div class="line"><a id="l00457" name="l00457"></a><span class="lineno"> 457</span> </div>
<div class="line"><a id="l00458" name="l00458"></a><span class="lineno"> 458</span> <span class="keyword">auto</span> set_solver_pipelines =</div>
<div class="line"><a id="l00459" name="l00459"></a><span class="lineno"> 459</span> [&](PetscErrorCode (*function)(DM, <span class="keyword">const</span> <span class="keywordtype">char</span> fe_name[], <a class="code hl_struct" href="structMoFEM_1_1FEMethod.html">MoFEM::FEMethod</a> *,</div>
<div class="line"><a id="l00460" name="l00460"></a><span class="lineno"> 460</span> <a class="code hl_struct" href="structMoFEM_1_1BasicMethod.html">MoFEM::BasicMethod</a> *,</div>
<div class="line"><a id="l00461" name="l00461"></a><span class="lineno"> 461</span> <a class="code hl_struct" href="structMoFEM_1_1BasicMethod.html">MoFEM::BasicMethod</a> *),</div>
<div class="line"><a id="l00462" name="l00462"></a><span class="lineno"> 462</span> PetscErrorCode (*jacobian)(DM, <span class="keyword">const</span> <span class="keywordtype">char</span> fe_name[], <a class="code hl_struct" href="structMoFEM_1_1FEMethod.html">MoFEM::FEMethod</a> *,</div>
<div class="line"><a id="l00463" name="l00463"></a><span class="lineno"> 463</span> <a class="code hl_struct" href="structMoFEM_1_1BasicMethod.html">MoFEM::BasicMethod</a> *,</div>
<div class="line"><a id="l00464" name="l00464"></a><span class="lineno"> 464</span> <a class="code hl_struct" href="structMoFEM_1_1BasicMethod.html">MoFEM::BasicMethod</a> *)) {</div>
<div class="line"><a id="l00465" name="l00465"></a><span class="lineno"> 465</span> </div>
<div class="line"><a id="l00466" name="l00466"></a><span class="lineno"> 466</span> <a class="code hl_define" href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a>;</div>
<div class="line"><a id="l00467" name="l00467"></a><span class="lineno"> 467</span> <span class="keywordflow">if</span> (RHS) {</div>
<div class="line"><a id="l00468" name="l00468"></a><span class="lineno"> 468</span> <span class="keywordflow">if</span> (std::is_same_v<T, TS>)</div>
<div class="line"><a id="l00469" name="l00469"></a><span class="lineno"> 469</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>->methodsOp.push_back(</div>
<div class="line"><a id="l00470" name="l00470"></a><span class="lineno"> 470</span> <span class="keyword">new</span> <a class="code hl_struct" href="structTimeForceScale.html">TimeForceScale</a>(<a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a889f24fb50fd43466b8fe60480f0158d">getHistoryParam</a>(<span class="stringliteral">"dirichlet"</span>), <span class="keyword">false</span>));</div>
<div class="line"><a id="l00471" name="l00471"></a><span class="lineno"> 471</span> </div>
<div class="line"><a id="l00472" name="l00472"></a><span class="lineno"> 472</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> DMoFEMPreProcessFiniteElements(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get());</div>
<div class="line"><a id="l00473" name="l00473"></a><span class="lineno"> 473</span> </div>
<div class="line"><a id="l00474" name="l00474"></a><span class="lineno"> 474</span> <span class="comment">// auto push_fmethods = [&](auto method, string element_name) {</span></div>
<div class="line"><a id="l00475" name="l00475"></a><span class="lineno"> 475</span> <span class="comment">// CHKERR function(dm, element_name.c_str(), method, method, method);</span></div>
<div class="line"><a id="l00476" name="l00476"></a><span class="lineno"> 476</span> <span class="comment">// };</span></div>
<div class="line"><a id="l00477" name="l00477"></a><span class="lineno"> 477</span> </div>
<div class="line"><a id="l00478" name="l00478"></a><span class="lineno"> 478</span> <span class="keyword">auto</span> set_neumann_methods = [&](<span class="keyword">auto</span> &neumann_el, <span class="keywordtype">string</span> hist_name,</div>
<div class="line"><a id="l00479" name="l00479"></a><span class="lineno"> 479</span> <span class="keywordtype">int</span> dim) {</div>
<div class="line"><a id="l00480" name="l00480"></a><span class="lineno"> 480</span> <a class="code hl_define" href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a>;</div>
<div class="line"><a id="l00481" name="l00481"></a><span class="lineno"> 481</span> <span class="keywordflow">for</span> (<span class="keyword">auto</span> &&mit : neumann_el) {</div>
<div class="line"><a id="l00482" name="l00482"></a><span class="lineno"> 482</span> <span class="keywordflow">if</span> <span class="keyword">constexpr</span> (std::is_same_v<T, SNES>)</div>
<div class="line"><a id="l00483" name="l00483"></a><span class="lineno"> 483</span> mit->second->methodsOp.push_back(</div>
<div class="line"><a id="l00484" name="l00484"></a><span class="lineno"> 484</span> <span class="keyword">new</span> <a class="code hl_struct" href="structBasicBoundaryConditionsInterface_1_1LoadScale.html">LoadScale</a>(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a05de7d90abd5a1d361dfef1f1022d9a9">snesLambdaLoadFactorPtr</a>));</div>
<div class="line"><a id="l00485" name="l00485"></a><span class="lineno"> 485</span> <span class="keywordflow">if</span> <span class="keyword">constexpr</span> (std::is_same_v<T, TS>)</div>
<div class="line"><a id="l00486" name="l00486"></a><span class="lineno"> 486</span> mit->second->methodsOp.push_back(</div>
<div class="line"><a id="l00487" name="l00487"></a><span class="lineno"> 487</span> <span class="keyword">new</span> <a class="code hl_struct" href="structTimeForceScale.html">TimeForceScale</a>(<a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a889f24fb50fd43466b8fe60480f0158d">getHistoryParam</a>(hist_name), <span class="keyword">false</span>));</div>
<div class="line"><a id="l00488" name="l00488"></a><span class="lineno"> 488</span> <span class="keywordtype">string</span> element_name = mit->first;</div>
<div class="line"><a id="l00489" name="l00489"></a><span class="lineno"> 489</span> <span class="keywordflow">switch</span> (dim) {</div>
<div class="line"><a id="l00490" name="l00490"></a><span class="lineno"> 490</span> <span class="keywordflow">case</span> 2:</div>
<div class="line"><a id="l00491" name="l00491"></a><span class="lineno"> 491</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_struct" href="structAddHOOps.html">AddHOOps<2, 3, 3>::add</a>(</div>
<div class="line"><a id="l00492" name="l00492"></a><span class="lineno"> 492</span> mit->second->getLoopFe().getOpPtrVector(), {},</div>
<div class="line"><a id="l00493" name="l00493"></a><span class="lineno"> 493</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>);</div>
<div class="line"><a id="l00494" name="l00494"></a><span class="lineno"> 494</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00495" name="l00495"></a><span class="lineno"> 495</span> <span class="keywordflow">case</span> 1:</div>
<div class="line"><a id="l00496" name="l00496"></a><span class="lineno"> 496</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> <a class="code hl_struct" href="structAddHOOps.html">AddHOOps<1, 2, 2>::add</a>(</div>
<div class="line"><a id="l00497" name="l00497"></a><span class="lineno"> 497</span> mit->second->getLoopFe().getOpPtrVector(), {},</div>
<div class="line"><a id="l00498" name="l00498"></a><span class="lineno"> 498</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">meshNodeField</a>);</div>
<div class="line"><a id="l00499" name="l00499"></a><span class="lineno"> 499</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00500" name="l00500"></a><span class="lineno"> 500</span> <span class="keywordflow">case</span> 0:</div>
<div class="line"><a id="l00501" name="l00501"></a><span class="lineno"> 501</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00502" name="l00502"></a><span class="lineno"> 502</span> <span class="keywordflow">default</span>:</div>
<div class="line"><a id="l00503" name="l00503"></a><span class="lineno"> 503</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00504" name="l00504"></a><span class="lineno"> 504</span> }</div>
<div class="line"><a id="l00505" name="l00505"></a><span class="lineno"> 505</span> <span class="comment">// CHKERR push_fmethods(&mit->second->getLoopFe(),</span></div>
<div class="line"><a id="l00506" name="l00506"></a><span class="lineno"> 506</span> <span class="comment">// element_name);</span></div>
<div class="line"><a id="l00507" name="l00507"></a><span class="lineno"> 507</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> function(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, element_name.c_str(),</div>
<div class="line"><a id="l00508" name="l00508"></a><span class="lineno"> 508</span> &mit->second->getLoopFe(), NULL, NULL);</div>
<div class="line"><a id="l00509" name="l00509"></a><span class="lineno"> 509</span> }</div>
<div class="line"><a id="l00510" name="l00510"></a><span class="lineno"> 510</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00511" name="l00511"></a><span class="lineno"> 511</span> };</div>
<div class="line"><a id="l00512" name="l00512"></a><span class="lineno"> 512</span> </div>
<div class="line"><a id="l00513" name="l00513"></a><span class="lineno"> 513</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_neumann_methods(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a97cd171ab7d75c8920b45458aba303d5">neumann_forces</a>, <span class="stringliteral">"force"</span>, 2);</div>
<div class="line"><a id="l00514" name="l00514"></a><span class="lineno"> 514</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_neumann_methods(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a84899ab75b898c0e98d04e2d1da0f42e">nodal_forces</a>, <span class="stringliteral">"force"</span>, 0);</div>
<div class="line"><a id="l00515" name="l00515"></a><span class="lineno"> 515</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_neumann_methods(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a7a605d84b56aa6bb4c8f2d4ec116fc7b">edge_forces</a>, <span class="stringliteral">"force"</span>, 1);</div>
<div class="line"><a id="l00516" name="l00516"></a><span class="lineno"> 516</span> </div>
<div class="line"><a id="l00517" name="l00517"></a><span class="lineno"> 517</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> function(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">domainElementName</a>.c_str(), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get(),</div>
<div class="line"><a id="l00518" name="l00518"></a><span class="lineno"> 518</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get(), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get());</div>
<div class="line"><a id="l00519" name="l00519"></a><span class="lineno"> 519</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> function(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">domainElementName</a>.c_str(),</div>
<div class="line"><a id="l00520" name="l00520"></a><span class="lineno"> 520</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">bodyForceRhsPtr</a>.get(), NULL, NULL);</div>
<div class="line"><a id="l00521" name="l00521"></a><span class="lineno"> 521</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> function(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <span class="stringliteral">"SPRING"</span>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84">springRhsPtr</a>.get(), NULL, NULL);</div>
<div class="line"><a id="l00522" name="l00522"></a><span class="lineno"> 522</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> function(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <span class="stringliteral">"DAMPER_FE"</span>, &<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->feRhs, NULL,</div>
<div class="line"><a id="l00523" name="l00523"></a><span class="lineno"> 523</span> NULL);</div>
<div class="line"><a id="l00524" name="l00524"></a><span class="lineno"> 524</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> function(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <span class="stringliteral">"FLUID_PRESSURE_FE"</span>,</div>
<div class="line"><a id="l00525" name="l00525"></a><span class="lineno"> 525</span> &<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">fluidPressureElementPtr</a>->getLoopFe(), NULL, NULL);</div>
<div class="line"><a id="l00526" name="l00526"></a><span class="lineno"> 526</span> } <span class="keywordflow">else</span> {</div>
<div class="line"><a id="l00527" name="l00527"></a><span class="lineno"> 527</span> </div>
<div class="line"><a id="l00528" name="l00528"></a><span class="lineno"> 528</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> jacobian(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">domainElementName</a>.c_str(), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get(),</div>
<div class="line"><a id="l00529" name="l00529"></a><span class="lineno"> 529</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get(), <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">dirichletBcPtr</a>.get());</div>
<div class="line"><a id="l00530" name="l00530"></a><span class="lineno"> 530</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> jacobian(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">domainElementName</a>.c_str(),</div>
<div class="line"><a id="l00531" name="l00531"></a><span class="lineno"> 531</span> <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">bodyForceLhsPtr</a>.get(), NULL, NULL);</div>
<div class="line"><a id="l00532" name="l00532"></a><span class="lineno"> 532</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> jacobian(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <span class="stringliteral">"SPRING"</span>, <a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf">springLhsPtr</a>.get(), NULL, NULL);</div>
<div class="line"><a id="l00533" name="l00533"></a><span class="lineno"> 533</span> </div>
<div class="line"><a id="l00534" name="l00534"></a><span class="lineno"> 534</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> jacobian(<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">dM</a>, <span class="stringliteral">"DAMPER_FE"</span>, &<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">damperElementPtr</a>->feLhs, NULL,</div>
<div class="line"><a id="l00535" name="l00535"></a><span class="lineno"> 535</span> NULL);</div>
<div class="line"><a id="l00536" name="l00536"></a><span class="lineno"> 536</span> }</div>
<div class="line"><a id="l00537" name="l00537"></a><span class="lineno"> 537</span> </div>
<div class="line"><a id="l00538" name="l00538"></a><span class="lineno"> 538</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00539" name="l00539"></a><span class="lineno"> 539</span> };</div>
<div class="line"><a id="l00540" name="l00540"></a><span class="lineno"> 540</span> </div>
<div class="line"><a id="l00541" name="l00541"></a><span class="lineno"> 541</span> <span class="keywordflow">if</span> <span class="keyword">constexpr</span> (std::is_same_v<T, SNES>) {</div>
<div class="line"><a id="l00542" name="l00542"></a><span class="lineno"> 542</span> </div>
<div class="line"><a id="l00543" name="l00543"></a><span class="lineno"> 543</span> <span class="keywordflow">if</span> (!<a class="code hl_variable" href="structBasicBoundaryConditionsInterface.html#a05de7d90abd5a1d361dfef1f1022d9a9">snesLambdaLoadFactorPtr</a>)</div>
<div class="line"><a id="l00544" name="l00544"></a><span class="lineno"> 544</span> SETERRQ(PETSC_COMM_SELF, <a class="code hl_enumvalue" href="definitions_8h.html#a980bf270a5c3f2f984262f7e74786a2eaef48b40a28ec42fda55bc4824e906baf">MOFEM_NOT_IMPLEMENTED</a>,</div>
<div class="line"><a id="l00545" name="l00545"></a><span class="lineno"> 545</span> <span class="stringliteral">"SNES lambda factor pointer not set in the module constructor"</span>);</div>
<div class="line"><a id="l00546" name="l00546"></a><span class="lineno"> 546</span> </div>
<div class="line"><a id="l00547" name="l00547"></a><span class="lineno"> 547</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_solver_pipelines(&DMMoFEMSNESSetFunction,</div>
<div class="line"><a id="l00548" name="l00548"></a><span class="lineno"> 548</span> &DMMoFEMSNESSetJacobian);</div>
<div class="line"><a id="l00549" name="l00549"></a><span class="lineno"> 549</span> </div>
<div class="line"><a id="l00550" name="l00550"></a><span class="lineno"> 550</span> } <span class="keywordflow">else</span> <span class="keywordflow">if</span> <span class="keyword">constexpr</span> (std::is_same_v<T, TS>) {</div>
<div class="line"><a id="l00551" name="l00551"></a><span class="lineno"> 551</span> </div>
<div class="line"><a id="l00552" name="l00552"></a><span class="lineno"> 552</span> <span class="keywordflow">switch</span> (type) {</div>
<div class="line"><a id="l00553" name="l00553"></a><span class="lineno"> 553</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a229e1f84e5a5616a46bbcacc5d28a83d">IM</a>:</div>
<div class="line"><a id="l00554" name="l00554"></a><span class="lineno"> 554</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_solver_pipelines(&DMMoFEMTSSetIFunction,</div>
<div class="line"><a id="l00555" name="l00555"></a><span class="lineno"> 555</span> &DMMoFEMTSSetIJacobian);</div>
<div class="line"><a id="l00556" name="l00556"></a><span class="lineno"> 556</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00557" name="l00557"></a><span class="lineno"> 557</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a35bdb73357fc52f72b49fd86fa44eb21">IM2</a>:</div>
<div class="line"><a id="l00558" name="l00558"></a><span class="lineno"> 558</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_solver_pipelines(&DMMoFEMTSSetI2Function,</div>
<div class="line"><a id="l00559" name="l00559"></a><span class="lineno"> 559</span> &DMMoFEMTSSetI2Jacobian);</div>
<div class="line"><a id="l00560" name="l00560"></a><span class="lineno"> 560</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00561" name="l00561"></a><span class="lineno"> 561</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9ae496114cc98c871c767a70fd36f82aae">EX</a>:</div>
<div class="line"><a id="l00562" name="l00562"></a><span class="lineno"> 562</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> set_solver_pipelines(&DMMoFEMTSSetRHSFunction,</div>
<div class="line"><a id="l00563" name="l00563"></a><span class="lineno"> 563</span> &DMMoFEMTSSetRHSJacobian);</div>
<div class="line"><a id="l00564" name="l00564"></a><span class="lineno"> 564</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00565" name="l00565"></a><span class="lineno"> 565</span> <span class="keywordflow">default</span>:</div>
<div class="line"><a id="l00566" name="l00566"></a><span class="lineno"> 566</span> SETERRQ(PETSC_COMM_SELF, <a class="code hl_enumvalue" href="definitions_8h.html#a980bf270a5c3f2f984262f7e74786a2eaef48b40a28ec42fda55bc4824e906baf">MOFEM_NOT_IMPLEMENTED</a>,</div>
<div class="line"><a id="l00567" name="l00567"></a><span class="lineno"> 567</span> <span class="stringliteral">"This TS is not yet implemented for basic BCs"</span>);</div>
<div class="line"><a id="l00568" name="l00568"></a><span class="lineno"> 568</span> <span class="keywordflow">break</span>;</div>
<div class="line"><a id="l00569" name="l00569"></a><span class="lineno"> 569</span> }</div>
<div class="line"><a id="l00570" name="l00570"></a><span class="lineno"> 570</span> </div>
<div class="line"><a id="l00571" name="l00571"></a><span class="lineno"> 571</span> } <span class="keywordflow">else</span></div>
<div class="line"><a id="l00572" name="l00572"></a><span class="lineno"> 572</span> <span class="keyword">static_assert</span>(!std::is_same_v<T, KSP>,</div>
<div class="line"><a id="l00573" name="l00573"></a><span class="lineno"> 573</span> <span class="stringliteral">"this solver has not been implemented for basic BCs yet"</span>);</div>
<div class="line"><a id="l00574" name="l00574"></a><span class="lineno"> 574</span> </div>
<div class="line"><a id="l00575" name="l00575"></a><span class="lineno"> 575</span> </div>
<div class="line"><a id="l00576" name="l00576"></a><span class="lineno"> 576</span> <a class="code hl_define" href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a>(0);</div>
<div class="line"><a id="l00577" name="l00577"></a><span class="lineno"> 577</span> }</div>
</div>
<div class="line"><a id="l00578" name="l00578"></a><span class="lineno"> 578</span> </div>
<div class="foldopen" id="foldopen00579" data-start="{" data-end="}">
<div class="line"><a id="l00579" name="l00579"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a03adf957702ea66dccc40553d8d8be5a"> 579</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a03adf957702ea66dccc40553d8d8be5a">setupSolverFunctionSNES</a>()<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00580" name="l00580"></a><span class="lineno"> 580</span> <a class="code hl_define" href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a>;</div>
<div class="line"><a id="l00581" name="l00581"></a><span class="lineno"> 581</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> this->setupSolverFunction<SNES>();</div>
<div class="line"><a id="l00582" name="l00582"></a><span class="lineno"> 582</span> <a class="code hl_define" href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a>(0);</div>
<div class="line"><a id="l00583" name="l00583"></a><span class="lineno"> 583</span> }</div>
</div>
<div class="foldopen" id="foldopen00584" data-start="{" data-end="}">
<div class="line"><a id="l00584" name="l00584"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#afd5f9425fce68709088d031c89eba1ca"> 584</a></span> MoFEMErrorCode <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#afd5f9425fce68709088d031c89eba1ca">setupSolverJacobianSNES</a>()<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00585" name="l00585"></a><span class="lineno"> 585</span> <a class="code hl_define" href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a>;</div>
<div class="line"><a id="l00586" name="l00586"></a><span class="lineno"> 586</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> this->setupSolverJacobian<SNES>();</div>
<div class="line"><a id="l00587" name="l00587"></a><span class="lineno"> 587</span> <a class="code hl_define" href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a>(0);</div>
<div class="line"><a id="l00588" name="l00588"></a><span class="lineno"> 588</span> }</div>
</div>
<div class="line"><a id="l00589" name="l00589"></a><span class="lineno"> 589</span> MoFEMErrorCode</div>
<div class="foldopen" id="foldopen00590" data-start="{" data-end="}">
<div class="line"><a id="l00590" name="l00590"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a990492e76414c7cbcc7909490ae6f2c5"> 590</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a990492e76414c7cbcc7909490ae6f2c5">setupSolverFunctionTS</a>(<span class="keyword">const</span> <a class="code hl_enumeration" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9">TSType</a> type)<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00591" name="l00591"></a><span class="lineno"> 591</span> <a class="code hl_define" href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a>;</div>
<div class="line"><a id="l00592" name="l00592"></a><span class="lineno"> 592</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> this->setupSolverFunction<TS>(type);</div>
<div class="line"><a id="l00593" name="l00593"></a><span class="lineno"> 593</span> <a class="code hl_define" href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a>(0);</div>
<div class="line"><a id="l00594" name="l00594"></a><span class="lineno"> 594</span> }</div>
</div>
<div class="line"><a id="l00595" name="l00595"></a><span class="lineno"> 595</span> MoFEMErrorCode</div>
<div class="foldopen" id="foldopen00596" data-start="{" data-end="}">
<div class="line"><a id="l00596" name="l00596"></a><span class="lineno"><a class="line" href="structBasicBoundaryConditionsInterface.html#a5873949cc61dbcee3263d78f8f6dcb6d"> 596</a></span> <a class="code hl_function" href="structBasicBoundaryConditionsInterface.html#a5873949cc61dbcee3263d78f8f6dcb6d">setupSolverJacobianTS</a>(<span class="keyword">const</span> <a class="code hl_enumeration" href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9">TSType</a> type)<span class="keyword"> override </span>{</div>
<div class="line"><a id="l00597" name="l00597"></a><span class="lineno"> 597</span> <a class="code hl_define" href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a>;</div>
<div class="line"><a id="l00598" name="l00598"></a><span class="lineno"> 598</span> <a class="code hl_define" href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a> this->setupSolverJacobian<TS>(type);</div>
<div class="line"><a id="l00599" name="l00599"></a><span class="lineno"> 599</span> <a class="code hl_define" href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a>(0);</div>
<div class="line"><a id="l00600" name="l00600"></a><span class="lineno"> 600</span> }</div>
</div>
<div class="line"><a id="l00601" name="l00601"></a><span class="lineno"> 601</span> </div>
<div class="line"><a id="l00602" name="l00602"></a><span class="lineno"> 602</span>};</div>
</div>
<div class="line"><a id="l00603" name="l00603"></a><span class="lineno"> 603</span> </div>
<div class="line"><a id="l00604" name="l00604"></a><span class="lineno"> 604</span><span class="preprocessor">#endif </span><span class="comment">//__BASICBOUNDARYCONDIONSINTERFACE_HPP__</span></div>
<div class="ttc" id="aacoustic_8cpp_html_ad68ed57e17c71816ecfad0ea6746c8d3"><div class="ttname"><a href="acoustic_8cpp.html#ad68ed57e17c71816ecfad0ea6746c8d3">simple</a></div><div class="ttdeci">void simple(double P1[], double P2[], double P3[], double c[], const int N)</div><div class="ttdef"><b>Definition</b> <a href="acoustic_8cpp_source.html#l00069">acoustic.cpp:69</a></div></div>
<div class="ttc" id="aclassBiLinearForm_html"><div class="ttname"><a href="classBiLinearForm.html">BiLinearForm</a></div></div>
<div class="ttc" id="aclassBoundaryEleOp_html"><div class="ttname"><a href="classBoundaryEleOp.html">BoundaryEleOp</a></div></div>
<div class="ttc" id="aclassDomainEleOp_html"><div class="ttname"><a href="classDomainEleOp.html">DomainEleOp</a></div></div>
<div class="ttc" id="aclassFEMethod_html"><div class="ttname"><a href="classFEMethod.html">FEMethod</a></div></div>
<div class="ttc" id="aclassFTensor_1_1Index_html"><div class="ttname"><a href="classFTensor_1_1Index.html">FTensor::Index</a></div><div class="ttdef"><b>Definition</b> <a href="Index_8hpp_source.html#l00023">Index.hpp:24</a></div></div>
<div class="ttc" id="aclassFTensor_1_1Tensor1_html"><div class="ttname"><a href="classFTensor_1_1Tensor1.html">FTensor::Tensor1</a></div><div class="ttdef"><b>Definition</b> <a href="Tensor1__value_8hpp_source.html#l00008">Tensor1_value.hpp:9</a></div></div>
<div class="ttc" id="aclassFaceElementForcesAndSourcesCore_html"><div class="ttname"><a href="classFaceElementForcesAndSourcesCore.html">FaceElementForcesAndSourcesCore</a></div></div>
<div class="ttc" id="aclassLinearForm_html"><div class="ttname"><a href="classLinearForm.html">LinearForm</a></div></div>
<div class="ttc" id="aclassRange_html"><div class="ttname"><a href="classRange.html">Range</a></div></div>
<div class="ttc" id="aclassbool_html"><div class="ttname"><a href="classbool.html">bool</a></div></div>
<div class="ttc" id="aclassdouble_html"><div class="ttname"><a href="classdouble.html">double</a></div></div>
<div class="ttc" id="adefinitions_8h_html_a2c740dc34f8edf00c432912eaa5484c1a0bb920c38e835e0fbae45b0c0c029264"><div class="ttname"><a href="definitions_8h.html#a2c740dc34f8edf00c432912eaa5484c1a0bb920c38e835e0fbae45b0c0c029264">MF_ZERO</a></div><div class="ttdeci">@ MF_ZERO</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00111">definitions.h:111</a></div></div>
<div class="ttc" id="adefinitions_8h_html_a59cd650c2f6d3e0dc1ad1c29821e8692"><div class="ttname"><a href="definitions_8h.html#a59cd650c2f6d3e0dc1ad1c29821e8692">MoFEMFunctionReturnHot</a></div><div class="ttdeci">#define MoFEMFunctionReturnHot(a)</div><div class="ttdoc">Last executable line of each PETSc function used for error handling. Replaces return()</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00463">definitions.h:463</a></div></div>
<div class="ttc" id="adefinitions_8h_html_a6c0b52978f1abc88bf8a1ba70b7308e3"><div class="ttname"><a href="definitions_8h.html#a6c0b52978f1abc88bf8a1ba70b7308e3">MoFEMFunctionBegin</a></div><div class="ttdeci">#define MoFEMFunctionBegin</div><div class="ttdoc">First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00359">definitions.h:359</a></div></div>
<div class="ttc" id="adefinitions_8h_html_a82340fd7aca566defb002f93cc299efcac77b6cdcfb446c668fd1d7c66cfd15ab"><div class="ttname"><a href="definitions_8h.html#a82340fd7aca566defb002f93cc299efcac77b6cdcfb446c668fd1d7c66cfd15ab">BLOCKSET</a></div><div class="ttdeci">@ BLOCKSET</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00161">definitions.h:161</a></div></div>
<div class="ttc" id="adefinitions_8h_html_a980bf270a5c3f2f984262f7e74786a2eaded6d08fa6d0cd6d9b116fac8318c262"><div class="ttname"><a href="definitions_8h.html#a980bf270a5c3f2f984262f7e74786a2eaded6d08fa6d0cd6d9b116fac8318c262">MOFEM_INVALID_DATA</a></div><div class="ttdeci">@ MOFEM_INVALID_DATA</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00036">definitions.h:36</a></div></div>
<div class="ttc" id="adefinitions_8h_html_a980bf270a5c3f2f984262f7e74786a2eaef48b40a28ec42fda55bc4824e906baf"><div class="ttname"><a href="definitions_8h.html#a980bf270a5c3f2f984262f7e74786a2eaef48b40a28ec42fda55bc4824e906baf">MOFEM_NOT_IMPLEMENTED</a></div><div class="ttdeci">@ MOFEM_NOT_IMPLEMENTED</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00032">definitions.h:32</a></div></div>
<div class="ttc" id="adefinitions_8h_html_acb0a46d159695a01bf667313b7788b45"><div class="ttname"><a href="definitions_8h.html#acb0a46d159695a01bf667313b7788b45">MoFEMFunctionReturn</a></div><div class="ttdeci">#define MoFEMFunctionReturn(a)</div><div class="ttdoc">Last executable line of each PETSc function used for error handling. Replaces return()</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00432">definitions.h:432</a></div></div>
<div class="ttc" id="adefinitions_8h_html_add80e5ef5f847b2d4b637029f0f671c3"><div class="ttname"><a href="definitions_8h.html#add80e5ef5f847b2d4b637029f0f671c3">CHKERR</a></div><div class="ttdeci">#define CHKERR</div><div class="ttdoc">Inline error check.</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00551">definitions.h:551</a></div></div>
<div class="ttc" id="adefinitions_8h_html_aee32377dce975c9a64ed73bd3a003404"><div class="ttname"><a href="definitions_8h.html#aee32377dce975c9a64ed73bd3a003404">MoFEMFunctionBeginHot</a></div><div class="ttdeci">#define MoFEMFunctionBeginHot</div><div class="ttdoc">First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...</div><div class="ttdef"><b>Definition</b> <a href="definitions_8h_source.html#l00456">definitions.h:456</a></div></div>
<div class="ttc" id="agroup__mofem__fe_html_ga4a5b822f605f1a4faa668595a3f2a5ae"><div class="ttname"><a href="group__mofem__fe.html#ga4a5b822f605f1a4faa668595a3f2a5ae">MoFEM::CoreInterface::add_finite_element</a></div><div class="ttdeci">virtual MoFEMErrorCode add_finite_element(const std::string &fe_name, enum MoFEMTypes bh=MF_EXCL, int verb=DEFAULT_VERBOSITY)=0</div><div class="ttdoc">add finite element</div></div>
<div class="ttc" id="agroup__mofem__fe_html_ga8a9935d6f31d07ed365e6cc76bd041d2"><div class="ttname"><a href="group__mofem__fe.html#ga8a9935d6f31d07ed365e6cc76bd041d2">MoFEM::CoreInterface::modify_finite_element_add_field_col</a></div><div class="ttdeci">virtual MoFEMErrorCode modify_finite_element_add_field_col(const std::string &fe_name, const std::string name_row)=0</div><div class="ttdoc">set field col which finite element use</div></div>
<div class="ttc" id="agroup__mofem__fe_html_gacbb3bbf1fa80b85848bc3cfcd604182b"><div class="ttname"><a href="group__mofem__fe.html#gacbb3bbf1fa80b85848bc3cfcd604182b">MoFEM::CoreInterface::add_ents_to_finite_element_by_type</a></div><div class="ttdeci">virtual MoFEMErrorCode add_ents_to_finite_element_by_type(const EntityHandle entities, const EntityType type, const std::string name, const bool recursive=true)=0</div><div class="ttdoc">add entities to finite element</div></div>
<div class="ttc" id="agroup__mofem__fe_html_gad29d66fc5706d3b20e4acd02eac81c9d"><div class="ttname"><a href="group__mofem__fe.html#gad29d66fc5706d3b20e4acd02eac81c9d">MoFEM::CoreInterface::modify_finite_element_add_field_row</a></div><div class="ttdeci">virtual MoFEMErrorCode modify_finite_element_add_field_row(const std::string &fe_name, const std::string name_row)=0</div><div class="ttdoc">set field row which finite element use</div></div>
<div class="ttc" id="agroup__mofem__fe_html_gaef2eb2d85b90b55bd7c4f355e10fa498"><div class="ttname"><a href="group__mofem__fe.html#gaef2eb2d85b90b55bd7c4f355e10fa498">MoFEM::CoreInterface::modify_finite_element_add_field_data</a></div><div class="ttdeci">virtual MoFEMErrorCode modify_finite_element_add_field_data(const std::string &fe_name, const std::string name_field)=0</div><div class="ttdoc">set finite element field data</div></div>
<div class="ttc" id="agroup__mofem__log__manager_html_ga19fe81dc9081ceb92ced847e619ca654"><div class="ttname"><a href="group__mofem__log__manager.html#ga19fe81dc9081ceb92ced847e619ca654">MOFEM_LOG</a></div><div class="ttdeci">#define MOFEM_LOG(channel, severity)</div><div class="ttdoc">Log.</div><div class="ttdef"><b>Definition</b> <a href="LogManager_8hpp_source.html#l00316">LogManager.hpp:316</a></div></div>
<div class="ttc" id="agroup__mofem__meshset__mng_html_gaff36ed0367e6b0a57541419546aa1323"><div class="ttname"><a href="group__mofem__meshset__mng.html#gaff36ed0367e6b0a57541419546aa1323">_IT_CUBITMESHSETS_BY_SET_TYPE_FOR_LOOP_</a></div><div class="ttdeci">#define _IT_CUBITMESHSETS_BY_SET_TYPE_FOR_LOOP_(MESHSET_MANAGER, CUBITBCTYPE, IT)</div><div class="ttdoc">Iterator that loops over a specific Cubit MeshSet having a particular BC meshset in a moFEM field.</div><div class="ttdef"><b>Definition</b> <a href="MeshsetsManager_8hpp_source.html#l00071">MeshsetsManager.hpp:71</a></div></div>
<div class="ttc" id="ahcurl__divergence__operator__2d_8cpp_html_a4c0436605284b64f6b0b5482594d86bc"><div class="ttname"><a href="hcurl__divergence__operator__2d_8cpp.html#a4c0436605284b64f6b0b5482594d86bc">i</a></div><div class="ttdeci">FTensor::Index< 'i', SPACE_DIM > i</div><div class="ttdef"><b>Definition</b> <a href="hcurl__divergence__operator__2d_8cpp_source.html#l00027">hcurl_divergence_operator_2d.cpp:27</a></div></div>
<div class="ttc" id="aplastic_8cpp_html_a4a5fcbe78f3285ba525f15c780eb6cd5"><div class="ttname"><a href="plastic_8cpp.html#a4a5fcbe78f3285ba525f15c780eb6cd5">is_quasi_static</a></div><div class="ttdeci">PetscBool is_quasi_static</div><div class="ttdef"><b>Definition</b> <a href="plastic_8cpp_source.html#l00143">plastic.cpp:143</a></div></div>
<div class="ttc" id="aplastic_8cpp_html_a80d402d10e8341004c0caf10133b80ab"><div class="ttname"><a href="plastic_8cpp.html#a80d402d10e8341004c0caf10133b80ab">scale</a></div><div class="ttdeci">double scale</div><div class="ttdef"><b>Definition</b> <a href="plastic_8cpp_source.html#l00123">plastic.cpp:123</a></div></div>
<div class="ttc" id="aprism__polynomial__approximation_8cpp_html_a67c2672e3debe9c63fb239645337a1bd"><div class="ttname"><a href="prism__polynomial__approximation_8cpp.html#a67c2672e3debe9c63fb239645337a1bd">approx_order</a></div><div class="ttdeci">static constexpr int approx_order</div><div class="ttdef"><b>Definition</b> <a href="prism__polynomial__approximation_8cpp_source.html#l00014">prism_polynomial_approximation.cpp:14</a></div></div>
<div class="ttc" id="aseepage_8cpp_html_a2993c54e90f2427566f6d9dc8e5399a9"><div class="ttname"><a href="seepage_8cpp.html#a2993c54e90f2427566f6d9dc8e5399a9">OpMass</a></div><div class="ttdeci">FormsIntegrators< DomainEleOp >::Assembly< PETSC >::BiLinearForm< GAUSS >::OpMass< 1, SPACE_DIM > OpMass</div><div class="ttdoc">[Only used with Hooke equation (linear material model)]</div><div class="ttdef"><b>Definition</b> <a href="seepage_8cpp_source.html#l00055">seepage.cpp:56</a></div></div>
<div class="ttc" id="astructAddHOOps_html"><div class="ttname"><a href="structAddHOOps.html">AddHOOps</a></div><div class="ttdef"><b>Definition</b> <a href="EshelbianOperators_8hpp_source.html#l00918">EshelbianOperators.hpp:918</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorConst_html"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html">BasicBoundaryConditionsInterface::BasicBCVectorConst</a></div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00039">BasicBoundaryConditionsInterface.hpp:39</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorConst_html_a6e608d5f6f9a3ade7491842c46bd5bc7"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a6e608d5f6f9a3ade7491842c46bd5bc7">BasicBoundaryConditionsInterface::BasicBCVectorConst::getVector</a></div><div class="ttdeci">FTensor::Tensor1< double, 3 > getVector(const double time)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00043">BasicBoundaryConditionsInterface.hpp:43</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorConst_html_a742e915357471c28bb8126c2a8c5b586"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#a742e915357471c28bb8126c2a8c5b586">BasicBoundaryConditionsInterface::BasicBCVectorConst::sCale</a></div><div class="ttdeci">double sCale</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00050">BasicBoundaryConditionsInterface.hpp:50</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorConst_html_af380c3e759a9df4b85fe64af86f14ae1"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af380c3e759a9df4b85fe64af86f14ae1">BasicBoundaryConditionsInterface::BasicBCVectorConst::tForce</a></div><div class="ttdeci">FTensor::Tensor1< double, 3 > tForce</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00051">BasicBoundaryConditionsInterface.hpp:51</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorConst_html_af38a7892c0854e2db785cc2899eda73e"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorConst.html#af38a7892c0854e2db785cc2899eda73e">BasicBoundaryConditionsInterface::BasicBCVectorConst::BasicBCVectorConst</a></div><div class="ttdeci">BasicBCVectorConst(double scale, FTensor::Tensor1< double, 3 > t_vec)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00040">BasicBoundaryConditionsInterface.hpp:40</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorScale_html"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html">BasicBoundaryConditionsInterface::BasicBCVectorScale</a></div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00054">BasicBoundaryConditionsInterface.hpp:54</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorScale_html_a05c613579e49b80bc8001682efbaf4c0"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#a05c613579e49b80bc8001682efbaf4c0">BasicBoundaryConditionsInterface::BasicBCVectorScale::BasicBCVectorScale</a></div><div class="ttdeci">BasicBCVectorScale(double scale, std::string file_name)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00056">BasicBoundaryConditionsInterface.hpp:56</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorScale_html_aba389d6eab47905f7d711d23f410a534"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#aba389d6eab47905f7d711d23f410a534">BasicBoundaryConditionsInterface::BasicBCVectorScale::sCale</a></div><div class="ttdeci">double sCale</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00055">BasicBoundaryConditionsInterface.hpp:55</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1BasicBCVectorScale_html_ae5ceae1f17ab535f2ba4b1cd9e038ff1"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1BasicBCVectorScale.html#ae5ceae1f17ab535f2ba4b1cd9e038ff1">BasicBoundaryConditionsInterface::BasicBCVectorScale::getVector</a></div><div class="ttdeci">FTensor::Tensor1< double, 3 > getVector(const double time)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00059">BasicBoundaryConditionsInterface.hpp:59</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1LoadScale_html"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1LoadScale.html">BasicBoundaryConditionsInterface::LoadScale</a></div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00073">BasicBoundaryConditionsInterface.hpp:73</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1LoadScale_html_a1287c203ad541d1bce00afddb08594a6"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#a1287c203ad541d1bce00afddb08594a6">BasicBoundaryConditionsInterface::LoadScale::scaleNf</a></div><div class="ttdeci">MoFEMErrorCode scaleNf(const FEMethod *fe, VectorDouble &nf)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00076">BasicBoundaryConditionsInterface.hpp:76</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1LoadScale_html_a9abbab01ddbdbc7c679dd779afce13eb"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#a9abbab01ddbdbc7c679dd779afce13eb">BasicBoundaryConditionsInterface::LoadScale::LoadScale</a></div><div class="ttdeci">LoadScale(double *my_lambda)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00075">BasicBoundaryConditionsInterface.hpp:75</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_1_1LoadScale_html_ab8ff671b8d70840b0c00a07e99b93c07"><div class="ttname"><a href="structBasicBoundaryConditionsInterface_1_1LoadScale.html#ab8ff671b8d70840b0c00a07e99b93c07">BasicBoundaryConditionsInterface::LoadScale::lAmbda</a></div><div class="ttdeci">double * lAmbda</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00074">BasicBoundaryConditionsInterface.hpp:74</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html">BasicBoundaryConditionsInterface</a></div><div class="ttdoc">Set of functions declaring elements and setting operators for basic boundary conditions interface.</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00020">BasicBoundaryConditionsInterface.hpp:20</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a03adf957702ea66dccc40553d8d8be5a"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a03adf957702ea66dccc40553d8d8be5a">BasicBoundaryConditionsInterface::setupSolverFunctionSNES</a></div><div class="ttdeci">MoFEMErrorCode setupSolverFunctionSNES() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00579">BasicBoundaryConditionsInterface.hpp:579</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a0485fb91eed71fd1b42f945d9d305237"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a0485fb91eed71fd1b42f945d9d305237">BasicBoundaryConditionsInterface::BasicBoundaryConditionsInterface</a></div><div class="ttdeci">BasicBoundaryConditionsInterface(MoFEM::Interface &m_field, string postion_field, string mesh_pos_field_name="MESH_NODE_POSITIONS", string problem_name="ELASTIC", string domain_element_name="ELASTIC_FE", bool is_displacement_field=true, bool is_quasi_static=true, double *snes_load_factor=nullptr, bool is_partitioned=true)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00115">BasicBoundaryConditionsInterface.hpp:115</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a05de7d90abd5a1d361dfef1f1022d9a9"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a05de7d90abd5a1d361dfef1f1022d9a9">BasicBoundaryConditionsInterface::snesLambdaLoadFactorPtr</a></div><div class="ttdeci">double * snesLambdaLoadFactorPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00071">BasicBoundaryConditionsInterface.hpp:71</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a0cf4e4f598586c05f198b0242f7e18cf"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a0cf4e4f598586c05f198b0242f7e18cf">BasicBoundaryConditionsInterface::springLhsPtr</a></div><div class="ttdeci">boost::shared_ptr< FaceElementForcesAndSourcesCore > springLhsPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00100">BasicBoundaryConditionsInterface.hpp:100</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a142cd8bd81282b06af4b6184112c1f7c"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a142cd8bd81282b06af4b6184112c1f7c">BasicBoundaryConditionsInterface::getCommandLineParameters</a></div><div class="ttdeci">MoFEMErrorCode getCommandLineParameters() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00132">BasicBoundaryConditionsInterface.hpp:132</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a1c87d530007d46f334cbd17ca5f1f346"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a1c87d530007d46f334cbd17ca5f1f346">BasicBoundaryConditionsInterface::addElementFields</a></div><div class="ttdeci">MoFEMErrorCode addElementFields() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00148">BasicBoundaryConditionsInterface.hpp:148</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a34c782a34af9858d13dde9324424c1e5"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a34c782a34af9858d13dde9324424c1e5">BasicBoundaryConditionsInterface::setupSolverFunction</a></div><div class="ttdeci">MoFEMErrorCode setupSolverFunction(const TSType type=IM)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00441">BasicBoundaryConditionsInterface.hpp:441</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a35394b542c331861cd374925c04cbef8"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a35394b542c331861cd374925c04cbef8">BasicBoundaryConditionsInterface::bIt</a></div><div class="ttdeci">BitRefLevel bIt</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00088">BasicBoundaryConditionsInterface.hpp:88</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a38a117219b0a19887c5d3833d795d948"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a38a117219b0a19887c5d3833d795d948">BasicBoundaryConditionsInterface::~BasicBoundaryConditionsInterface</a></div><div class="ttdeci">~BasicBoundaryConditionsInterface()</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00130">BasicBoundaryConditionsInterface.hpp:130</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a3dadf7dfa7fa2e46b176c2ffe6acdc2c"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a3dadf7dfa7fa2e46b176c2ffe6acdc2c">BasicBoundaryConditionsInterface::isPartitioned</a></div><div class="ttdeci">bool isPartitioned</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00085">BasicBoundaryConditionsInterface.hpp:85</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a3f2761002e9660d71ece0c3e4e00b675"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a3f2761002e9660d71ece0c3e4e00b675">BasicBoundaryConditionsInterface::domainElementName</a></div><div class="ttdeci">const string domainElementName</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00110">BasicBoundaryConditionsInterface.hpp:110</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a4ce66b1703c8f6ef4fa9e68bc6d14bee"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a4ce66b1703c8f6ef4fa9e68bc6d14bee">BasicBoundaryConditionsInterface::OpBodyForce</a></div><div class="ttdeci">FormsIntegrators< DomainEleOp >::Assembly< PETSC >::LinearForm< GAUSS >::OpSource< 1, 3 > OpBodyForce</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00027">BasicBoundaryConditionsInterface.hpp:28</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a5873949cc61dbcee3263d78f8f6dcb6d"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a5873949cc61dbcee3263d78f8f6dcb6d">BasicBoundaryConditionsInterface::setupSolverJacobianTS</a></div><div class="ttdeci">MoFEMErrorCode setupSolverJacobianTS(const TSType type) override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00596">BasicBoundaryConditionsInterface.hpp:596</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a5cee7fb102326dfe6fac290344511f39"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a5cee7fb102326dfe6fac290344511f39">BasicBoundaryConditionsInterface::isQuasiStatic</a></div><div class="ttdeci">bool isQuasiStatic</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00084">BasicBoundaryConditionsInterface.hpp:84</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a5e722725d9aaacfc59e51f7716732c9b"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a5e722725d9aaacfc59e51f7716732c9b">BasicBoundaryConditionsInterface::mField</a></div><div class="ttdeci">MoFEM::Interface & mField</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00068">BasicBoundaryConditionsInterface.hpp:68</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a6560175a14de2a7efdc164e25ea574ec"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a6560175a14de2a7efdc164e25ea574ec">BasicBoundaryConditionsInterface::bodyForceLhsPtr</a></div><div class="ttdeci">boost::shared_ptr< VolumeElementForcesAndSourcesCore > bodyForceLhsPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00103">BasicBoundaryConditionsInterface.hpp:103</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a67bd0abaefe4e7cf70c5b66e3556d995"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a67bd0abaefe4e7cf70c5b66e3556d995">BasicBoundaryConditionsInterface::fluidPressureElementPtr</a></div><div class="ttdeci">boost::shared_ptr< FluidPressure > fluidPressureElementPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00097">BasicBoundaryConditionsInterface.hpp:97</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a71a1a3d01954bc21f011a413c816bb84"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a71a1a3d01954bc21f011a413c816bb84">BasicBoundaryConditionsInterface::springRhsPtr</a></div><div class="ttdeci">boost::shared_ptr< FaceElementForcesAndSourcesCore > springRhsPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00099">BasicBoundaryConditionsInterface.hpp:99</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a779f41c506f1017486f92703e53651fc"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a779f41c506f1017486f92703e53651fc">BasicBoundaryConditionsInterface::isLinear</a></div><div class="ttdeci">bool isLinear</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00086">BasicBoundaryConditionsInterface.hpp:86</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a7a605d84b56aa6bb4c8f2d4ec116fc7b"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a7a605d84b56aa6bb4c8f2d4ec116fc7b">BasicBoundaryConditionsInterface::edge_forces</a></div><div class="ttdeci">boost::ptr_map< std::string, EdgeForce > edge_forces</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00095">BasicBoundaryConditionsInterface.hpp:95</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a7c9301d2fc4dbf797485626f2b53862e"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a7c9301d2fc4dbf797485626f2b53862e">BasicBoundaryConditionsInterface::setupSolverImpl</a></div><div class="ttdeci">MoFEMErrorCode setupSolverImpl(const TSType type=IM)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00453">BasicBoundaryConditionsInterface.hpp:453</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a7d838029ed05594a447a84e16fc15949"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a7d838029ed05594a447a84e16fc15949">BasicBoundaryConditionsInterface::isDisplacementField</a></div><div class="ttdeci">bool isDisplacementField</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00083">BasicBoundaryConditionsInterface.hpp:83</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a84536cd321db5deea71675a5beadbc98"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a84536cd321db5deea71675a5beadbc98">BasicBoundaryConditionsInterface::setOperators</a></div><div class="ttdeci">MoFEMErrorCode setOperators() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00208">BasicBoundaryConditionsInterface.hpp:208</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a84899ab75b898c0e98d04e2d1da0f42e"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a84899ab75b898c0e98d04e2d1da0f42e">BasicBoundaryConditionsInterface::nodal_forces</a></div><div class="ttdeci">boost::ptr_map< std::string, NodalForce > nodal_forces</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00094">BasicBoundaryConditionsInterface.hpp:94</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a85368a8068b6a56e5f2c7fe8ae173d6f"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a85368a8068b6a56e5f2c7fe8ae173d6f">BasicBoundaryConditionsInterface::createElements</a></div><div class="ttdeci">MoFEMErrorCode createElements() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00150">BasicBoundaryConditionsInterface.hpp:150</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a889f24fb50fd43466b8fe60480f0158d"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a889f24fb50fd43466b8fe60480f0158d">BasicBoundaryConditionsInterface::getHistoryParam</a></div><div class="ttdeci">string getHistoryParam(string prefix)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00429">BasicBoundaryConditionsInterface.hpp:429</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a97cd171ab7d75c8920b45458aba303d5"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a97cd171ab7d75c8920b45458aba303d5">BasicBoundaryConditionsInterface::neumann_forces</a></div><div class="ttdeci">boost::ptr_map< std::string, NeumannForcesSurface > neumann_forces</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00093">BasicBoundaryConditionsInterface.hpp:93</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a990492e76414c7cbcc7909490ae6f2c5"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a990492e76414c7cbcc7909490ae6f2c5">BasicBoundaryConditionsInterface::setupSolverFunctionTS</a></div><div class="ttdeci">MoFEMErrorCode setupSolverFunctionTS(const TSType type) override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00590">BasicBoundaryConditionsInterface.hpp:590</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_a9a018b3f961b6236bb2f28b69a9b4c07"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#a9a018b3f961b6236bb2f28b69a9b4c07">BasicBoundaryConditionsInterface::DomainNaturalBC</a></div><div class="ttdeci">NaturalBC< DomainEleOp >::Assembly< PETSC >::LinearForm< GAUSS > DomainNaturalBC</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00029">BasicBoundaryConditionsInterface.hpp:30</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_aa29171a765a61da5835672ce79fc5d25"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#aa29171a765a61da5835672ce79fc5d25">BasicBoundaryConditionsInterface::OpMass</a></div><div class="ttdeci">FormsIntegrators< DomainEleOp >::Assembly< PETSC >::BiLinearForm< GAUSS >::OpMass< 1, 3 > OpMass</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00034">BasicBoundaryConditionsInterface.hpp:35</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_aa46e8e727a996a4b0882b034d410c528"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#aa46e8e727a996a4b0882b034d410c528">BasicBoundaryConditionsInterface::dM</a></div><div class="ttdeci">SmartPetscObj< DM > dM</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00069">BasicBoundaryConditionsInterface.hpp:69</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_aab71f3a6b7d59fb1d8268fb88b12c63d"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#aab71f3a6b7d59fb1d8268fb88b12c63d">BasicBoundaryConditionsInterface::bodyForceRhsPtr</a></div><div class="ttdeci">boost::shared_ptr< VolumeElementForcesAndSourcesCore > bodyForceRhsPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00102">BasicBoundaryConditionsInterface.hpp:102</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_aaff7f92007ba1ccce40f3c2f3ec3e2e8"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#aaff7f92007ba1ccce40f3c2f3ec3e2e8">BasicBoundaryConditionsInterface::addElementsToDM</a></div><div class="ttdeci">MoFEMErrorCode addElementsToDM(SmartPetscObj< DM > dm) override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00405">BasicBoundaryConditionsInterface.hpp:405</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ab651975f24f1b3bdfd75e9ee192410a2"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ab651975f24f1b3bdfd75e9ee192410a2">BasicBoundaryConditionsInterface::OpInertiaForce</a></div><div class="ttdeci">FormsIntegrators< DomainEleOp >::Assembly< PETSC >::LinearForm< GAUSS >::OpBaseTimesVector< 1, 3, 1 > OpInertiaForce</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00036">BasicBoundaryConditionsInterface.hpp:37</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ac538a188f9faa52099555518d3e0460e"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ac538a188f9faa52099555518d3e0460e">BasicBoundaryConditionsInterface::setupSolverJacobian</a></div><div class="ttdeci">MoFEMErrorCode setupSolverJacobian(const TSType type=IM)</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00447">BasicBoundaryConditionsInterface.hpp:447</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ac562410e1f208b4bd5701c11ffca1ab8"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ac562410e1f208b4bd5701c11ffca1ab8">BasicBoundaryConditionsInterface::damperElementPtr</a></div><div class="ttdeci">boost::shared_ptr< KelvinVoigtDamper > damperElementPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00107">BasicBoundaryConditionsInterface.hpp:107</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ac8df8ed9393f5057ddc482de548389d1"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ac8df8ed9393f5057ddc482de548389d1">BasicBoundaryConditionsInterface::dirichletBcPtr</a></div><div class="ttdeci">boost::shared_ptr< DirichletDisplacementBc > dirichletBcPtr</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00106">BasicBoundaryConditionsInterface.hpp:106</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ad4934a8195cac9001ff5318020083801"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ad4934a8195cac9001ff5318020083801">BasicBoundaryConditionsInterface::domainProblemName</a></div><div class="ttdeci">const string domainProblemName</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00109">BasicBoundaryConditionsInterface.hpp:109</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ae422470a235b8376597a789ac46f99c6"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ae422470a235b8376597a789ac46f99c6">BasicBoundaryConditionsInterface::updateElementVariables</a></div><div class="ttdeci">MoFEMErrorCode updateElementVariables() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00426">BasicBoundaryConditionsInterface.hpp:426</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_ae4e434e8ffaaa86df3201d20e68f9c6e"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#ae4e434e8ffaaa86df3201d20e68f9c6e">BasicBoundaryConditionsInterface::DomainEle</a></div><div class="ttdeci">VolumeElementForcesAndSourcesCore DomainEle</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00022">BasicBoundaryConditionsInterface.hpp:22</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_aeae7fbe298d80f4ae4068c5677d130f2"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#aeae7fbe298d80f4ae4068c5677d130f2">BasicBoundaryConditionsInterface::postProcessElement</a></div><div class="ttdeci">MoFEMErrorCode postProcessElement(int step) override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00427">BasicBoundaryConditionsInterface.hpp:427</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_af578a6e60bc81cf01ff642bf3750edce"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#af578a6e60bc81cf01ff642bf3750edce">BasicBoundaryConditionsInterface::positionField</a></div><div class="ttdeci">string positionField</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00090">BasicBoundaryConditionsInterface.hpp:90</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_af6cafea048913697ffa9ea5a7bf5edad"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#af6cafea048913697ffa9ea5a7bf5edad">BasicBoundaryConditionsInterface::meshNodeField</a></div><div class="ttdeci">string meshNodeField</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00091">BasicBoundaryConditionsInterface.hpp:91</a></div></div>
<div class="ttc" id="astructBasicBoundaryConditionsInterface_html_afd5f9425fce68709088d031c89eba1ca"><div class="ttname"><a href="structBasicBoundaryConditionsInterface.html#afd5f9425fce68709088d031c89eba1ca">BasicBoundaryConditionsInterface::setupSolverJacobianSNES</a></div><div class="ttdeci">MoFEMErrorCode setupSolverJacobianSNES() override</div><div class="ttdef"><b>Definition</b> <a href="BasicBoundaryConditionsInterface_8hpp_source.html#l00584">BasicBoundaryConditionsInterface.hpp:584</a></div></div>
<div class="ttc" id="astructGenericElementInterface_html"><div class="ttname"><a href="structGenericElementInterface.html">GenericElementInterface</a></div><div class="ttdoc">Set of functions declaring elements and setting operators for generic element interface.</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2GenericElementInterface_8hpp_source.html#l00013">GenericElementInterface.hpp:13</a></div></div>
<div class="ttc" id="astructGenericElementInterface_html_a858b8a11a013c715fbd001e547ca46f9"><div class="ttname"><a href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9">GenericElementInterface::TSType</a></div><div class="ttdeci">TSType</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2GenericElementInterface_8hpp_source.html#l00016">GenericElementInterface.hpp:16</a></div></div>
<div class="ttc" id="astructGenericElementInterface_html_a858b8a11a013c715fbd001e547ca46f9a229e1f84e5a5616a46bbcacc5d28a83d"><div class="ttname"><a href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a229e1f84e5a5616a46bbcacc5d28a83d">GenericElementInterface::IM</a></div><div class="ttdeci">@ IM</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2GenericElementInterface_8hpp_source.html#l00016">GenericElementInterface.hpp:16</a></div></div>
<div class="ttc" id="astructGenericElementInterface_html_a858b8a11a013c715fbd001e547ca46f9a35bdb73357fc52f72b49fd86fa44eb21"><div class="ttname"><a href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9a35bdb73357fc52f72b49fd86fa44eb21">GenericElementInterface::IM2</a></div><div class="ttdeci">@ IM2</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2GenericElementInterface_8hpp_source.html#l00016">GenericElementInterface.hpp:16</a></div></div>
<div class="ttc" id="astructGenericElementInterface_html_a858b8a11a013c715fbd001e547ca46f9ae496114cc98c871c767a70fd36f82aae"><div class="ttname"><a href="structGenericElementInterface.html#a858b8a11a013c715fbd001e547ca46f9ae496114cc98c871c767a70fd36f82aae">GenericElementInterface::EX</a></div><div class="ttdeci">@ EX</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2GenericElementInterface_8hpp_source.html#l00016">GenericElementInterface.hpp:16</a></div></div>
<div class="ttc" id="astructGenericElementInterface_html_a958e4d737d0734a4e2845814b5da5c57"><div class="ttname"><a href="structGenericElementInterface.html#a958e4d737d0734a4e2845814b5da5c57">GenericElementInterface::mBoundaryMarker</a></div><div class="ttdeci">BcMarkerPtr mBoundaryMarker</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2GenericElementInterface_8hpp_source.html#l00020">GenericElementInterface.hpp:20</a></div></div>
<div class="ttc" id="astructKelvinVoigtDamper_1_1ConstitutiveEquation_html"><div class="ttname"><a href="structKelvinVoigtDamper_1_1ConstitutiveEquation.html">KelvinVoigtDamper::ConstitutiveEquation</a></div><div class="ttdoc">Constitutive model functions.</div><div class="ttdef"><b>Definition</b> <a href="KelvinVoigtDamper_8hpp_source.html#l00043">KelvinVoigtDamper.hpp:43</a></div></div>
<div class="ttc" id="astructMetaEdgeForces_html_a46625c9571b0469a5c4a7aa1c8f6c272"><div class="ttname"><a href="structMetaEdgeForces.html#a46625c9571b0469a5c4a7aa1c8f6c272">MetaEdgeForces::setOperators</a></div><div class="ttdeci">static MoFEMErrorCode setOperators(MoFEM::Interface &m_field, boost::ptr_map< std::string, EdgeForce > &edge_forces, Vec F, const std::string field_name, std::string mesh_node_positions="MESH_NODE_POSITIONS")</div><div class="ttdoc">Set integration point operators.</div><div class="ttdef"><b>Definition</b> <a href="EdgeForce_8hpp_source.html#l00097">EdgeForce.hpp:97</a></div></div>
<div class="ttc" id="astructMetaEdgeForces_html_ad4ba172a5f79e0c41430c6dcecdd95f8"><div class="ttname"><a href="structMetaEdgeForces.html#ad4ba172a5f79e0c41430c6dcecdd95f8">MetaEdgeForces::addElement</a></div><div class="ttdeci">static MoFEMErrorCode addElement(MoFEM::Interface &m_field, const std::string field_name, Range *intersect_ptr=NULL)</div><div class="ttdoc">Add element taking information from NODESET.</div><div class="ttdef"><b>Definition</b> <a href="EdgeForce_8hpp_source.html#l00062">EdgeForce.hpp:62</a></div></div>
<div class="ttc" id="astructMetaNeumannForces_html_ace9c5266987cd42a1d2350e4962e6f1b"><div class="ttname"><a href="structMetaNeumannForces.html#ace9c5266987cd42a1d2350e4962e6f1b">MetaNeumannForces::addNeumannBCElements</a></div><div class="ttdeci">static MoFEMErrorCode addNeumannBCElements(MoFEM::Interface &m_field, const std::string field_name, const std::string mesh_nodals_positions="MESH_NODE_POSITIONS", Range *intersect_ptr=NULL)</div><div class="ttdoc">Declare finite element.</div><div class="ttdef"><b>Definition</b> <a href="SurfacePressure_8cpp_source.html#l01974">SurfacePressure.cpp:1974</a></div></div>
<div class="ttc" id="astructMetaNeumannForces_html_ad0f272e64b6937cc53769ecaa409d8b1"><div class="ttname"><a href="structMetaNeumannForces.html#ad0f272e64b6937cc53769ecaa409d8b1">MetaNeumannForces::setMomentumFluxOperators</a></div><div class="ttdeci">static MoFEMErrorCode setMomentumFluxOperators(MoFEM::Interface &m_field, boost::ptr_map< std::string, NeumannForcesSurface > &neumann_forces, Vec F, const std::string field_name, const std::string mesh_nodals_positions="MESH_NODE_POSITIONS")</div><div class="ttdoc">Set operators to finite elements calculating right hand side vector.</div><div class="ttdef"><b>Definition</b> <a href="SurfacePressure_8cpp_source.html#l02069">SurfacePressure.cpp:2069</a></div></div>
<div class="ttc" id="astructMetaNodalForces_html_a84ba4b4c66e9df18c139cb81808cadc2"><div class="ttname"><a href="structMetaNodalForces.html#a84ba4b4c66e9df18c139cb81808cadc2">MetaNodalForces::setOperators</a></div><div class="ttdeci">static MoFEMErrorCode setOperators(MoFEM::Interface &m_field, boost::ptr_map< std::string, NodalForce > &nodal_forces, Vec F, const std::string field_name)</div><div class="ttdoc">Set integration point operators.</div><div class="ttdef"><b>Definition</b> <a href="NodalForce_8hpp_source.html#l00128">NodalForce.hpp:128</a></div></div>
<div class="ttc" id="astructMetaNodalForces_html_a8e0b96853208e8320b7268f96f4fd8ee"><div class="ttname"><a href="structMetaNodalForces.html#a8e0b96853208e8320b7268f96f4fd8ee">MetaNodalForces::addElement</a></div><div class="ttdeci">static MoFEMErrorCode addElement(MoFEM::Interface &m_field, const std::string field_name, Range *intersect_ptr=NULL)</div><div class="ttdoc">Add element taking information from NODESET.</div><div class="ttdef"><b>Definition</b> <a href="NodalForce_8hpp_source.html#l00092">NodalForce.hpp:92</a></div></div>
<div class="ttc" id="astructMetaSpringBC_html_a07079b9a92cb3a661d2f62bc07bfbdea"><div class="ttname"><a href="structMetaSpringBC.html#a07079b9a92cb3a661d2f62bc07bfbdea">MetaSpringBC::setSpringOperators</a></div><div class="ttdeci">static MoFEMErrorCode setSpringOperators(MoFEM::Interface &m_field, boost::shared_ptr< FaceElementForcesAndSourcesCore > fe_spring_lhs_ptr, boost::shared_ptr< FaceElementForcesAndSourcesCore > fe_spring_rhs_ptr, const std::string field_name, const std::string mesh_nodals_positions="MESH_NODE_POSITIONS", double stiffness_scale=1.)</div><div class="ttdoc">Implementation of spring element. Set operators to calculate LHS and RHS.</div><div class="ttdef"><b>Definition</b> <a href="SpringElement_8cpp_source.html#l01178">SpringElement.cpp:1178</a></div></div>
<div class="ttc" id="astructMetaSpringBC_html_a910c25acc8c3975877acdf922e94bbea"><div class="ttname"><a href="structMetaSpringBC.html#a910c25acc8c3975877acdf922e94bbea">MetaSpringBC::addSpringElements</a></div><div class="ttdeci">static MoFEMErrorCode addSpringElements(MoFEM::Interface &m_field, const std::string field_name, const std::string mesh_nodals_positions="MESH_NODE_POSITIONS")</div><div class="ttdoc">Declare spring element.</div><div class="ttdef"><b>Definition</b> <a href="SpringElement_8cpp_source.html#l01127">SpringElement.cpp:1127</a></div></div>
<div class="ttc" id="astructMethodForForceScaling_html"><div class="ttname"><a href="structMethodForForceScaling.html">MethodForForceScaling</a></div><div class="ttdoc">Class used to scale loads, f.e. in arc-length control.</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2MethodForForceScaling_8hpp_source.html#l00011">MethodForForceScaling.hpp:11</a></div></div>
<div class="ttc" id="astructMoFEM_1_1AddFluxToRhsPipelineImpl_html"><div class="ttname"><a href="structMoFEM_1_1AddFluxToRhsPipelineImpl.html">MoFEM::AddFluxToRhsPipelineImpl</a></div><div class="ttdef"><b>Definition</b> <a href="Natural_8hpp_source.html#l00046">Natural.hpp:46</a></div></div>
<div class="ttc" id="astructMoFEM_1_1BasicMethod_html"><div class="ttname"><a href="structMoFEM_1_1BasicMethod.html">MoFEM::BasicMethod</a></div><div class="ttdoc">Data structure to exchange data between mofem and User Loop Methods.</div><div class="ttdef"><b>Definition</b> <a href="LoopMethods_8hpp_source.html#l00187">LoopMethods.hpp:187</a></div></div>
<div class="ttc" id="astructMoFEM_1_1CoreInterface_html_a174e70b67f4f235d096d3c45d865645b"><div class="ttname"><a href="structMoFEM_1_1CoreInterface.html#a174e70b67f4f235d096d3c45d865645b">MoFEM::CoreInterface::get_moab</a></div><div class="ttdeci">virtual moab::Interface & get_moab()=0</div></div>
<div class="ttc" id="astructMoFEM_1_1DeprecatedCoreInterface_html"><div class="ttname"><a href="structMoFEM_1_1DeprecatedCoreInterface.html">MoFEM::DeprecatedCoreInterface</a></div><div class="ttdoc">Deprecated interface functions.</div><div class="ttdef"><b>Definition</b> <a href="DeprecatedCoreInterface_8hpp_source.html#l00016">DeprecatedCoreInterface.hpp:16</a></div></div>
<div class="ttc" id="astructMoFEM_1_1FEMethod_html"><div class="ttname"><a href="structMoFEM_1_1FEMethod.html">MoFEM::FEMethod</a></div><div class="ttdoc">structure for User Loop Methods on finite elements</div><div class="ttdef"><b>Definition</b> <a href="LoopMethods_8hpp_source.html#l00373">LoopMethods.hpp:373</a></div></div>
<div class="ttc" id="astructMoFEM_1_1OpFluxRhsImpl_html"><div class="ttname"><a href="structMoFEM_1_1OpFluxRhsImpl.html">MoFEM::OpFluxRhsImpl</a></div><div class="ttdef"><b>Definition</b> <a href="Natural_8hpp_source.html#l00039">Natural.hpp:39</a></div></div>
<div class="ttc" id="astructMoFEM_1_1TimeScaleVector_html"><div class="ttname"><a href="structMoFEM_1_1TimeScaleVector.html">MoFEM::TimeScaleVector</a></div><div class="ttdoc">Force scale operator for reading four columns (time and vector)</div><div class="ttdef"><b>Definition</b> <a href="ScalingMethod_8hpp_source.html#l00144">ScalingMethod.hpp:144</a></div></div>
<div class="ttc" id="astructMoFEM_1_1TimeScaleVector_html_ad29a8985a586cc9e31ec2bf168b93ed1"><div class="ttname"><a href="structMoFEM_1_1TimeScaleVector.html#ad29a8985a586cc9e31ec2bf168b93ed1">MoFEM::TimeScaleVector::getVector</a></div><div class="ttdeci">virtual FTensor::Tensor1< double, SPACE_DIM > getVector(const double time)</div><div class="ttdef"><b>Definition</b> <a href="ScalingMethod_8cpp_source.html#l00224">ScalingMethod.cpp:224</a></div></div>
<div class="ttc" id="astructMoFEM_1_1UnknownInterface_html_a7ab248ec45fca778800dcd92e5171beb"><div class="ttname"><a href="structMoFEM_1_1UnknownInterface.html#a7ab248ec45fca778800dcd92e5171beb">MoFEM::UnknownInterface::getInterface</a></div><div class="ttdeci">MoFEMErrorCode getInterface(IFACE *&iface) const</div><div class="ttdoc">Get interface reference to pointer of interface.</div><div class="ttdef"><b>Definition</b> <a href="UnknownInterface_8hpp_source.html#l00093">UnknownInterface.hpp:93</a></div></div>
<div class="ttc" id="astructTimeForceScale_html"><div class="ttname"><a href="structTimeForceScale.html">TimeForceScale</a></div><div class="ttdoc">Force scale operator for reading two columns.</div><div class="ttdef"><b>Definition</b> <a href="tutorials_2src_2TimeForceScale_8hpp_source.html#l00018">TimeForceScale.hpp:18</a></div></div>
</div><!-- fragment --></div><!-- contents -->
<!-- HTML footer for doxygen 1.8.13-->
<!-- start footer part -->
<hr cla ss="footer" />
<style>
img[src="UoGLogo.png"] {
height: 20px;
padding-top: 0px;
padding-right: 1px;
padding-bottom: 3px;
padding-left: 6px;
}
</style>
<address class="footer">
<small>
Generated by
<a href="http://www.doxygen.org/index.html"> Doxygen </a> 1.9.8
and hosted at
<a href="http://www.gla.ac.uk/schools/engineering/">
<img class="footer" src="UoGLogo.png" alt="University of Glasgow" />
</a>
</small>
</address>
</body>
</html>