Changeset 3186 for palm/trunk/SOURCE/netcdf_data_input_mod.f90
- Timestamp:
- Jul 30, 2018 5:07:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r3183 r3186 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Read zsoil dimension lenght only if soil variables are provided 28 ! 29 ! 3183 2018-07-27 14:25:55Z suehring 27 30 ! Adjust input of dynamic driver according to revised Inifor version. 28 31 ! Replace simulated_time by time_since_reference_point. … … 2122 2125 CALL get_dimension_length( id_dynamic, init_3d%nzu, 'z' ) 2123 2126 CALL get_dimension_length( id_dynamic, init_3d%nzw, 'zw' ) 2124 CALL get_dimension_length( id_dynamic, init_3d%nzs, 'zsoil' ) 2127 IF ( check_existence( var_names, 'zsoil' ) ) & 2128 CALL get_dimension_length( id_dynamic, init_3d%nzs, 'zsoil' ) 2125 2129 ! 2126 2130 !-- Read also the horizontal dimensions. These are used just used fo
Note: See TracChangeset
for help on using the changeset viewer.