Skip to content

Commit

Permalink
update convection inputs
Browse files Browse the repository at this point in the history
this is now periodic on the sides
adds a small_dens
and a new inputs that is twice as wide
  • Loading branch information
zingale committed Jan 26, 2025
1 parent 9f4e61b commit 140695a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyro/compressible/problems/inputs.convection
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[driver]
max_steps = 10000
tmax = 10.0
tmax = 25.0


[io]
Expand All @@ -17,8 +17,8 @@ ny = 384
xmax = 4.0
ymax = 12.0

xlboundary = outflow
xrboundary = outflow
xlboundary = periodic
xrboundary = periodic

ylboundary = reflect
yrboundary = ambient
Expand All @@ -39,3 +39,5 @@ do_sponge = 1
grav = -2.0

limiter = 2

small_dens = 1.e-4
43 changes: 43 additions & 0 deletions pyro/compressible/problems/inputs.convection.big
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# simple inputs files for the four-corner problem.

[driver]
max_steps = 10000
tmax = 25.0


[io]
basename = convection_
n_out = 100000000
dt_out = 0.5


[mesh]
nx = 256
ny = 384
xmax = 8.0
ymax = 12.0

xlboundary = periodic
xrboundary = periodic

ylboundary = reflect
yrboundary = ambient


[convection]
scale_height = 2.0
dens_base = 1000.0
dens_cutoff = 1.e-3

e_rate = 0.5


[sponge]
do_sponge = 1

[compressible]
grav = -2.0

limiter = 2

small_dens = 1.e-4

0 comments on commit 140695a

Please sign in to comment.