Ignore:
Timestamp:
Jun 29, 2017 1:31:14 PM (7 years ago)
Author:
raasch
Message:

NEC related code partly removed, host variable partly removed, host specific code completely removed, default values for host, loop_optimization and termination time_needed changed

File:
1 edited

Legend:

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

    r2292 r2300  
    2525! -----------------
    2626! $Id$
     27! host-specific settings and checks removed
     28!
     29! 2292 2017-06-20 09:51:42Z schwenkel
    2730! Implementation of new microphysic scheme: cloud_scheme = 'morrison'
    2831! includes two more prognostic equations for cloud drop concentration (nc) 
     
    563566
    564567!
    565 !-- Warning, if host is not set
    566     IF ( host(1:1) == ' ' )  THEN
    567        message_string = '"host" is not set. Please check that environment ' // &
    568                         'variable "localhost" & is set before running PALM'
    569        CALL message( 'check_parameters', 'PA0001', 0, 0, 0, 6, 0 )
    570     ENDIF
    571 
    572 !
    573568!-- Check the coupling mode
    574569!> @todo Check if any queries for other coupling modes (e.g. precursor_ocean) are missing
     
    805800!
    806801!-- Check the general loop optimization method
    807     IF ( loop_optimization == 'default' )  THEN
    808        IF ( host(1:3) == 'nec' )  THEN
    809           loop_optimization = 'vector'
    810        ELSE
    811           loop_optimization = 'cache'
    812        ENDIF
    813     ENDIF
    814 
    815802    SELECT CASE ( TRIM( loop_optimization ) )
    816803
     
    38303817
    38313818!
    3832 !-- Set default value of the time needed to terminate a model run
    3833     IF ( termination_time_needed == -1.0_wp )  THEN
    3834        IF ( host(1:3) == 'ibm' )  THEN
    3835           termination_time_needed = 300.0_wp
    3836        ELSE
    3837           termination_time_needed = 35.0_wp
    3838        ENDIF
    3839     ENDIF
    3840 
    3841 !
    38423819!-- Check pressure gradient conditions
    38433820    IF ( dp_external  .AND.  conserve_volume_flow )  THEN
Note: See TracChangeset for help on using the changeset viewer.