Skip to content

Commit

Permalink
increase resolution of output
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdeck committed Jan 30, 2025
1 parent d9da42a commit 7fa57c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion experiments/long_runs/bucket.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function setup_prob(t0, tf, Δt; outdir = outdir, nelements = (101, 7))
subsurface_space,
outdir;
start_date,
num_points = (720,360,50)
num_points = (720, 360, 50),
)

diags = ClimaLand.default_diagnostics(
Expand Down
1 change: 1 addition & 0 deletions experiments/long_runs/land.jl
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ function setup_prob(t0, tf, Δt; outdir = outdir, nelements = (101, 15))
subsurface_space,
outdir;
start_date,
num_points = (720, 360, 50), # use default in `z`.
)

diags = ClimaLand.default_diagnostics(
Expand Down
1 change: 1 addition & 0 deletions experiments/long_runs/land_region.jl
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ function setup_prob(t0, tf, Δt; outdir = outdir, nelements = (10, 10, 15))
subsurface_space,
outdir;
start_date,
num_points = n_elements,
)

diags = ClimaLand.default_diagnostics(
Expand Down
2 changes: 1 addition & 1 deletion experiments/long_runs/snowy_land.jl
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ function setup_prob(t0, tf, Δt; outdir = outdir, nelements = (101, 15))
subsurface_space,
outdir;
start_date,
num_points = (720, 360, 50) # use default in `z`.
num_points = (720, 360, 50), # use default in `z`.
)

diags = ClimaLand.default_diagnostics(
Expand Down
1 change: 1 addition & 0 deletions experiments/long_runs/soil.jl
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ function setup_prob(t0, tf, Δt; outdir = outdir, nelements = (101, 15))
subsurface_space,
outdir;
start_date,
num_points = (720, 360, 50), # use default in `z`.
)

diags = ClimaLand.default_diagnostics(
Expand Down

0 comments on commit 7fa57c1

Please sign in to comment.