Ignore:
Timestamp:
Jul 30, 2007 10:49:46 AM (17 years ago)
Author:
raasch
Message:

further preliminary changes concerning coupling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/check_parameters.f90

    r102 r103  
    10831083    IF ( surface_heatflux == 9999999.9 )  constant_heatflux     = .FALSE.
    10841084    IF ( top_heatflux     == 9999999.9 )  constant_top_heatflux = .FALSE.
     1085    IF ( top_momentumflux_u /= 9999999.9  .AND.  &
     1086         top_momentumflux_v /= 9999999.9 )  THEN
     1087       constant_top_momentumflux = .TRUE.
     1088    ELSEIF (  .NOT. ( top_momentumflux_u == 9999999.9  .AND.  &
     1089           top_momentumflux_v == 9999999.9 ) )  THEN   
     1090       IF ( myid == 0 )  THEN
     1091          PRINT*, '+++ check_parameters:'
     1092          PRINT*, '    both, top_momentumflux_u AND top_momentumflux_v'
     1093          PRINT*, '    must be set'
     1094       ENDIF
     1095       CALL local_stop
     1096    ENDIF
    10851097
    10861098!
Note: See TracChangeset for help on using the changeset viewer.