Changeset 4434 for palm/trunk/SOURCE/netcdf_data_input_mod.f90
- Timestamp:
- Mar 3, 2020 10:02:18 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r4404 r4434 25 25 ! ----------------- 26 26 ! $Id$ 27 ! added optional netcdf data input for wtm array input parameters 28 ! 29 ! 4404 2020-02-12 17:01:53Z suehring 27 30 ! Fix misplaced preprocessor directives. 28 31 ! … … 646 649 CHARACTER(LEN=100) :: input_file_uvem = 'PIDS_UVEM' !< Name of file which comprises static uv_exposure model input data 647 650 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 649 653 CHARACTER(LEN=25), ALLOCATABLE, DIMENSION(:) :: string_values !< output of string variables read from netcdf input files 650 654 CHARACTER(LEN=50), DIMENSION(:), ALLOCATABLE :: vars_pids !< variable in input file … … 661 665 LOGICAL :: input_pids_uvem = .FALSE. !< Flag indicating whether uv-expoure-model input file containing static information exists 662 666 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 663 668 664 669 LOGICAL :: collective_read = .FALSE. !< Enable NetCDF collective read … … 764 769 input_pids_static, & 765 770 input_pids_dynamic, input_pids_vm, input_file_vm, & 771 input_pids_wtm, input_file_wtm, & 766 772 num_var_pids, & 767 773 pavement_pars_f, pavement_subsurface_pars_f, pavement_type_f, & … … 827 833 INQUIRE( FILE = TRIM( input_file_vm ) // TRIM( coupling_char ), & 828 834 EXIST = input_pids_vm ) 835 INQUIRE( FILE = TRIM( input_file_wtm ) // TRIM( coupling_char ), & 836 EXIST = input_pids_wtm ) 829 837 #endif 830 838
Note: See TracChangeset
for help on using the changeset viewer.