Changeset 622 for trunk/LMDZ.GENERIC/libf/phystd/inifis.F
- Timestamp:
- Apr 16, 2012, 12:22:40 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/inifis.F
r596 r622 438 438 endif 439 439 440 ! Test of incompatibility:441 442 440 write(*,*) "Gravitationnal sedimentation ?" 443 441 sedimentation=.true. ! default value 444 442 call getin("sedimentation",sedimentation) 445 443 write(*,*) " sedimentation = ",sedimentation 446 447 448 ! Test of incompatibility:449 444 450 445 write(*,*) "Compute water cycle ?" … … 453 448 write(*,*) " water = ",water 454 449 450 ! Test of incompatibility: 451 ! if water is true, there should be at least a tracer 452 if (water.and.(.not.tracer)) then 453 print*,'if water is ON, tracer must be ON too!' 454 stop 455 endif 456 455 457 write(*,*) "Include water condensation ?" 456 458 watercond=.false. ! default value … … 458 460 write(*,*) " watercond = ",watercond 459 461 462 ! Test of incompatibility: 463 ! if watercond is used, then water should be used too 464 if (watercond.and.(.not.water)) then 465 print*,'if watercond is used, water should be used too' 466 stop 467 endif 468 460 469 write(*,*) "Include water precipitation ?" 461 470 waterrain=.false. ! default value … … 497 506 call getin("Tsaldiff",Tsaldiff) 498 507 write(*,*) " Tsaldiff = ",Tsaldiff 499 500 ! Test of incompatibility:501 ! if watercond is used, then water should be used too502 503 if (watercond.and.(.not.watercond)) then504 print*,'if watercond is used, water should be used too'505 stop506 endif507 508 508 509 write(*,*) "Does user want to force cpp and mugaz?"
Note: See TracChangeset
for help on using the changeset viewer.