Changeset 1783 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Mar 6, 2016 6:36:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r1765 r1783 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! netcdf variables and module name changed, 22 ! check of netcdf precision removed (is done in the netcdf module) 22 23 ! 23 24 ! Former revisions: … … 312 313 USE kinds 313 314 USE model_1d 314 USE netcdf_control 315 USE netcdf_interface, & 316 ONLY: dopr_unit, do2d_unit, do3d_unit, netcdf_data_format, & 317 netcdf_data_format_string 315 318 USE particle_attributes 316 319 USE pegrid … … 350 353 351 354 LOGICAL :: found !< 352 LOGICAL :: ldum !<353 355 354 356 REAL(wp) :: gradient !< … … 3733 3735 SELECT CASE ( netcdf_data_format ) 3734 3736 CASE ( 1 ) 3735 output_format_netcdf= 'netCDF classic'3737 netcdf_data_format_string = 'netCDF classic' 3736 3738 CASE ( 2 ) 3737 output_format_netcdf= 'netCDF 64bit offset'3739 netcdf_data_format_string = 'netCDF 64bit offset' 3738 3740 CASE ( 3 ) 3739 output_format_netcdf= 'netCDF4/HDF5'3741 netcdf_data_format_string = 'netCDF4/HDF5' 3740 3742 CASE ( 4 ) 3741 output_format_netcdf= 'netCDF4/HDF5 classic'3743 netcdf_data_format_string = 'netCDF4/HDF5 classic' 3742 3744 CASE ( 5 ) 3743 output_format_netcdf= 'parallel netCDF4/HDF5'3745 netcdf_data_format_string = 'parallel netCDF4/HDF5' 3744 3746 CASE ( 6 ) 3745 output_format_netcdf= 'parallel netCDF4/HDF5 classic'3747 netcdf_data_format_string = 'parallel netCDF4/HDF5 classic' 3746 3748 3747 3749 END SELECT … … 3864 3866 ENDIF 3865 3867 3866 #if ! defined( __check )3867 !3868 !-- Check netcdf precison3869 ldum = .FALSE.3870 CALL define_netcdf_header( 'ch', ldum, 0 )3871 #endif3872 3868 ! 3873 3869 !-- Check, whether a constant diffusion coefficient shall be used
Note: See TracChangeset
for help on using the changeset viewer.