Changeset 4952
- Timestamp:
- May 24, 2024, 6:48:07 PM (8 months ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/clesphys.h
r4773 r4952 110 110 LOGICAL :: ok_3Deffect 111 111 112 !OB flag to activate water mass fixer in physiq 113 LOGICAL :: ok_water_mass_fixer 114 112 115 COMMON/clesphys/ & 113 116 ! REAL FIRST -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r4949 r4952 1265 1265 1266 1266 !--OB variables for mass fixer (hard coded for now) 1267 LOGICAL, PARAMETER :: mass_fixer=.FALSE.1268 1267 REAL qql1(klon),qql2(klon),corrqql 1269 1268 … … 1509 1508 iflag_phytrac = 1 ! by default we do want to call phytrac 1510 1509 CALL getin_p('iflag_phytrac',iflag_phytrac) 1510 1511 ok_water_mass_fixer=.FALSE. ! OB: by default we do not apply the mass fixer 1512 CALL getin_p('ok_water_mass_fixer',ok_water_mass_fixer) 1511 1513 #ifdef CPP_Dust 1512 1514 IF (iflag_phytrac.EQ.0) THEN … … 1533 1535 WRITE(lunout,*) 'fl_cor_ebil=', fl_cor_ebil 1534 1536 WRITE(lunout,*) 'iflag_phytrac=', iflag_phytrac 1537 WRITE(lunout,*) 'ok_water_mass_fixer=',ok_water_mass_fixer 1535 1538 WRITE(lunout,*) 'NVM=', nvm_lmdz 1536 1539 … … 2458 2461 ENDDO 2459 2462 ! 2460 !--OB mass fixer2461 IF ( mass_fixer) THEN2463 !--OB water mass fixer 2464 IF (ok_water_mass_fixer) THEN 2462 2465 !--store initial water burden 2463 2466 qql1(:)=0.0 … … 5475 5478 !--currently flag is turned off 5476 5479 !================================================================== 5477 IF ( mass_fixer) THEN5480 IF (ok_water_mass_fixer) THEN 5478 5481 qql2(:)=0.0 5479 5482 DO k = 1, klev
Note: See TracChangeset
for help on using the changeset viewer.