Changeset 4806 for palm/trunk/SOURCE/netcdf_data_input_mod.f90
- Timestamp:
- Dec 2, 2020 9:00:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r4767 r4806 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! Deactivated reading of building_obstruction_full due to improper implementation (conflicts with 22 ! building_obstruction_f and it is also not used anywhere else in the code). 22 23 ! 23 24 ! Former revisions: … … 628 629 !-- Define 3D variables of type NC_BYTE 629 630 TYPE(int_3d_8bit) :: building_obstruction_f !< input variable for building obstruction 630 TYPE(int_3d_8bit) :: building_obstruction_full !< input variable for building obstruction631 ! TYPE(int_3d_8bit) :: building_obstruction_full !< input variable for building obstruction 631 632 ! 632 633 !-- Define 2D variables of type NC_INT … … 2094 2095 ! 2095 2096 !-- Read building obstruction 2096 IF ( check_existence( var_names, 'obstruction' ) ) THEN 2097 building_obstruction_full%from_file = .TRUE. 2098 ! 2099 !-- Input 3D uvem building obstruction 2100 ALLOCATE( building_obstruction_full%var_3d(0:44,0:2,0:2) ) 2101 CALL get_variable( id_uvem, 'obstruction', building_obstruction_full%var_3d, 0, 2, 0, 2, & 2102 0, 44 ) 2103 ELSE 2104 building_obstruction_full%from_file = .FALSE. 2105 ENDIF 2097 ! @bug This part is deactivated due to improper implementation: conflicts with 2098 ! building_obstruction_f and it is also not used anywhere else in the code 2099 ! IF ( check_existence( var_names, 'obstruction' ) ) THEN 2100 ! building_obstruction_full%from_file = .TRUE. 2101 ! ! 2102 ! !-- Input 3D uvem building obstruction 2103 ! ALLOCATE( building_obstruction_full%var_3d(0:44,0:2,0:2) ) 2104 ! CALL get_variable( id_uvem, 'obstruction', building_obstruction_full%var_3d, & 2105 ! 0, 2, 0, 2, 0, 44 ) 2106 ! ELSE 2107 ! building_obstruction_full%from_file = .FALSE. 2108 ! ENDIF 2106 2109 ! 2107 2110 IF ( check_existence( var_names, 'obstruction' ) ) THEN
Note: See TracChangeset
for help on using the changeset viewer.