Changeset 2470 for trunk/LMDZ.GENERIC/libf/phystd/dyn1d
- Timestamp:
- Mar 8, 2021, 1:43:22 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/dyn1d/kcm1d.F90
r2436 r2470 8 8 use comsaison_h, only: mu0, fract, dist_star 9 9 use planete_mod 10 use callkeys_mod, only: check_cpp_match, pceil, tstrat, tracer 10 use callkeys_mod, only: check_cpp_match, pceil, tstrat, tracer, global1d 11 11 use inifis_mod, only: inifis 12 12 use comcstfi_mod … … 84 84 85 85 integer ierr 86 logical firstcall,lastcall ,global1d86 logical firstcall,lastcall 87 87 88 88 character*20,allocatable :: nametrac(:) ! name of the tracer (no need for adv trac common) … … 217 217 218 218 219 global1d = .false. ! default value220 call getin("global1d",global1d)221 write(*,*) " global1d = ",global1d222 if(.not.global1d)then223 print*,'Error, kcm1d must have global1d=.true. in kcm1d.def!'224 stop225 end if226 219 227 220 psurf_n=100000. ! default value for psurf … … 328 321 cpp=1.d-7 !JL because we divide by cpp in inifis, there may be a more elegant solution 329 322 CALL inifis(1,llm,nq,0,86400.0,1,1.0,latitude,longitude,cell_area,rad,g,r,cpp) 323 324 if(.not.global1d)then 325 print*,'Error, kcm1d must have global1d=.true. in kcm1d.def!' 326 stop 327 end if 330 328 331 329 !write(*,*) 'BASE 1'
Note: See TracChangeset
for help on using the changeset viewer.