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

add info for CAM_SE hyperdiffusion #3195

Merged
merged 1 commit into from
Jul 16, 2024
Merged
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
3 changes: 3 additions & 0 deletions src/solver/model_getters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ function get_hyperdiffusion_model(parsed_args, ::Type{FT}) where {FT}
# https://agupubs.onlinelibrary.wiley.com/doi/epdf/10.1029/2017MS001257
# for equation A18 and A19
# Need to scale by (1.1e5 / (sqrt(4 * pi / 6) * 6.371e6 / (3*30)) )^3 ≈ 1.238
@info "Using CAM_SE hyperdiffusion. vorticity_hyperdiffusion_coefficient, \
scalar_hyperdiffusion_coefficient and divergence_damping_factor in the config \
will be ignored."
ν₄_vorticity_coeff = FT(0.150 * 1.238)
ν₄_scalar_coeff = FT(0.751 * 1.238)
divergence_damping_factor = FT(5)
Expand Down
Loading