Changeset 3627 for LMDZ6/branches/Ocean_skin/libf/phylmd/oasis.F90
- Timestamp:
- Feb 3, 2020, 2:27:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin/libf/phylmd/oasis.F90
r3605 r3627 59 59 INTEGER, PARAMETER :: ids_qraiic = 28 60 60 INTEGER, PARAMETER :: ids_qsnoic = 29 61 INTEGER, PARAMETER :: maxsend = 29 ! Maximum number of fields to send 61 INTEGER, PARAMETER :: ids_t_int = 30 62 63 INTEGER, PARAMETER :: maxsend = 30 ! Maximum number of fields to send 62 64 63 65 ! Id for fields received from ocean 66 64 67 INTEGER, PARAMETER :: idr_sisutw = 1 65 68 INTEGER, PARAMETER :: idr_icecov = 2 … … 70 73 INTEGER, PARAMETER :: idr_curenz = 7 71 74 INTEGER, PARAMETER :: idr_oceco2 = 8 72 INTEGER, PARAMETER :: maxrecv = 8 ! Maximum number of fields to receive 75 76 INTEGER, PARAMETER :: idr_sss = 9 77 ! bulk salinity of the surface layer of the ocean, in ppt 78 79 INTEGER, PARAMETER :: maxrecv = 9 ! Maximum number of fields to receive 73 80 74 81 … … 183 190 infosend(ids_calvin)%action = .TRUE. ; infosend(ids_calvin)%name = 'COCALVIN' 184 191 192 if (activate_ocean_skin == 2) then 193 infosend(ids_t_int)%action = .TRUE. 194 infosend(ids_t_int)%name = 'T_int' 195 end if 196 185 197 IF (version_ocean=='nemo') THEN 186 198 infosend(ids_shftot)%action = .TRUE. ; infosend(ids_shftot)%name = 'COQSRMIX' … … 219 231 inforecv(idr_icealw)%action = .TRUE. ; inforecv(idr_icealw)%name = 'SIICEALW' 220 232 inforecv(idr_icetem)%action = .TRUE. ; inforecv(idr_icetem)%name = 'SIICTEMW' 233 234 if (activate_ocean_skin >= 1) then 235 inforecv(idr_sss)%action = .TRUE. 236 inforecv(idr_sss)%name = 'salinity' 237 end if 221 238 222 239 IF (cpl_current ) THEN
Note: See TracChangeset
for help on using the changeset viewer.