Changeset 5116 for LMDZ6/branches/Amaury_dev/libf/phylmd/phyredem.F90
- Timestamp:
- Jul 24, 2024, 2:54:37 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/phyredem.F90
r5112 r5116 40 40 USE ocean_slab_mod, ONLY: nslay, tslab, seaice, tice, fsic 41 41 USE time_phylmdz_mod, ONLY: annee_ref, day_end, itau_phy, pdtphys 42 use config_ocean_skin_m, only: activate_ocean_skin42 use config_ocean_skin_m, ONLY: activate_ocean_skin 43 43 USE lmdz_abort_physic, ONLY: abort_physic 44 44 … … 76 76 ! Get variables which will be written to restart file from module 77 77 ! pbl_surface_mod 78 if (iflag_physiq <= 1) then78 if (iflag_physiq <= 1) THEN 79 79 CALL pbl_surface_final(fder, snow, qsurf, tsoil) 80 80 endif … … 167 167 CALL put_field_srf1(pass, "TS", "Temperature", ftsol(:, :)) 168 168 169 IF (iflag_pbl>1 .AND. iflag_wake>=1 .AND. iflag_pbl_split >=1) then169 IF (iflag_pbl>1 .AND. iflag_wake>=1 .AND. iflag_pbl_split >=1) THEN 170 170 CALL put_field_srf1(pass, "DELTATS", & 171 171 "w-x surface temperature difference", delta_tsurf(:, :)) … … 274 274 ! DEB TKE PBL ! 275 275 276 IF (iflag_pbl>1) then276 IF (iflag_pbl>1) THEN 277 277 CALL put_field_srf3(pass, "TKE", "Energ. Cineti. Turb.", & 278 278 pbl_tke(:, :, :)) … … 379 379 "tendency on zonal wind due to acama gravity waves", du_gwd_front) 380 380 381 if (activate_ocean_skin >= 1) then382 if (activate_ocean_skin == 2 .and. type_ocean == 'couple') then381 if (activate_ocean_skin >= 1) THEN 382 if (activate_ocean_skin == 2 .and. type_ocean == 'couple') THEN 383 383 CALL put_field(pass, "delta_sal", & 384 384 "ocean-air interface salinity minus bulk salinity", delta_sal)
Note: See TracChangeset
for help on using the changeset viewer.