Ignore:
Timestamp:
Sep 28, 2012 6:46:45 AM (12 years ago)
Author:
raasch
Message:

subroutine prognostic_equations_noopt has been removed

File:
1 edited

Legend:

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

    r1017 r1019  
    44! Current revisions:
    55! -----------------
    6 !
     6! non-optimized version of prognostic_equations not allowed any more
    77!
    88! Former revisions:
     
    488488    SELECT CASE ( TRIM( loop_optimization ) )
    489489
    490        CASE ( 'acc', 'cache', 'noopt', 'vector' )
     490       CASE ( 'acc', 'cache', 'vector' )
    491491          CONTINUE
    492492
     
    646646!
    647647!-- Advection schemes:
    648 !       
    649 !-- Set the LOGICALS to enhance the performance.
    650     IF ( momentum_advec == 'ws-scheme' )    ws_scheme_mom = .TRUE.
    651     IF ( scalar_advec   == 'ws-scheme'   )  ws_scheme_sca = .TRUE.
    652    
    653648    IF ( momentum_advec /= 'pw-scheme'  .AND.  momentum_advec /= 'ws-scheme' ) &
    654649    THEN
     
    673668       CALL message( 'check_parameters', 'PA0024', 1, 2, 0, 6, 0 )
    674669    ENDIF
     670    IF ( scalar_advec == 'bc-scheme'  .AND.  loop_optimization == 'cache' ) &
     671    THEN
     672       message_string = 'advection_scheme scalar_advec = "' &
     673         // TRIM( scalar_advec ) // '" not implemented for & loop_optimization = "' // &
     674         TRIM( loop_optimization ) // '"'
     675       CALL message( 'check_parameters', 'PA0026', 1, 2, 0, 6, 0 )
     676    ENDIF
    675677
    676678    IF ( use_sgs_for_particles  .AND.  .NOT. use_upstream_for_tke )  THEN
     
    686688       CALL message( 'check_parameters', 'PA0349', 1, 2, 0, 6, 0 )
    687689    ENDIF
     690
     691!
     692!-- Set LOGICAL switches to enhance performance
     693    IF ( momentum_advec == 'ws-scheme' )    ws_scheme_mom = .TRUE.
     694    IF ( scalar_advec   == 'ws-scheme'   )  ws_scheme_sca = .TRUE.
    688695
    689696!
Note: See TracChangeset for help on using the changeset viewer.