Ignore:
Timestamp:
Dec 12, 2017 5:27:04 PM (6 years ago)
Author:
Giersch
Message:

Error message PA0476 added. Bugfix in case of coupled runs.

File:
1 edited

Legend:

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

    r2669 r2688  
    2525! -----------------
    2626! $Id$
     27! Check if humidity is set to TRUE in the _p3d file for coupled runs
     28!
     29! 2669 2017-12-06 16:03:27Z raasch
    2730! mrun-string replaced by palmrun
    2831!
     
    647650
    648651!
     652!-- Check if humidity is set to TRUE in case of the atmospheric run (for coupled runs)
     653    IF ( coupling_mode == 'atmosphere_to_ocean' .AND. humidity == .FALSE.) THEN
     654       message_string = ' Humidity has to be set to .T. in the _p3d file for ' //      &
     655                        'coupled runs between ocean and atmosphere.'
     656       CALL message( 'check_parameters', 'PA0476', 1, 2, 0, 6, 0 )
     657    ENDIF
     658   
     659!
    649660!-- Check dt_coupling, restart_time, dt_restart, end_time, dx, dy, nx and ny
    650661    IF ( coupling_mode /= 'uncoupled'  .AND.                                   &
Note: See TracChangeset for help on using the changeset viewer.