Changeset 3458 for LMDZ6/branches/Ocean_skin/libf/phylmd/phyetat0.F90
- Timestamp:
- Jan 30, 2019, 5:55:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin/libf/phylmd/phyetat0.F90
r3429 r3458 30 30 USE time_phylmdz_mod, ONLY: init_iteration, pdtphys, itau_phy 31 31 use netcdf, only: nf90_fill_real 32 use config_ocean_skin_m, only: activate_ocean_skin 32 33 33 34 IMPLICIT none … … 529 530 CALL fonte_neige_init(run_off_lic_0) 530 531 531 found = phyetat0_get(1, ds_ns, "ds_ns", "delta salinity near surface", 0.) 532 found = phyetat0_get(1, dt_ns, "dT_ns", "delta temperature near surface", 0.) 533 534 where (pctsrf(:, is_oce) == 0.) 535 ds_ns = nf90_fill_real 536 dt_ns = nf90_fill_real 537 end where 532 if (activate_ocean_skin >= 1) then 533 found = phyetat0_get(1, ds_ns, "ds_ns", "delta salinity near surface", 0.) 534 found = phyetat0_get(1, dt_ns, "dT_ns", "delta temperature near surface", & 535 0.) 536 537 where (pctsrf(:, is_oce) == 0.) 538 ds_ns = nf90_fill_real 539 dt_ns = nf90_fill_real 540 end where 541 end if 538 542 539 543 END SUBROUTINE phyetat0
Note: See TracChangeset
for help on using the changeset viewer.