Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change FriersonDiffusion to DecayWithHeightDiffusion #1171

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/benchmark_configs/climaatmos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ rad: allskywithclear
surface_setup: DefaultMoninObukhov
t_end: 12hours
turb_flux_partition: "CombinedStateFluxesMOST"
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
z_elem: 63
z_max: 55000.0
2 changes: 1 addition & 1 deletion config/longrun_configs/slabplanet_aqua_atmos_sf_couple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ surface_setup: "DefaultMoninObukhov"
t_end: "20days"
turb_flux_partition: "CombinedStateFluxesMOST"
use_land_diagnostics: false
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ surface_setup: "DefaultMoninObukhov"
t_end: "20days"
turb_flux_partition: "CombinedStateFluxesMOST"
use_land_diagnostics: false
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
2 changes: 1 addition & 1 deletion config/longrun_configs/slabplanet_aqua_coupler_sf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ surface_setup: "PrescribedSurface"
t_end: "20days"
turb_flux_partition: "CombinedStateFluxesMOST"
use_land_diagnostics: false
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ surface_setup: "PrescribedSurface"
t_end: "20days"
turb_flux_partition: "CombinedStateFluxesMOST"
use_land_diagnostics: false
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
2 changes: 1 addition & 1 deletion config/longrun_configs/slabplanet_terra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ start_date: "20100101"
surface_setup: "PrescribedSurface"
t_end: "20days"
turb_flux_partition: "CombinedStateFluxesMOST"
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
2 changes: 1 addition & 1 deletion experiments/ClimaEarth/run_cloudless_aquaplanet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ config_dict = Dict(
"apply_limiter" => false,
"viscous_sponge" => false,
"rayleigh_sponge" => false,
"vert_diff" => "FriersonDiffusion",
"vert_diff" => "DecayWithHeightDiffusion",
"hyperdiff" => "CAM_SE",
# run
"surface_setup" => "PrescribedSurface",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rayleigh_sponge: true
surface_setup: "DefaultMoninObukhov"
t_end: "120days"
coupler_toml: ["test/component_model_tests/climaatmos_standalone/longrun_aquaplanet.toml"]
vert_diff: "FriersonDiffusion"
vert_diff: "DecayWithHeightDiffusion"
z_elem: 63
z_max: 55000.0
output_default_diagnostics: false
Loading