Ignore:
Timestamp:
Mar 3, 2020 10:02:18 AM (4 years ago)
Author:
oliver.maas
Message:

added optional netcdf data input for wtm array input parameters

File:
1 edited

Legend:

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

    r4404 r4434  
    2525! -----------------
    2626! $Id$
     27! added optional netcdf data input for wtm array input parameters
     28!
     29! 4404 2020-02-12 17:01:53Z suehring
    2730! Fix misplaced preprocessor directives.
    2831!
     
    646649    CHARACTER(LEN=100) ::  input_file_uvem    = 'PIDS_UVEM'    !< Name of file which comprises static uv_exposure model input data
    647650    CHARACTER(LEN=100) ::  input_file_vm      = 'PIDS_VM'      !< Name of file which comprises virtual measurement data
    648    
     651    CHARACTER(LEN=100) ::  input_file_wtm     = 'PIDS_WTM'     !< Name of file which comprises wind turbine model input data
     652       
    649653    CHARACTER(LEN=25), ALLOCATABLE, DIMENSION(:) ::  string_values  !< output of string variables read from netcdf input files
    650654    CHARACTER(LEN=50), DIMENSION(:), ALLOCATABLE ::  vars_pids      !< variable in input file
     
    661665    LOGICAL ::  input_pids_uvem    = .FALSE.   !< Flag indicating whether uv-expoure-model input file containing static information exists
    662666    LOGICAL ::  input_pids_vm      = .FALSE.   !< Flag indicating whether input file for virtual measurements exist
     667    LOGICAL ::  input_pids_wtm     = .FALSE.   !< Flag indicating whether input file for wind turbine model exists
    663668
    664669    LOGICAL ::  collective_read = .FALSE.      !< Enable NetCDF collective read
     
    764769           input_pids_static,                                                  &
    765770           input_pids_dynamic, input_pids_vm, input_file_vm,                   &
     771           input_pids_wtm, input_file_wtm,                                     &
    766772           num_var_pids,                                                       &
    767773           pavement_pars_f, pavement_subsurface_pars_f, pavement_type_f,       &
     
    827833       INQUIRE( FILE = TRIM( input_file_vm )      // TRIM( coupling_char ),    &
    828834                EXIST = input_pids_vm )
     835       INQUIRE( FILE = TRIM( input_file_wtm )     // TRIM( coupling_char ),    &
     836                EXIST = input_pids_wtm )
    829837#endif
    830838
Note: See TracChangeset for help on using the changeset viewer.