- Timestamp:
- 2021-07-07T13:22:23+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/UKMO/NEMO_r4.2RC_GO8_package/src/OCE/SBC/sbcssm.F90
r15062 r15095 59 59 REAL(wp) :: zcoef, zf_sbc ! local scalar 60 60 REAL(wp), DIMENSION(jpi,jpj,jpts) :: zts 61 !!--------------------------------------------------------------------- 61 CHARACTER(len=4),SAVE :: stype 62 !!--------------------------------------------------------------------- 63 IF( kt == nit000 ) THEN 64 IF( ln_TEOS10 ) THEN 65 stype='abs' ! teos-10: using absolute salinity (sst is converted to potential temperature for the surface module) 66 ELSE IF( ln_EOS80 ) THEN 67 stype='pra' ! eos-80: using practical salinity 68 ELSE IF ( ln_SEOS) THEN 69 stype='seos' ! seos using Simplified Equation of state (sst is converted to potential temperature for the surface module) 70 ENDIF 71 ENDIF 62 72 ! 63 73 ! !* surface T-, U-, V- ocean level variables (T, S, depth, velocity) … … 170 180 CALL iom_put( 'ssu_m', ssu_m ) 171 181 CALL iom_put( 'ssv_m', ssv_m ) 172 CALL iom_put( 'sst_m ', sst_m )173 CALL iom_put( 'sss_m ', sss_m )182 CALL iom_put( 'sst_m_pot', sst_m ) 183 CALL iom_put( 'sss_m_'//stype, sss_m ) 174 184 CALL iom_put( 'ssh_m', ssh_m ) 175 185 CALL iom_put( 'e3t_m', e3t_m )
Note: See TracChangeset
for help on using the changeset viewer.