Skip to content

Commit

Permalink
update changelog and remove debug macro
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored and rem1776 committed Jul 8, 2024
1 parent 332ad0d commit 408f90d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ sequential patch number (starting from `01`).
were written by default.
- FMS2_io does not do this. Users can specify real long_names and units by calling register_variable_attribute.
### Removed
- FMS_io was almost completely removed from FMScoupler and replaced with fms2_io.
- FMS_io was almost completely removed from FMScoupler and replaced with fms2_io
- The only remaining usage is `fms_io_exit` calls. These calls are made at the end of each coupler driver and only called if the CPP macro `use_deprecated_io` is set.
### Tag Commit Hashes
- 2021.02-alpha1 (c1c8044a6c3efb8ddbbd01a3769bbf2610b34937)
- 2021.02-alpha2 (c1c8044a6c3efb8ddbbd01a3769bbf2610b34937)
Expand Down
8 changes: 0 additions & 8 deletions simple/flux_exchange.F90
Original file line number Diff line number Diff line change
Expand Up @@ -617,14 +617,6 @@ subroutine flux_up_to_atmos (Time, Land, Ice, Boundary )
Boundary%dt_tr(:,:,isphum) = f_q_delt_n + dt_t_surf*e_q_n
endwhere

#ifdef DEBUG_COUPLER_FLUX_TO_ATMOS
print *, 'PE,dt_t(L)(mn,mx)=',fms_mpp_pe(),minval(Boundary%dt_t,mask=Land%mask(:,:,1)), &
maxval(Boundary%dt_t,mask=Land%mask(:,:,1))
print *, 'PE,dt_q(L)(mn,mx)=',fms_mpp_pe(),minval(Boundary%dt_q,mask=Land%mask(:,:,1)), &
maxval(Boundary%dt_q,mask=Land%mask(:,:,1))
print *, 'PE,dt_t(I)(mn,mx)=',fms_mpp_pe(),minval(Boundary%dt_t,mask=Ice%mask),maxval(Boundary%dt_t,mask=Ice%mask)
print *, 'PE,dt_q(I)(mn,mx)=',fms_mpp_pe(),minval(Boundary%dt_q,mask=Ice%mask),maxval(Boundary%dt_q,mask=Ice%mask)
#endif

!=======================================================================
!-------------------- diagnostics section ------------------------------
Expand Down

0 comments on commit 408f90d

Please sign in to comment.