-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix box refinement with restart (#1184)
Description Box refinement was applied when restarting simulations, changing the restarting triangulation and leading to undesirable behavior. Solution A boolean stating if the simulation restarts is now checked before applying the box refinement in box_refine_mesh(const bool &restart). Testing A new test simulate the lpbf benchmark case using the extra-extra-coarse mesh with restart and box refinement. Temperature statistics and mass conservation monitoring are the outputted metrics (to track both the change in HT and NS-VOF solvers). Documentation No documentation needs to be modify. Former-commit-id: 64885a4
- Loading branch information
Showing
18 changed files
with
872 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
$MeshFormat | ||
2.2 0 8 | ||
$EndMeshFormat | ||
|
||
$Nodes | ||
25 | ||
1 0 0 0 | ||
2 0.15 0 0 | ||
3 0.3 0 0 | ||
4 0.45 0 0 | ||
5 0.6 0 0 | ||
6 0 0.15 0 | ||
7 0.1499999999999999 0.15 0 | ||
8 0.2999999999999999 0.15 0 | ||
9 0.45 0.15 0 | ||
10 0.6 0.15 0 | ||
11 0 0.3 0 | ||
12 0.15 0.3 0 | ||
13 0.3 0.3000000000000001 0 | ||
14 0.45 0.3 0 | ||
15 0.6 0.3 0 | ||
16 0 0.45 0 | ||
17 0.15 0.45 0 | ||
18 0.3 0.45 0 | ||
19 0.45 0.45 0 | ||
20 0.6 0.45 0 | ||
21 0 0.6 0 | ||
22 0.15 0.6 0 | ||
23 0.3 0.6 0 | ||
24 0.45 0.6 0 | ||
25 0.6 0.6 0 | ||
$EndNodes | ||
|
||
$Elements | ||
32 | ||
1 3 2 1 1 1 2 7 6 | ||
2 3 2 1 1 2 3 8 7 | ||
3 3 2 1 1 3 4 9 8 | ||
4 3 2 1 1 4 5 10 9 | ||
5 3 2 1 1 6 7 12 11 | ||
6 3 2 1 1 7 8 13 12 | ||
7 3 2 1 1 8 9 14 13 | ||
8 3 2 1 1 9 10 15 14 | ||
9 3 2 1 1 11 12 17 16 | ||
10 3 2 1 1 12 13 18 17 | ||
11 3 2 1 1 13 14 19 18 | ||
12 3 2 1 1 14 15 20 19 | ||
13 3 2 1 1 16 17 22 21 | ||
14 3 2 1 1 17 18 23 22 | ||
15 3 2 1 1 18 19 24 23 | ||
16 3 2 1 1 19 20 25 24 | ||
17 1 2 2 2 1 2 | ||
18 1 2 2 2 2 3 | ||
19 1 2 2 2 3 4 | ||
20 1 2 2 2 4 5 | ||
21 1 2 3 3 16 11 | ||
22 1 2 3 3 11 6 | ||
23 1 2 3 3 6 1 | ||
24 1 2 4 4 21 16 | ||
25 1 2 5 5 5 10 | ||
26 1 2 5 5 10 15 | ||
27 1 2 5 5 15 20 | ||
28 1 2 6 6 20 25 | ||
29 1 2 7 7 25 24 | ||
30 1 2 7 7 24 23 | ||
31 1 2 7 7 23 22 | ||
32 1 2 7 7 22 21 | ||
$EndElements | ||
|
||
$PhysicalNames | ||
6 | ||
1 2 "bottom" | ||
1 3 "left_bottom" | ||
1 4 "left_top" | ||
1 5 "right_bottom" | ||
1 6 "right_top" | ||
1 7 "top" | ||
$EndPhysicalNames |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.