Ignore:
Timestamp:
Mar 6, 2016 6:36:17 PM (8 years ago)
Author:
raasch
Message:

NetCDF routines modularized; new parameter netcdf_deflate; further changes in the pmc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/check_parameters.f90

    r1765 r1783  
    1919! Current revisions:
    2020! -----------------
    21 !
     21! netcdf variables and module name changed,
     22! check of netcdf precision removed (is done in the netcdf module)
    2223!
    2324! Former revisions:
     
    312313    USE kinds
    313314    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
    315318    USE particle_attributes
    316319    USE pegrid
     
    350353   
    351354    LOGICAL     ::  found                            !<
    352     LOGICAL     ::  ldum                             !<
    353355   
    354356    REAL(wp)    ::  gradient                         !<
     
    37333735    SELECT CASE ( netcdf_data_format )
    37343736       CASE ( 1 )
    3735           output_format_netcdf = 'netCDF classic'
     3737          netcdf_data_format_string = 'netCDF classic'
    37363738       CASE ( 2 )
    3737           output_format_netcdf = 'netCDF 64bit offset'
     3739          netcdf_data_format_string = 'netCDF 64bit offset'
    37383740       CASE ( 3 )
    3739           output_format_netcdf = 'netCDF4/HDF5'
     3741          netcdf_data_format_string = 'netCDF4/HDF5'
    37403742       CASE ( 4 )
    3741           output_format_netcdf = 'netCDF4/HDF5 classic'
     3743          netcdf_data_format_string = 'netCDF4/HDF5 classic'
    37423744       CASE ( 5 )
    3743           output_format_netcdf = 'parallel netCDF4/HDF5'
     3745          netcdf_data_format_string = 'parallel netCDF4/HDF5'
    37443746       CASE ( 6 )
    3745           output_format_netcdf = 'parallel netCDF4/HDF5 classic'
     3747          netcdf_data_format_string = 'parallel netCDF4/HDF5 classic'
    37463748
    37473749    END SELECT
     
    38643866    ENDIF
    38653867
    3866 #if ! defined( __check )
    3867 !
    3868 !-- Check netcdf precison
    3869     ldum = .FALSE.
    3870     CALL define_netcdf_header( 'ch', ldum, 0 )
    3871 #endif
    38723868!
    38733869!-- Check, whether a constant diffusion coefficient shall be used
Note: See TracChangeset for help on using the changeset viewer.