Changeset 4798 for LMDZ6/branches/WETDEP_DECOUPLE/libf
- Timestamp:
- Feb 2, 2024, 5:04:42 PM (10 months ago)
- Location:
- LMDZ6/branches/WETDEP_DECOUPLE/libf
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/WETDEP_DECOUPLE/libf/dyn3dmem/dynredem_loc.F90
r2622 r4798 11 11 USE infotrac 12 12 USE netcdf, ONLY: NF90_CREATE, NF90_DEF_DIM, NF90_INQ_VARID, NF90_GLOBAL, & 13 NF90_CLOSE, NF90_PUT_ATT, NF90_UNLIMITED, NF90_CLOBBER 13 NF90_CLOSE, NF90_PUT_ATT, NF90_UNLIMITED, NF90_CLOBBER, & 14 NF90_64BIT_OFFSET 14 15 USE dynredem_mod, ONLY: cre_var, put_var, err, modname, fil 15 16 USE comvert_mod, ONLY: ap,bp,aps,bps,presnivs,pseudoalt,pa,preff, & … … 110 111 111 112 !--- File creation 112 CALL err(NF90_CREATE(fichnom, NF90_CLOBBER,nid))113 CALL err(NF90_CREATE(fichnom,IOR(NF90_CLOBBER,NF90_64BIT_OFFSET),nid)) 113 114 114 115 !--- Some global attributes -
LMDZ6/branches/WETDEP_DECOUPLE/libf/phylmd/phys_output_mod.F90
r3853 r4798 501 501 tname(iiq),'Tracer '//ttext(iiq), "-", & 502 502 (/ '', '', '', '', '', '', '', '', '', '' /)) 503 o_dtr_vdf(iq-nqo) = ctrl_out((/ 4, 7, 7, 7, 10, 10, 11, 11, 11, 11 /), &503 o_dtr_vdf(iq-nqo) = ctrl_out((/ 5, 5, 5, 5, 10, 10, 11, 11, 11, 11 /), & 504 504 'd'//trim(tname(iq))//'_vdf', & 505 505 'Tendance tracer '//ttext(iiq), "-" , & … … 566 566 (/ '', '', '', '', '', '', '', '', '', '' /)) 567 567 568 o_dtr_dry(iq-nqo) = ctrl_out((/ 7, 7, 7, 7, 10, 10, 11, 11, 11, 11 /), &568 o_dtr_dry(iq-nqo) = ctrl_out((/ 5, 5, 5, 5, 10, 10, 11, 11, 11, 11 /), & 569 569 'cum'//'d'//trim(tname(iq))//'_dry', & 570 570 'tracer tendency dry deposition'//ttext(iiq), "-", & -
LMDZ6/branches/WETDEP_DECOUPLE/libf/phylmd/phys_output_write_mod.F90
r3842 r4798 413 413 ! Local 414 414 INTEGER :: itau_w 415 INTEGER :: i, iinit, iinitend=1, iff, iq, iiq, nsrf, k, ll, naero 415 INTEGER :: i, iinit, iinitend=1, iff, iq, iiq, nsrf, k, ll, naero, j 416 416 REAL, DIMENSION (klon) :: zx_tmp_fi2d, zpt_conv2d, wind100m 417 417 REAL, DIMENSION (klon,klev) :: zx_tmp_fi3d, zpt_conv … … 446 446 REAL,DIMENSION(klon,klev) :: z, dz 447 447 REAL,DIMENSION(klon) :: zrho, zt 448 449 ! Nicolas Février 450 INTEGER,DIMENSION(2) :: index_bc=[106,116] 448 451 449 452 ! On calcul le nouveau tau: … … 2372 2375 IF (vars_defined) THEN 2373 2376 DO k=1,klev 2374 2377 zx_tmp_fi2d(:)=zx_tmp_fi2d(:)+zmasse(:,k)*tr_seri(:,k,iq-nqo) 2375 2378 ENDDO 2376 2379 ENDIF … … 2378 2381 ENDDO !--iq 2379 2382 ENDIF !--type_trac 2383 2384 ! Pour bilan 2385 DO j=1,size(index_bc) 2386 iq=index_bc(j) 2387 !WRITE(lunout,*) "WRITE_TEST_1"," / iq=",iq 2388 CALL histwrite_phy(o_dtr_vdf(iq-nqo),d_tr_cl(:,:,iq-nqo)) 2389 !WRITE(lunout,*) "WRITE_TEST_2" 2390 END DO 2380 2391 ! 2381 2392 IF (type_trac == 'co2i') THEN -
LMDZ6/branches/WETDEP_DECOUPLE/libf/phylmd/radlwsw_m.F90
r3666 r4798 873 873 ZTOPLWAIAERO,ZSOLLWAIAERO, & 874 874 ZLWADAERO, & !--NL 875 ok_ade, ok_aie, ok_volcan, flag_aerosol,flag_aerosol_strat, flag_aer_feedback) ! flags aerosols875 ok_ade, ok_aie, ok_volcan, flag_aerosol,flag_aerosol_strat, .FALSE.) !Nicolas Février 876 876 877 877 ! print *,'RADLWSW: apres RECMWF'
Note: See TracChangeset
for help on using the changeset viewer.