-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ENH: Adding vtk writer WIP * ENH: Add serial vtk writer to refactor branch * BUG: fix t=0 time dump * BUG: Added missing host to mesh reader * STYLE: Cleaning up commented out code * ENH: Clean up BCs and add RK stage * STYLE: Uncrustify common * STYLE: Uncrustify solvers * ENH: Adding high order mesh builder WIP * ENH: Adding high order mesh generator, WIP * ENH: HO mesh builder builds * ENH: Adding test for reading ensight mesh * BUG: Fix wrong GPU memory access in state writer
- Loading branch information
1 parent
6b88413
commit a2bc65b
Showing
35 changed files
with
24,989 additions
and
1,846 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
92 changes: 92 additions & 0 deletions
92
single-node-refactor/regression_tests/standard_inputs/Sedov_Read_Ensight.yaml
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,92 @@ | ||
# Sedov Test Problem | ||
|
||
dynamic_options: | ||
time_final: 1.0 | ||
dt_min: 1.e-8 | ||
dt_max: 1.e-2 | ||
dt_start: 1.e-5 | ||
cycle_stop: 300000 | ||
|
||
mesh_options: | ||
source: file | ||
file_path: standard_inputs/meshes/mesh_Sedov_16.geo | ||
num_dims: 3 | ||
|
||
|
||
output_options: | ||
timer_output_level: thorough | ||
output_file_format: state | ||
graphics_time_step: 1.0 | ||
|
||
solver_options: | ||
- solver: | ||
method: SGH | ||
|
||
boundary_conditions: | ||
# Tag X plane | ||
- boundary_condition: | ||
solver: SGH | ||
geometry: x_plane | ||
direction: x_dir | ||
value: 0.0 | ||
type: reflected_velocity | ||
|
||
|
||
# Tag Y plane | ||
- boundary_condition: | ||
solver: SGH | ||
geometry: y_plane | ||
direction: y_dir | ||
value: 0.0 | ||
type: reflected_velocity | ||
|
||
# Tag z plane | ||
- boundary_condition: | ||
solver: SGH | ||
geometry: z_plane | ||
direction: z_dir | ||
value: 0.0 | ||
type: reflected_velocity | ||
|
||
materials: | ||
- material: | ||
id: 0 | ||
eos_model_type: decoupled | ||
eos_model: gamma_law_gas | ||
q1: 1.0 | ||
q2: 1.333 | ||
q1ex: 1.0 | ||
q2ex: 1.333 | ||
eos_global_vars: | ||
- 1.666666666666667 | ||
- 1.0E-14 | ||
- 1.0 | ||
|
||
regions: | ||
- fill_volume: | ||
type: global | ||
material_id: 0 | ||
den: 1.0 | ||
sie: 1.e-14 | ||
velocity: cartesian | ||
u: 0.0 | ||
v: 0.0 | ||
w: 0.0 | ||
|
||
|
||
|
||
# energy source initial conditions | ||
- fill_volume: | ||
type: sphere | ||
origin: [0.0, 0.0, 0.0] | ||
radius1: 0.0 | ||
radius2: 0.1 | ||
material_id: 0 | ||
den: 1.0 | ||
sie: 61.67375002 | ||
velocity: cartesian | ||
u: 0.0 | ||
v: 0.0 | ||
w: 0.0 | ||
|
||
|
Oops, something went wrong.