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

8: fix nonconcurrent radiation clock #121

Merged
merged 1 commit into from
Jun 6, 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
4 changes: 2 additions & 2 deletions full/coupler_main.F90
Original file line number Diff line number Diff line change
Expand Up @@ -567,9 +567,9 @@ program coupler_main

! ---- SERIAL atmosphere radiation ----
if (.not.do_concurrent_radiation) then
call fms_mpp_clock_begin(coupler_clocks%concurrent_radiation)
call fms_mpp_clock_begin(coupler_clocks%serial_radiation)
call update_atmos_model_radiation( Land_ice_atmos_boundary, Atm )
call fms_mpp_clock_end(coupler_clocks%concurrent_radiation)
call fms_mpp_clock_end(coupler_clocks%serial_radiation)
endif
if (do_chksum) call atmos_ice_land_chksum('update_atmos_model_radiation(ser)', (nc-1)*num_atmos_calls+na, &
Atm, Land, Ice, Land_ice_atmos_boundary, Atmos_ice_boundary, Atmos_land_boundary)
Expand Down
Loading