Ignore:
Timestamp:
Mar 1, 2010 8:30:24 AM (14 years ago)
Author:
raasch
Message:

New:
---
Output in NetCDF4-format. New d3par-parameter netcdf_data_format.

(check_open, check_parameters, close_file, data_output_2d, data_output_3d, header, modules, netcdf, parin)

Modules to be loaded for compilation (mbuild) or job execution (mrun)
can be given in the configuration file using variable modules. Example:

%modules ifort/11.0.069:netcdf lcsgih parallel

This method replaces the (undocumented) mpilib-variable.

WARNING: All fixed settings of modules in the scripts mbuild, mrun, and subjob
have been removed! Please set the modules variable appropriately in your
configuration file. (mbuild, mrun, subjob)

Changed:


Parameters netcdf_64bit and netcdf_64bit_3d have been removed. Use
netcdf_data_format = 2 for choosing the classic 64bit-offset format (this is
the default). The offset-format can not be set independently for the
3d-output-data any more.

Parameters netcdf_format_mask, netcdf_format_mask_av, and variables
nc_format_mask, format_parallel_io removed. They are replaced by the new
parameter netcdf_data_format. (check_open, close_file,
data_output_mask, header, init_masks, modules, parin)

Errors:


bugfix in trunk/UTIL/Makefile: forgot to compile for interpret_config

Bugfix: timeseries data have to be collected by PE0 (user_statistics)

File:
1 edited

Legend:

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

    r484 r493  
    44! Current revisions:
    55! -----------------
    6 !
     6! netcdf_data_format is checked
    77!
    88! Former revisions:
     
    26922692
    26932693!
     2694!-- Check the NetCDF data format
     2695    IF ( netcdf_data_format > 2 )  THEN
     2696#if defined( __netcdf4 )
     2697       CONTINUE
     2698#else
     2699       message_string = 'NetCDF: NetCDF4 format requested but no ' // &
     2700                        'cpp-directive __netcdf4 given & switch '  // &
     2701                        'back to 64-bit offset format'
     2702       CALL message( 'check_parameters', 'PA0171', 0, 1, 0, 6, 0 )
     2703       netcdf_data_format = 2
     2704#endif
     2705    ENDIF
     2706
     2707!
    26942708!-- Check netcdf precison
    26952709    ldum = .FALSE.
Note: See TracChangeset for help on using the changeset viewer.