- Timestamp:
- Jun 12, 2020, 9:31:02 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin/libf/phylmd/phys_output_var_mod.F90
r3687 r3719 135 135 ! Ocean-atmosphere interface, subskin ocean and near-surface ocean: 136 136 137 REAL, ALLOCATABLE, SAVE:: t_int(:) ! interface temperature, in K 137 REAL, ALLOCATABLE, SAVE:: sst_nff(:) 138 ! SST not used to compute surface fluxes, in K. If 139 ! activate_ocean_skin == 0 then it is not allocated; if 140 ! activate_ocean_skin == 1 then it is the ocean-air interface 141 ! temperature; if activate_ocean_skin == 2 then it is the bulk SST. 138 142 139 143 REAL, ALLOCATABLE, SAVE:: dter(:) … … 155 159 ! momentum flux due to rain, in Pa 156 160 157 !$OMP THREADPRIVATE( t_int, dter, dser, tkt, tks, taur)161 !$OMP THREADPRIVATE(sst_nff, dter, dser, tkt, tks, taur) 158 162 159 163 CONTAINS … … 216 220 IF (ok_gwd_rando) allocate(zustr_gwd_rando(klon), zvstr_gwd_rando(klon)) 217 221 218 if (activate_ocean_skin >= 1) allocate( t_int(klon), dter(klon), &222 if (activate_ocean_skin >= 1) allocate(sst_nff(klon), dter(klon), & 219 223 dser(klon), tkt(klon), tks(klon), taur(klon)) 220 224
Note: See TracChangeset
for help on using the changeset viewer.