Changeset 688
- Timestamp:
- Feb 20, 2011 6:29:10 PM (14 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r687 r688 5 5 ! ----------------- 6 6 ! 7 ! Bugfix for some logical expressions 8 ! (syntax was not compatible with all compilers) 7 9 ! 8 10 ! Former revisions: 9 11 ! ----------------- 10 12 ! 11 ! 686 2011-02-20 13:45:08Z gryschka $ 12 ! bugfix: Replaced "==" by ".EQ." in case of logical expression 13 ! $id: 13 14 ! 14 15 ! 680 2011-02-04 23:16:06Z gryschka $ … … 571 572 572 573 IF( momentum_advec == 'ws-scheme' .AND. & 573 call_psolver_at_all_substeps .EQ. .FALSE.) THEN574 .NOT. call_psolver_at_all_substeps ) THEN 574 575 message_string = 'psolver must be called at each RK3 substep when "'//& 575 576 TRIM(momentum_advec) // ' "is used for momentum_advec' -
palm/trunk/SOURCE/exchange_horiz.f90
r687 r688 5 5 ! ----------------- 6 6 ! 7 ! Bugfix for some logical expressions 8 ! (syntax was not compatible with all compilers) 7 9 ! 8 10 ! Former revisions: 9 11 ! ----------------- 10 ! 686 2011-02-20 13:45:08Z gryschka $11 ! bugfix: Replaced "==" by ".EQ." in case of logical expression12 ! 13 ! $id: 12 14 ! 13 15 ! 683 2011-02-09 14:25:15Z raasch … … 63 65 !-- Set i appropriately, because the coarser grids have different 64 66 !-- MPI datatypes type_xz, type_yz. 65 IF ( exchange_mg .EQ. .TRUE.) THEN67 IF ( exchange_mg ) THEN 66 68 i = grid_level 67 69 ELSE
Note: See TracChangeset
for help on using the changeset viewer.