Changeset 3738 for trunk/LMDZ.COMMON/libf
- Timestamp:
- Apr 25, 2025, 6:30:25 PM (8 weeks ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3711 r3738 625 625 Updating the average pressure at each iteration. 626 626 627 == 1/4/2025 == EV627 == 01/04/2025 == EV 628 628 updating paramaters to work with the layering 629 629 630 == 2/4/2025 == EV630 == 02/04/2025 == EV 631 631 updating the h2o and co2 ice values that will be used by the PCM according to the top layer in the stratum 632 632 updating h2o ice recomp tendency to reduce the ice table loss rate due increase of depth and a decrease in the humidity around the ice. 633 633 634 == 3/4/2025 == EV634 == 03/04/2025 == EV 635 635 adding the growth of the lag layer 636 636 changing the stopping critiria to take into account the top startum layer 637 637 removing the case where if we have 0 ice the PEM stops. 638 638 639 640 639 == 25/04/2025 == JBC 640 Resulting change due to revision r3737 in the 1D Mars PCM. -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3711 r3738 111 111 use comvert_mod, only: ap, bp 112 112 use writerestart1D_mod, only: writerestart1D 113 ! use layering_mod, only: layering, array2stratif, nb_str_max, layering_algo114 113 #endif 115 114 … … 287 286 real, dimension(:), allocatable :: zqsat 288 287 real, dimension(:,:,:), allocatable :: dq, dqdyn 289 real, dimension(nlayer) :: play, w 288 real, dimension(nlayer) :: play, w, q_def_h2o_vap 290 289 real, dimension(nlayer + 1) :: plev 291 290 #else … … 323 322 endif 324 323 enddo 325 324 326 325 if (num_str) then ! This is a numeric sting so we considerer this is the job id 327 326 ! Execute the system command … … 436 435 call init_testphys1d('start1D.txt','startfi.nc',therestart1D,therestartfi,ngrid,nlayer,610.,nq,q, & 437 436 time_0,pdyn(1),ucov,vcov,teta,ndt,ptif,pks,dtphys,zqsat,dq,dqdyn,day0,day,gru,grv,w, & 438 play,plev,latitude,longitude,cell_area,atm_wat_profile,atm_wat_tau )437 play,plev,latitude,longitude,cell_area,atm_wat_profile,atm_wat_tau,q_def_h2o_vap) 439 438 nsplit_phys = 1 440 439 day_step = steps_per_sol … … 1302 1301 1303 1302 write(*,*) 1304 write(*,*) '****** *** PEM finalization *********'1303 write(*,*) '****** PEM final information *******' 1305 1304 write(*,'(a,f10.2,a)') " + The PEM leg has run for ", i_myear_leg, " Martian years." 1306 1305 write(*,'(a,f10.2,a,f10.2,a)') " + The chained simulation has run for ", i_myear, " Martian years =", i_myear*convert_years, " Earth years."
Note: See TracChangeset
for help on using the changeset viewer.