-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 3d pipe flow; test, mesh, write-up (#579)
- Loading branch information
Showing
19 changed files
with
423 additions
and
16 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
Binary file modified
BIN
-193 Bytes
(100%)
reg_tests/test_files/laboratory/2d_quad4_channel/write_up/2d_quad4_channel_laboratory.pdf
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
2 changes: 2 additions & 0 deletions
2
reg_tests/test_files/laboratory/2d_quad4_channel/write_up/Makefile
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
|
||
all: | ||
pdflatex 2d_quad4_channel_laboratory | ||
pdflatex 2d_quad4_channel_laboratory | ||
pdflatex 2d_quad4_channel_laboratory | ||
|
||
clean: | ||
-rm -f *.aux *.log *.dvi *.bbl *.blg *~ |
Binary file modified
BIN
-46 Bytes
(100%)
reg_tests/test_files/laboratory/2d_quad9_couette/write_up/2d_quad9_couette_laboratory.pdf
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
2 changes: 2 additions & 0 deletions
2
reg_tests/test_files/laboratory/2d_quad9_couette/write_up/Makefile
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
|
||
all: | ||
pdflatex 2d_quad9_couette_laboratory | ||
pdflatex 2d_quad9_couette_laboratory | ||
pdflatex 2d_quad9_couette_laboratory | ||
|
||
clean: | ||
-rm -f *.aux *.log *.dvi *.bbl *.blg *~ |
Binary file modified
BIN
-111 Bytes
(100%)
reg_tests/test_files/laboratory/3d_hex8_open_jet/write_up/3d_hex8_open_jet_laboratory.pdf
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
2 changes: 2 additions & 0 deletions
2
reg_tests/test_files/laboratory/3d_hex8_open_jet/write_up/Makefile
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
|
||
all: | ||
pdflatex 3d_hex8_open_jet_laboratory | ||
pdflatex 3d_hex8_open_jet_laboratory | ||
pdflatex 3d_hex8_open_jet_laboratory | ||
|
||
clean: | ||
-rm -f *.aux *.log *.dvi *.bbl *.blg *~ |
143 changes: 143 additions & 0 deletions
143
reg_tests/test_files/laboratory/3d_tet4_pipe/3d_tet4_pipe.i
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,143 @@ | ||
Simulations: | ||
- name: sim1 | ||
|
||
linear_solvers: | ||
|
||
- name: solve_scalar | ||
type: tpetra | ||
method: gmres | ||
preconditioner: sgs | ||
tolerance: 1e-5 | ||
max_iterations: 50 | ||
kspace: 50 | ||
output_level: 0 | ||
|
||
- name: solve_cont | ||
type: tpetra | ||
method: gmres | ||
preconditioner: muelu | ||
tolerance: 1e-5 | ||
max_iterations: 100 | ||
kspace: 100 | ||
output_level: 0 | ||
recompute_preconditioner: no | ||
muelu_xml_file_name: ../../../xml/milestone.xml | ||
|
||
realms: | ||
|
||
- name: fluidRealm | ||
mesh: mesh/3d_tet4_pipe.exo | ||
use_edges: no | ||
automatic_decomposition_type: rcb | ||
|
||
time_step_control: | ||
target_courant: 2.0 | ||
time_step_change_factor: 1.2 | ||
|
||
equation_systems: | ||
name: theEqSys | ||
max_iterations: 1 | ||
solver_system_specification: | ||
velocity: solve_scalar | ||
pressure: solve_cont | ||
|
||
systems: | ||
|
||
- LowMachEOM: | ||
name: myLowMach | ||
max_iterations: 1 | ||
convergence_tolerance: 1e-8 | ||
|
||
initial_conditions: | ||
|
||
- constant: ic_1 | ||
target_name: block_1 | ||
value: | ||
pressure: 0.0 | ||
velocity: [0.0,0.0,0.0] | ||
material_properties: | ||
|
||
target_name: block_1 | ||
|
||
specifications: | ||
- name: density | ||
type: constant | ||
value: 1.0 | ||
|
||
- name: viscosity | ||
type: constant | ||
value: 1.0e-3 | ||
|
||
boundary_conditions: | ||
|
||
- open_boundary_condition: bc_left | ||
target_name: surface_2 | ||
open_user_data: | ||
pressure: 40.0 | ||
velocity: [0.0,0.0,0.0] | ||
|
||
- open_boundary_condition: bc_right | ||
target_name: surface_1 | ||
open_user_data: | ||
pressure: 0.0 | ||
velocity: [0.0,0.0,0.0] | ||
|
||
- wall_boundary_condition: bc_wall | ||
target_name: surface_3 | ||
wall_user_data: | ||
velocity: [0.0,0.0,0.0] | ||
|
||
solution_options: | ||
name: myOptions | ||
turbulence_model: laminar | ||
|
||
use_consolidated_solver_algorithm: yes | ||
use_consolidated_face_elem_bc_algorithm: yes | ||
|
||
options: | ||
- element_source_terms: | ||
momentum: [lumped_momentum_time_derivative, advection_diffusion] | ||
continuity: advection | ||
|
||
- projected_nodal_gradient: | ||
pressure: element | ||
velocity: element | ||
|
||
post_processing: | ||
- type: surface | ||
physics: surface_force_and_moment | ||
output_file_name: 3d_tet4_pipe.dat | ||
frequency: 1 | ||
parameters: [0.0,0.0,0.0] | ||
target_name: [surface_3] | ||
|
||
output: | ||
output_data_base_name: output/3d_tet4_pipe.e | ||
output_frequency: 10 | ||
output_node_set: no | ||
output_variables: | ||
- velocity | ||
- pressure | ||
- dpdx | ||
- viscosity | ||
- density | ||
- tau_wall | ||
|
||
Time_Integrators: | ||
- StandardTimeIntegrator: | ||
name: ti_1 | ||
start_time: 0 | ||
termination_step_count: 20 | ||
time_step: 0.0001 | ||
time_stepping_type: adaptive | ||
time_step_count: 0 | ||
second_order_accuracy: no | ||
|
||
realms: | ||
- fluidRealm |
20 changes: 20 additions & 0 deletions
20
reg_tests/test_files/laboratory/3d_tet4_pipe/3d_tet4_pipe.norm.gold
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,20 @@ | ||
0.007073272807121407 1 0.00012 | ||
0.0008570044281100752 2 0.000264 | ||
0.0002776054675452662 3 0.0004368 | ||
0.0001436606782954027 4 0.00064416 | ||
7.805589617375884e-05 5 0.000892992 | ||
3.859668091837489e-05 6 0.00119159 | ||
2.134345852413653e-05 7 0.00154991 | ||
1.3361438657162e-05 8 0.00197989 | ||
8.438163091291819e-06 9 0.00249587 | ||
5.269030565843482e-06 10 0.00311504 | ||
3.395504180506686e-06 11 0.00385805 | ||
2.459417221016597e-06 12 0.00474966 | ||
2.140824817798169e-06 13 0.00581959 | ||
2.108411955455556e-06 14 0.00710351 | ||
2.124969201267307e-06 15 0.00864421 | ||
2.004313167995332e-06 16 0.0100067 | ||
1.800562092311465e-06 17 0.0112068 | ||
1.504720490455237e-06 18 0.0122982 | ||
1.235142042677227e-06 19 0.0133104 | ||
1.015023029557289e-06 20 0.0142615 |
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+463 KB
reg_tests/test_files/laboratory/3d_tet4_pipe/write_up/3d_tet4_pipe_laboratory.pdf
Binary file not shown.
Oops, something went wrong.