Skip to content

Commit a4fa008

Browse files
authored
Merge pull request #3818 from CliMA/ck/bugfix
Fix viscous sponge
2 parents c521452 + 627be2a commit a4fa008

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

reproducibility_tests/ref_counter.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
239
1+
240
22

33
# **README**
44
#
@@ -20,6 +20,9 @@
2020

2121

2222
#=
23+
240
24+
- Fix a bug in viscous sponge
25+
2326
239
2427
- Update mixing length formulation
2528

src/prognostic_equations/remaining_tendency.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ NVTX.@annotate function additional_tendency!(Yₜ, Y, p, t)
3838

3939
(; ᶜh_tot, ᶜspecific) = p.precomputed
4040
ᶜuₕ = Y.c.uₕ
41-
ᶠu₃ = Yₜ.f.u₃
41+
ᶠu₃ = Y.f.u₃
4242
ᶜρ = Y.c.ρ
4343
(; forcing_type, moisture_model, rayleigh_sponge, viscous_sponge) = p.atmos
4444
(; ls_adv, edmf_coriolis) = p.atmos

0 commit comments

Comments
 (0)