Changeset 3025
- Timestamp:
- Aug 7, 2023, 6:02:51 AM (16 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3024 r3025 4162 4162 Complete rewriting (much simpler) of script "run_pem1d_1" in deftank/pem/ to launch chained simulations of 1D PCM/PEM. To be adapted to 3D in the future. 4163 4163 Addition of a bash script "modify_startfi.sh" to modify orbital parameters in "startfi.nc". It is needed to initialize the PCM/PEM simulation with right orbital parameters according to the year in Laskar data. 4164 4165 == 07/08/2023 == EM 4166 Fixed a bug in newstart call to lect_start_archive; missing perenial_co2ice 4167 argument. Turned lect_start_archive into a module so this cant't happen again. -
trunk/LMDZ.MARS/libf/dynphy_lonlat/phymars/lect_start_archive.F
r2999 r3025 1 MODULE lect_start_archive_mod 2 3 IMPLICIT NONE 4 5 CONTAINS 6 1 7 SUBROUTINE lect_start_archive(ngrid,nlayer,nqtot, 2 8 & date,tsurf,tsoil,inertiesoil,albedo,emis,q2, … … 1277 1283 & watercap(:,1)) 1278 1284 1279 c Watercap1285 c Perenial CO2 ice cap 1280 1286 call interp_horiz (peren_co2iceold(:,:,1),peren_co2iceS(:,:,1), 1281 1287 & imold,jmold,iim,jjm,1,rlonuold,rlatvold,rlonu,rlatv) … … 1686 1692 1687 1693 ! write(*,*)'lect_start_archive: END' 1688 return 1689 end 1694 1695 END SUBROUTINE lect_start_archive 1696 1697 END MODULE lect_start_archive_mod -
trunk/LMDZ.MARS/libf/dynphy_lonlat/phymars/newstart.F
r2999 r3025 37 37 use control_mod, only: day_step, iphysiq, anneeref, planet_type 38 38 use geometry_mod, only: longitude,latitude,cell_area 39 use lect_start_archive_mod, only: lect_start_archive 39 40 use phyetat0_mod, only: phyetat0 40 41 use phyredem, only: physdem0, physdem1 … … 444 445 & date,tsurf,tsoil,inertiesoil,albedo,emis,q2, 445 446 & t,ucov,vcov,ps,teta,phisold_newgrid,q,qsurf, 446 & tauscaling,totcloudfrac,surfith,nid,watercap )447 & tauscaling,totcloudfrac,surfith,nid,watercap,perenial_co2ice) 447 448 write(*,*) "OK, read start_archive file" 448 449 ! copy soil thermal inertia
Note: See TracChangeset
for help on using the changeset viewer.