New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 15755 – NEMO

Changeset 15755


Ignore:
Timestamp:
2022-03-17T17:46:56+01:00 (2 years ago)
Author:
jpalmier
Message:

Add sea ice fields in output.abord to help debug too cold values at ice formation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.4_MEDUSA_externals_GC5/src/ICE/icewri.F90

    r15658 r15755  
    262262      CALL iom_rstput( 0, 0, kid, 'sisalcat', s_i        )   ! Ice salinity 
    263263      CALL iom_rstput( 0, 0, kid, 'snthicat', h_s        )   ! Snw thickness 
     264      !! Jpalm -- debug ice growth with huge SST decrease 
     265      CALL iom_rstput( 0, 0, kid, 'dmiopw', - wfx_opw    )   ! open water formation 
     266      CALL iom_rstput( 0, 0, kid, 'dmibog', - wfx_bog    )   ! basal growth 
     267      CALL iom_rstput( 0, 0, kid, 'hfxcndtop'  , SUM( qcn_ice_top * a_i_b, dim=3 )  )   ! Surface conduction flux 
     268      CALL iom_rstput( 0, 0, kid, 'hfxcndbot'  , SUM( qcn_ice_bot * a_i_b, dim=3 )  )   ! Bottom conduction flux 
     269      CALL iom_rstput( 0, 0, kid, 'hfxsensib'  , -qsb_ice_bot * at_i_b  )   ! Sensible oceanic heat flux 
     270      CALL iom_rstput( 0, 0, kid, 'sfxice', sfx * 1.e-03 )   ! salt flux from total ice growth/melt 
     271      CALL iom_rstput( 0, 0, kid, 'vfxice' , wfx_ice     )   ! mass flux from total ice growth/melt 
     272      CALL iom_rstput( 0, 0, kid, 'vfxsnw' , wfx_snw     )   ! mass flux from total snow growth/melt 
     273      CALL iom_rstput( 0, 0, kid, 'qtr_ice_top', SUM( qtr_ice_top * a_i_b, dim=3 )                          )   !     solar flux transmitted thru ice surface 
     274      CALL iom_rstput( 0, 0, kid, 'qtr_ice_bot', SUM( qtr_ice_bot * a_i_b, dim=3 )                          )   !     solar flux transmitted thru ice 
     275 
     276 
     277 
     278 
     279       
    264280 
    265281    END SUBROUTINE ice_wri_state 
Note: See TracChangeset for help on using the changeset viewer.