- Timestamp:
- May 20, 2016, 11:57:25 AM (9 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/fonte_neige_mod.F90
r2346 r2517 313 313 ! 314 314 SUBROUTINE fonte_neige_get_vars(pctsrf, fqcalving_out, & 315 fqfonte_out, ffonte_out) 316 315 fqfonte_out, ffonte_out, run_off_lic_out) 317 316 318 317 … … 330 329 REAL, DIMENSION(klon), INTENT(OUT) :: fqfonte_out 331 330 REAL, DIMENSION(klon), INTENT(OUT) :: ffonte_out 331 REAL, DIMENSION(klon), INTENT(OUT) :: run_off_lic_out 332 332 333 333 INTEGER :: nisurf … … 343 343 fqcalving_out(:) = fqcalving_out(:) + fqcalving_global(:,nisurf)*pctsrf(:,nisurf) 344 344 ENDDO 345 run_off_lic_out(:)=run_off_lic(:) 345 346 346 347 END SUBROUTINE fonte_neige_get_vars … … 349 350 ! 350 351 END MODULE fonte_neige_mod 351 352 353 -
LMDZ5/trunk/libf/phylmd/phys_output_ctrlout_mod.F90
r2516 r2517 273 273 TYPE(ctrl_out), SAVE :: o_fqfonte = ctrl_out((/ 1, 10, 10, 10, 10, 10, 11, 11, 11 /), & 274 274 'fqfonte', 'Land ice melt', 'kg/m2/s', (/ ('', i=1, 9) /)) 275 TYPE(ctrl_out), SAVE :: o_runofflic = ctrl_out((/ 1, 10, 10, 10, 10, 10, 11, 11, 11 /), & 276 'runofflic', 'Land ice melt to ocean', 'kg/m2/s', (/ ('', i=1, 9) /)) 275 277 TYPE(ctrl_out), SAVE :: o_taux = ctrl_out((/ 1, 10, 10, 10, 10, 10, 11, 11, 11 /), & 276 278 'taux', 'Zonal wind stress', 'Pa', (/ ('', i=1, 9) /)) -
LMDZ5/trunk/libf/phylmd/phys_output_write_mod.F90
r2516 r2517 50 50 o_bils_ec,o_bils_ech, o_bils_tke, o_bils_kinetic, & 51 51 o_bils_latent, o_bils_enthalp, o_sens, & 52 o_fder, o_ffonte, o_fqcalving, o_fqfonte, &52 o_fder, o_ffonte, o_fqcalving, o_fqfonte, o_runofflic, & 53 53 o_taux, o_tauy, o_snowsrf, o_qsnow, & 54 54 o_snowhgt, o_toice, o_sissnow, o_runoff, & … … 196 196 zu10m, zv10m, zq2m, zustar, zxqsurf, & 197 197 rain_lsc, rain_num, snow_lsc, bils, sens, fder, & 198 zxffonte, zxfqcalving, zxfqfonte, fluxu, &198 zxffonte, zxfqcalving, zxfqfonte, zxrunofflic, fluxu, & 199 199 fluxv, zxsnow, qsnow, snowhgt, to_ice, & 200 200 sissnow, runoff, albsol3_lic, evap_pot, & … … 547 547 CALL histwrite_phy(o_fqcalving, zxfqcalving) 548 548 CALL histwrite_phy(o_fqfonte, zxfqfonte) 549 CALL histwrite_phy(o_runofflic, zxrunofflic) 549 550 IF (vars_defined) THEN 550 551 zx_tmp_fi2d=0. -
LMDZ5/trunk/libf/phylmd/physiq_mod.F90
r2516 r2517 68 68 69 69 #ifdef CPP_RRTM 70 USE YOERAD 70 USE YOERAD, ONLY : NRADLP 71 71 #endif 72 72 USE ioipsl_getin_p_mod, ONLY : getin_p … … 3430 3430 !albedo SB <<< 3431 3431 3432 3433 if (mydebug) then3434 call writefield_phy('u_seri',u_seri,nbp_lev)3435 call writefield_phy('v_seri',v_seri,nbp_lev)3436 call writefield_phy('t_seri',t_seri,nbp_lev)3437 call writefield_phy('q_seri',q_seri,nbp_lev)3438 endif3439 3440 3432 ! 3441 3433 !sonia : If Iflag_radia >=2, pertubation of some variables … … 3483 3475 print *,' ->radlwsw, number 1 ' 3484 3476 ENDIF 3477 3485 3478 ! 3486 3479 CALL radlwsw & … … 4254 4247 ! Get some variables from module fonte_neige_mod 4255 4248 CALL fonte_neige_get_vars(pctsrf, & 4256 zxfqcalving, zxfqfonte, zxffonte) 4257 4258 4249 zxfqcalving, zxfqfonte, zxffonte, zxrunofflic) 4259 4250 4260 4251
Note: See TracChangeset
for help on using the changeset viewer.