Changeset 3456 for palm/trunk/UTIL/inifor/src/inifor_grid.f90
- Timestamp:
- Oct 30, 2018 2:29:54 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/inifor/src/inifor_grid.f90
r3447 r3456 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Remove surface forcing from netCDF output (radiation + precipitation) 29 ! NetCDf output of internal arrays only with --debug option 30 ! 31 ! 32 ! 3447 2018-10-29 15:52:54Z eckhard 28 33 ! Renamed source files for compatibilty with PALM build system 29 34 ! … … 185 190 LOGICAL :: ls_forcing_variables_required 186 191 LOGICAL :: profile_grids_required 192 LOGICAL :: surface_forcing_required 187 193 188 194 TYPE(nc_var), ALLOCATABLE, TARGET :: input_var_table(:) !< table of input variables … … 371 377 boundary_variables_required = TRIM( cfg % bc_mode ) == 'real' 372 378 ls_forcing_variables_required = TRIM( cfg % bc_mode ) == 'ideal' 379 surface_forcing_required = .FALSE. 373 380 374 381 IF ( ls_forcing_variables_required ) THEN … … 3270 3277 var % dimvarids(3) = output_file % dimvarid_time 3271 3278 var % dimvarids(1:2) = output_file % dimvarids_soil(1:2) 3272 var % to_be_processed = boundary_variables_required3279 var % to_be_processed = surface_forcing_required 3273 3280 var % is_internal = .FALSE. 3274 3281 var % task = "interpolate_2d"
Note: See TracChangeset
for help on using the changeset viewer.