-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
125 additions
and
1 deletion.
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
56 changes: 56 additions & 0 deletions
56
...ts/input_files/tHYDROSYSTEMSodShockTube_OneDimensionalCorrectInputExpectCorrectOutput.txt
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,56 @@ | ||
# | ||
# Parameter File for 1D Sod Shock tube | ||
# | ||
|
||
################################################ | ||
# number of grid cells in the x dimension | ||
nx=64 | ||
# number of grid cells in the y dimension | ||
ny=1 | ||
# number of grid cells in the z dimension | ||
nz=1 | ||
# final output time | ||
tout=0.2 | ||
# time interval for output | ||
outstep=0.2 | ||
# name of initial conditions | ||
init=Riemann | ||
# domain properties | ||
xmin=0.0 | ||
ymin=0.0 | ||
zmin=0.0 | ||
xlen=1.0 | ||
ylen=1.0 | ||
zlen=1.0 | ||
# type of boundary conditions | ||
xl_bcnd=3 | ||
xu_bcnd=3 | ||
yl_bcnd=3 | ||
yu_bcnd=3 | ||
zl_bcnd=3 | ||
zu_bcnd=3 | ||
# path to output directory | ||
outdir=./ | ||
|
||
################################################# | ||
# Parameters for 1D Riemann problems | ||
# density of left state | ||
rho_l=1.0 | ||
# velocity of left state | ||
vx_l=0.0 | ||
vy_l=0.0 | ||
vz_l=0.0 | ||
# pressure of left state | ||
P_l=1.0 | ||
# density of right state | ||
rho_r=0.1 | ||
# velocity of right state | ||
vx_r=0.0 | ||
vy_r=0.0 | ||
vz_r=0.0 | ||
# pressure of right state | ||
P_r=0.1 | ||
# location of initial discontinuity | ||
diaph=0.5 | ||
# value of gamma | ||
gamma=1.4 |
56 changes: 56 additions & 0 deletions
56
...ts/input_files/tHYDROSYSTEMSodShockTube_TwoDimensionalCorrectInputExpectCorrectOutput.txt
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,56 @@ | ||
# | ||
# Parameter File for 1D Sod Shock tube | ||
# | ||
|
||
################################################ | ||
# number of grid cells in the x dimension | ||
nx=64 | ||
# number of grid cells in the y dimension | ||
ny=64 | ||
# number of grid cells in the z dimension | ||
nz=1 | ||
# final output time | ||
tout=0.2 | ||
# time interval for output | ||
outstep=0.2 | ||
# name of initial conditions | ||
init=Riemann | ||
# domain properties | ||
xmin=0.0 | ||
ymin=0.0 | ||
zmin=0.0 | ||
xlen=1.0 | ||
ylen=1.0 | ||
zlen=1.0 | ||
# type of boundary conditions | ||
xl_bcnd=3 | ||
xu_bcnd=3 | ||
yl_bcnd=3 | ||
yu_bcnd=3 | ||
zl_bcnd=3 | ||
zu_bcnd=3 | ||
# path to output directory | ||
outdir=./ | ||
|
||
################################################# | ||
# Parameters for 1D Riemann problems | ||
# density of left state | ||
rho_l=1.0 | ||
# velocity of left state | ||
vx_l=0.0 | ||
vy_l=0.0 | ||
vz_l=0.0 | ||
# pressure of left state | ||
P_l=1.0 | ||
# density of right state | ||
rho_r=0.1 | ||
# velocity of right state | ||
vx_r=0.0 | ||
vy_r=0.0 | ||
vz_r=0.0 | ||
# pressure of right state | ||
P_r=0.1 | ||
# location of initial discontinuity | ||
diaph=0.5 | ||
# value of gamma | ||
gamma=1.4 |