- Timestamp:
- Jan 29, 2024, 4:18:28 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90
r3183 r3188 7 7 SUBROUTINE init_testphys1d(start1Dname,startfiname,startfiles_1D,therestart1D,therestartfi,ngrid,nlayer,odpref, & 8 8 nq,q,time,psurf,u,v,temp,ndt,ptif,pks,dttestphys,zqsat,dq,dqdyn,day0,day,gru,grv,w, & 9 play,plev,latitude,longitude,cell_area,atm_wat_profile,atm_wat_tau )9 play,plev,latitude,longitude,cell_area,atm_wat_profile,atm_wat_tau,CO2cond_ps) 10 10 11 11 use ioipsl_getincom, only: getin ! To use 'getin' … … 78 78 real, dimension(1), intent(out) :: latitude, longitude, cell_area 79 79 real, intent(out) :: atm_wat_profile, atm_wat_tau ! Force atmospheric water profiles 80 real, intent(out) :: CO2cond_ps ! Relaxation coefficient for psurf 80 81 81 82 !======================================================================= … … 308 309 write(*,*) " psurf = ",psurf 309 310 311 ! Coefficient to control the surface pressure change 312 ! To be defined in "callphys.def" so that the PEM can read it asa well 313 CO2cond_ps = 1. ! Default value 314 write(*,*) 'Coefficient to control the surface pressure change?' 315 call getin("CO2cond_ps",CO2cond_ps) 316 if (CO2cond_ps < 0. .or. CO2cond_ps > 1.) then 317 write(*,*) 'Value for ''CO2cond_ps'' is not between 0 and 1.' 318 error stop 'Please, specify a correct value!' 319 endif 320 310 321 ! Reference pressures 311 322 pa = 20. ! transition pressure (for hybrid coord.)
Note: See TracChangeset
for help on using the changeset viewer.