Changeset 2981
- Timestamp:
- Jun 12, 2023, 5:44:22 PM (19 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r2979 r2981 4055 4055 + Introducing a flag "cloud_adapt_ts" (false by default) to set the adaptative timestep (not yet ready). Otherwise fully retrocompatible. 4056 4056 4057 4057 4058 == 26/05/2023 == RV 4058 4059 Adapt write_output to be able to output integer and logical in diagfi.nc, but the variables are converted to real by the routine before being written in the netcdf. … … 4069 4070 Adapt simu_MCS.F90 so that it also recognizes new dust opacity names from aeroptical (since r2817 : "opa_dust" instead of "opadust") 4070 4071 (retrocompatible with old names as well) 4072 4073 == 12/06/2023 == EV 4074 + Created an option to output the profiles in 1D using write_prof (default is false) 4075 for the several years run mostly the PEM -
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F
r2980 r2981 992 992 IF (write_prof) then 993 993 DO iq = 1, nq 994 call writeprofile(nlayer,q(:,iq),noms(iq),iq )994 call writeprofile(nlayer,q(:,iq),noms(iq),iq,qsurf) 995 995 ENDDO 996 996 ENDIF -
trunk/LMDZ.MARS/libf/phymars/dyn1d/write_profile.F90
r2948 r2981 1 SUBROUTINE writeprofile(nlev,data,name2,iq )1 SUBROUTINE writeprofile(nlev,data,name2,iq,qsurf) 2 2 3 3 … … 7 7 INTEGER nlev,iq 8 8 REAL data(nlev) 9 REAL qsurf 9 10 CHARACTER(len=30) :: name2 10 11 … … 14 15 !write the data 15 16 OPEN(iq,file='profile_out_'//trim(name2),form='formatted') 17 write(iq,*) qsurf 16 18 DO il=1,nlev 17 19 write(iq,*) data(il)
Note: See TracChangeset
for help on using the changeset viewer.