Ignore:
Timestamp:
Feb 19, 2018 4:32:21 PM (6 years ago)
Author:
knoop
Message:

Preliminary gust module interface implemented

File:
1 edited

Legend:

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

    r2798 r2817  
    2525! -----------------
    2626! $Id$
     27! Preliminary gust module interface implemented
     28!
     29! 2798 2018-02-09 17:16:39Z suehring
    2730! Consider also default-type surfaces for surface temperature output.
    2831!
     
    602605    USE dvrp_variables
    603606    USE grid_variables
     607    USE gust_mod,                                                              &
     608        ONLY: gust_check_data_output, gust_check_data_output_pr,               &
     609              gust_check_parameters, gust_module_enabled
    604610    USE indices
    605611    USE land_surface_model_mod,                                                &
     
    14131419    IF ( radiation )  CALL radiation_check_parameters
    14141420!
     1421!-- When gust module is used, perform additional checks
     1422    IF ( gust_module_enabled )  CALL gust_check_parameters
     1423!
    14151424!-- When large-scale forcing or nudging is used, peform addtional checks
    14161425    IF ( large_scale_forcing  .OR.  nudging )  CALL lsf_nudging_check_parameters
     
    30993108                                                     unit, dopr_unit(i) )
    31003109             ENDIF
     3110!
     3111!--          Block of gust module profile outputs
     3112             IF ( unit == 'illegal'  .AND.  gust_module_enabled  )  THEN
     3113                   CALL gust_check_data_output_pr( data_output_pr(i), i, unit, &
     3114                                                   dopr_unit(i) )
     3115             ENDIF
    31013116
    31023117             IF ( unit == 'illegal' )  THEN                                       
     
    34183433             IF ( unit == 'illegal' )  THEN
    34193434                CALL radiation_check_data_output( var, unit, i, ilen, k )
     3435             ENDIF
     3436
     3437!
     3438!--          Block of gust module outputs
     3439             IF ( unit == 'illegal'  .AND.  gust_module_enabled  )  THEN
     3440                CALL gust_check_data_output ( var, unit )
    34203441             ENDIF
    34213442
Note: See TracChangeset for help on using the changeset viewer.