-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for TET14 elements in relevant modules (#25838)
- Loading branch information
Showing
16 changed files
with
204 additions
and
14 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
modules/heat_transfer/test/tests/directional_flux_bc/gold/3d_tet14.csv
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,3 @@ | ||
time,light | ||
0,0 | ||
0.01,0.16229642731081 |
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
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
3 changes: 3 additions & 0 deletions
3
modules/ray_tracing/test/tests/traceray/tet14/gold/centroid_aq_out.csv
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,3 @@ | ||
time,distance_difference,expected_distance,total_distance | ||
0,0,0,0 | ||
1,0,4634.7221896827,4634.7221896827 |
3 changes: 3 additions & 0 deletions
3
modules/ray_tracing/test/tests/traceray/tet14/gold/ctc_out.csv
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,3 @@ | ||
time,distance_difference,expected_distance,total_distance | ||
0,0,0,0 | ||
1,0,193350.92635802,193350.92635802 |
3 changes: 3 additions & 0 deletions
3
modules/ray_tracing/test/tests/traceray/tet14/gold/ctv_out.csv
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,3 @@ | ||
time,distance_difference,expected_distance,total_distance | ||
0,0,0,0 | ||
1,3.4106051316485e-13,1009.5543571299,1009.5543571299 |
3 changes: 3 additions & 0 deletions
3
modules/ray_tracing/test/tests/traceray/tet14/gold/ete_out.csv
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,3 @@ | ||
time,distance_difference,expected_distance,total_distance | ||
0,0,0,0 | ||
1,0,11020.49719605,11020.49719605 |
3 changes: 3 additions & 0 deletions
3
modules/ray_tracing/test/tests/traceray/tet14/gold/side_aq_out.csv
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,3 @@ | ||
time,distance_difference,expected_distance,total_distance | ||
0,0,0,0 | ||
1,0,7002.2125376021,7002.2125376021 |
3 changes: 3 additions & 0 deletions
3
modules/ray_tracing/test/tests/traceray/tet14/gold/vtv_out.csv
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,3 @@ | ||
time,distance_difference,expected_distance,total_distance | ||
0,0,0,0 | ||
1,0,3019.8969044772,3019.8969044772 |
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,121 @@ | ||
[Tests] | ||
design = 'RayTracingStudy.md' | ||
issues = '#16028' | ||
|
||
[tests] | ||
requirement = 'The system shall be able to trace rays within planar TET14 elements ' | ||
[vtv] | ||
type = 'CSVDiff' | ||
input = '../lots.i' | ||
csvdiff = 'vtv_out.csv' | ||
cli_args = 'Mesh/gmg/dim=3 | ||
Mesh/gmg/nx=3 | ||
Mesh/gmg/ny=3 | ||
Mesh/gmg/nz=3 | ||
Mesh/gmg/elem_type=tet14 | ||
UserObjects/lots/vertex_to_vertex=true | ||
Outputs/file_base=vtv_out | ||
RayBCs/active=kill_3d' | ||
allow_test_objects = true | ||
abs_zero = 1e-8 | ||
method = '!dbg' | ||
|
||
detail = 'from boundary vertices on boundary sides in the direction of the vertices on the other side of the same boundary element, ' | ||
[] | ||
|
||
[ctv] | ||
type = 'CSVDiff' | ||
input = '../lots.i' | ||
csvdiff = 'ctv_out.csv' | ||
cli_args = 'Mesh/gmg/dim=3 | ||
Mesh/gmg/nx=3 | ||
Mesh/gmg/ny=3 | ||
Mesh/gmg/nz=3 | ||
Mesh/gmg/elem_type=tet14 | ||
UserObjects/lots/centroid_to_vertex=true | ||
Outputs/file_base=ctv_out | ||
RayBCs/active=kill_3d' | ||
allow_test_objects = true | ||
abs_zero = 1e-8 | ||
method = '!dbg' | ||
|
||
detail = 'from the centroids of boundary sides in the direction of all other vertices in the same boundary element, ' | ||
[] | ||
|
||
[ctc] | ||
type = 'CSVDiff' | ||
input = '../lots.i' | ||
csvdiff = 'ctc_out.csv' | ||
cli_args = 'Mesh/gmg/dim=3 | ||
Mesh/gmg/nx=3 | ||
Mesh/gmg/ny=3 | ||
Mesh/gmg/nz=3 | ||
Mesh/gmg/elem_type=tet14 | ||
UserObjects/lots/centroid_to_centroid=true | ||
Outputs/file_base=ctc_out | ||
RayBCs/active=kill_3d' | ||
allow_test_objects = true | ||
abs_zero = 1e-8 | ||
method = '!dbg' | ||
|
||
detail = 'from the centroids of all boundary sides to the centroids of all other boundary elements, ' | ||
[] | ||
|
||
[ete] | ||
type = 'CSVDiff' | ||
input = '../lots.i' | ||
csvdiff = 'ete_out.csv' | ||
cli_args = 'Mesh/gmg/dim=3 | ||
Mesh/gmg/nx=3 | ||
Mesh/gmg/ny=3 | ||
Mesh/gmg/nz=3 | ||
Mesh/gmg/elem_type=tet14 | ||
UserObjects/lots/edge_to_edge=true | ||
Outputs/file_base=ete_out | ||
RayBCs/active=kill_3d' | ||
allow_test_objects = true | ||
abs_zero = 1e-8 | ||
method = '!dbg' | ||
|
||
detail = 'from the centroids of boundary edges in the direction of all other edge centroids in the same element, ' | ||
[] | ||
|
||
[side_aq] | ||
type = 'CSVDiff' | ||
input = '../lots.i' | ||
csvdiff = 'side_aq_out.csv' | ||
cli_args = 'Mesh/gmg/dim=3 | ||
Mesh/gmg/nx=3 | ||
Mesh/gmg/ny=3 | ||
Mesh/gmg/nz=3 | ||
Mesh/gmg/elem_type=tet14 | ||
UserObjects/lots/side_aq=true | ||
Outputs/file_base=side_aq_out | ||
RayBCs/active=kill_3d' | ||
allow_test_objects = true | ||
abs_zero = 1e-8 | ||
method = '!dbg' | ||
|
||
detail = 'from boundary sides centroids using an angular quadrature, ' | ||
[] | ||
|
||
[centroid_aq] | ||
type = 'CSVDiff' | ||
input = '../lots.i' | ||
csvdiff = 'centroid_aq_out.csv' | ||
cli_args = 'Mesh/gmg/dim=3 | ||
Mesh/gmg/nx=3 | ||
Mesh/gmg/ny=3 | ||
Mesh/gmg/nz=3 | ||
Mesh/gmg/elem_type=tet14 | ||
UserObjects/lots/centroid_aq=true | ||
Outputs/file_base=centroid_aq_out | ||
RayBCs/active=kill_3d' | ||
allow_test_objects = true | ||
abs_zero = 1e-8 | ||
method = '!dbg' | ||
|
||
detail = 'and from boundary element centroids using an angular quadrature.' | ||
[] | ||
[] | ||
[] |
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
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
Binary file added
BIN
+299 KB
modules/xfem/test/tests/high_order_elements/gold/diffusion_3d_tet14_out.e
Binary file not shown.
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