Changeset 2591 for trunk/ICOSA_LMDZ
- Timestamp:
- Dec 6, 2021, 9:19:50 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ICOSA_LMDZ/src/phyvenus/interface_icosa_lmdz.f90
r2330 r2591 199 199 200 200 ! For Cp(T) 201 LOGICAL :: cpofT 201 202 REAL(rstd) :: nu_venus 202 203 REAL(rstd) :: t0_venus … … 415 416 ! with constant Cp. 416 417 ! Conversion Theta/T takes this into account (see below) 417 ! IF CP(T) 418 ! nu_venus=0.35 419 ! t0_venus=460. 420 ! IF CP CONSTANT 421 nu_venus=0. 422 t0_venus=0. 418 cpofT=.false. ! default, assume Cp to be constant in physics 419 CALL getin('cpofT',cpofT) 420 421 IF (cpofT) THEN 422 nu_venus=0.35 423 t0_venus=460. 424 ELSE 425 nu_venus=0. 426 t0_venus=0. 427 ENDIF 428 423 429 CALL init_cpdet_phy(cpp,nu_venus,t0_venus) 424 430
Note: See TracChangeset
for help on using the changeset viewer.