- Timestamp:
- Jun 30, 2020, 9:14:36 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin/libf/phylmd/phys_state_var_mod.F90
r3628 r3740 444 444 ! minus foundation temperature. (Can be negative.) In K. 445 445 446 !$OMP THREADPRIVATE(s_int, ds_ns, dt_ns) 446 REAL, ALLOCATABLE, SAVE:: sst_nff(:) 447 ! SST not used to compute surface fluxes, in K. If 448 ! activate_ocean_skin == 0 then it is not allocated; if 449 ! activate_ocean_skin == 1 then it is the ocean-air interface 450 ! temperature; if activate_ocean_skin == 2 then it is the bulk SST. 451 452 !$OMP THREADPRIVATE(s_int, ds_ns, dt_ns, sst_nff) 447 453 448 454 CONTAINS … … 653 659 ENDIF 654 660 if (activate_ocean_skin >= 1) ALLOCATE(s_int(klon), ds_ns(klon), & 655 dt_ns(klon) )661 dt_ns(klon), sst_nff(klon)) 656 662 657 663 END SUBROUTINE phys_state_var_init … … 791 797 !!! fin nrlmd le 10/04/2012 792 798 793 if (activate_ocean_skin >= 1) deALLOCATE(s_int, ds_ns, dt_ns )799 if (activate_ocean_skin >= 1) deALLOCATE(s_int, ds_ns, dt_ns, sst_nff) 794 800 795 801 is_initialized=.FALSE.
Note: See TracChangeset
for help on using the changeset viewer.