Changeset 2220 for trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
- Timestamp:
- Jan 22, 2020, 11:41:33 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
r2079 r2220 17 17 inquire_dimension, inquire_dimension_length 18 18 use ioipsl_getincom, only : getin 19 19 use nonoro_gwd_ran_mod, only: du_nonoro_gwd, dv_nonoro_gwd 20 20 implicit none 21 21 … … 415 415 endif 416 416 417 ! Non-orographic gravity waves 418 call get_field("du_nonoro_gwd",du_nonoro_gwd,found,indextime) 419 if (.not.found) then 420 write(*,*) "phyetat0: <du_nonoro_gwd> not in file" 421 du_nonoro_gwd(:,:)=0. 422 else 423 write(*,*) "phyetat0: Memory of zonal wind tendency due to non-orographic GW" 424 write(*,*) " <du_nonoro_gwd> range:", & 425 minval(du_nonoro_gwd), maxval(du_nonoro_gwd) 426 endif 427 428 call get_field("dv_nonoro_gwd",dv_nonoro_gwd,found,indextime) 429 if (.not.found) then 430 write(*,*) "phyetat0: <dv_nonoro_gwd> not in file" 431 dv_nonoro_gwd(:,:)=0. 432 else 433 write(*,*) "phyetat0: Memory of meridional wind tendency due to non-orographic GW" 434 write(*,*) " <dv_nonoro_gwd> range:", & 435 minval(dv_nonoro_gwd), maxval(dv_nonoro_gwd) 436 endif 417 437 418 438 ! tracer on surface
Note: See TracChangeset
for help on using the changeset viewer.