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

set no2 to 0 #3526

Merged
merged 1 commit into from
Jan 18, 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
5 changes: 4 additions & 1 deletion reproducibility_tests/ref_counter.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
199
200

# **README**
#
Expand All @@ -20,6 +20,9 @@


#=
200
- Set NO2 in radiation to zero because there is potentially a bug in RRTMGP

199
- Moved CI to Julia 1.11

Expand Down
2 changes: 1 addition & 1 deletion src/parameterized_tendencies/radiation/radiation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function radiation_model_cache(
volume_mixing_ratio_hfc32 = input_vmr("hfc32_GM"),
volume_mixing_ratio_hfc134a = input_vmr("hfc134a_GM"),
volume_mixing_ratio_cf4 = input_vmr("cf4_GM"),
volume_mixing_ratio_no2 = 1e-8, # not available in input_data
volume_mixing_ratio_no2 = 0, # not available in input_data
latitude,
)
if !(radiation_mode isa RRTMGPI.ClearSkyRadiation)
Expand Down
Loading