Changeset 2108 for trunk/LMDZ.COMMON/libf/dyn3d/leapfrog_nogcm.F
- Timestamp:
- Mar 4, 2019, 9:57:40 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3d/leapfrog_nogcm.F
r2106 r2108 12 12 use IOIPSL 13 13 #endif 14 USE infotrac, ONLY: nqtot,ok_iso_verif 14 USE infotrac, ONLY: nqtot,ok_iso_verif,tname 15 15 USE guide_mod, ONLY : guide_main 16 16 USE write_field, ONLY: writefield … … 21 21 & ok_dyn_ins,output_grads_dyn 22 22 use exner_hyb_m, only: exner_hyb 23 use surfdat_h, only: co2ice24 23 use exner_milieu_m, only: exner_milieu 25 24 use cpdet_mod, only: cpdet,tpot2t,t2tpot … … 29 28 & aps,bps,presnivs,pseudoalt,preff,scaleheight 30 29 USE comconst_mod, ONLY: daysec,dtvr,dtphys,dtdiss, 31 . cpp,ihf,iflag_top_bound,pi,kappa 30 . cpp,ihf,iflag_top_bound,pi,kappa,r 32 31 USE logic_mod, ONLY: iflag_phys,ok_guide,forward,leapf,apphys, 33 32 . statcl,conser,purmats,tidal,ok_strato 34 33 USE temps_mod, ONLY: jD_ref,jH_ref,itaufin,day_ini,day_ref, 35 34 . start_time,dt 36 USE comcstfi_h, ONLY: r,g37 USE tracer_mod, ONLY: igcm_co238 35 39 36 … … 246 243 real :: co2mass(iip1,jjp1) 247 244 real :: co2ice_ij(iip1,jjp1) 245 integer,save :: igcm_co2=0 ! index of CO2 tracer (if any) 248 246 integer :: i,j,ig 249 247 integer, parameter :: ngrid = 2+(jjm-1)*iim … … 346 344 ! ED18 TEST 347 345 ! PRINT*,'igcm_co2 = ',igcm_co2 346 ! Locate tracer "co2" and set igcm_co2: 347 do iq=1,nqtot 348 if (tname(iq)=="co2") then 349 igcm_co2=iq 350 exit 351 endif 352 enddo 348 353 349 354 c-----------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.