Changeset 3683 for LMDZ6/trunk/libf/phylmd/dyn1d/mod_1D_cases_read_std.F90
- Timestamp:
- May 26, 2020, 11:31:57 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/dyn1d/mod_1D_cases_read_std.F90
r3680 r3683 313 313 314 314 data name_var/ & 315 ! coordonnees pression (n niveaux) profils intiaux #1-#1 5315 ! coordonnees pression (n niveaux) profils intiaux #1-#17 316 316 & 'qt','qv','ql','qi','rt','rv','rl','ri', & 317 317 & 'rh','temp','theta','thetal','u','v','tke', & 318 ! coordonnees pression (n niveaux) + temps #16-#42 318 & 'height','pressure', & 319 ! coordonnees pression (n niveaux) + temps #18-#44 319 320 & 'height_forc','pressure_forc','w','omega','ug','vg','u_adv','v_adv', & 320 321 & 'temp_adv','theta_adv','thetal_adv','qt_adv','qv_adv','rt_adv','rv_adv', & 321 322 & 'temp_rad','theta_rad','thetal_rad','temp_nudging','theta_nudging','thetal_nudging', & 322 323 & 'qv_nudging','qt_nudging','rv_nudging','rt_nudging','u_nudging','v_nudging', & 323 ! coordonnees temps #4 3-#53324 ! coordonnees temps #45-#55 324 325 & 'sfc_sens_flx','sfc_lat_flx','ts','ps','ps_forc','ustar', & 325 & 'wpthetap','wpqvp','wpqtp','wprtp','wprvp' , &326 ! scalaires #5 4-55327 & 'height','pressure'/326 & 'wpthetap','wpqvp','wpqtp','wprtp','wprvp'/ 327 ! scalaires #56-57 328 ! Aucune 328 329 329 330 !----------------------------------------------------------------------- … … 361 362 ! Reading 1D (N) vertical varialbes (nlevel,lat,lon) 362 363 !----------------------------------------------------------------------- 363 if(i.LE.1 5) then364 if(i.LE.17) then 364 365 #ifdef NC_DOUBLE 365 366 ierr = NF_GET_VAR_DOUBLE(nid,var3didin(i),resul1) … … 372 373 stop "getvarup" 373 374 endif 374 print*,'Lecture de la variable #i ',i,name_var(i),minval(resul1),maxval(resul1)375 print*,'Lecture de la variable (nlevel,lat,lon) #i ',i,name_var(i),minval(resul1),maxval(resul1) 375 376 376 377 !----------------------------------------------------------------------- … … 378 379 ! TBD : seems to be the same as above. 379 380 !----------------------------------------------------------------------- 380 else if(i.ge.1 6.and.i.LE.42) then381 else if(i.ge.18.and.i.LE.44) then 381 382 #ifdef NC_DOUBLE 382 383 ierr = NF_GET_VAR_DOUBLE(nid,var3didin(i),resul) … … 389 390 stop "getvarup" 390 391 endif 391 print*,'Lecture de la variable #i ',i,name_var(i),minval(resul),maxval(resul)392 print*,'Lecture de la variable (time,nlevel,lat,lon) #i ',i,name_var(i),minval(resul),maxval(resul) 392 393 393 394 !----------------------------------------------------------------------- 394 395 ! Reading 1D time variables (time,lat,lon) 395 396 !----------------------------------------------------------------------- 396 else if (i.gt.4 3.and.i.LE.53) then397 else if (i.gt.45.and.i.LE.55) then 397 398 #ifdef NC_DOUBLE 398 399 ierr = NF_GET_VAR_DOUBLE(nid,var3didin(i),resul2) … … 405 406 stop "getvarup" 406 407 endif 407 print*,'Lecture de la variable #i ',i,name_var(i),minval(resul2),maxval(resul2)408 print*,'Lecture de la variable (time,lat,lon) #i ',i,name_var(i),minval(resul2),maxval(resul2) 408 409 !----------------------------------------------------------------------- 409 410 ! Reading scalar variables (t0,lat,lon) … … 420 421 stop "getvarup" 421 422 endif 422 print*,'Lecture de la variable #i ',i,name_var(i),resul3423 print*,'Lecture de la variable (t0,lat,lon) #i ',i,name_var(i),resul3 423 424 endif 424 425 endif
Note: See TracChangeset
for help on using the changeset viewer.