Ignore:
Timestamp:
Jun 14, 2019 2:04:35 PM (5 years ago)
Author:
raasch
Message:

bugfix: decycling of chemistry species after nesting data transfer, exchange of ghost points and boundary conditions separated for chemical species and SALSA module, nest_chemistry option removed, netcdf variable NF90_NOFILL is used as argument instead of 1 in calls to NF90_DEF_VAR_FILL

File:
1 edited

Legend:

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

    r3995 r4029  
    2525! -----------------
    2626! $Id$
     27! netcdf variable NF90_NOFILL is used as argument instead of "1" in calls to NF90_DEF_VAR_FILL
     28!
     29! 3995 2019-05-22 18:59:54Z suehring
    2730! output of turbulence intensity added
    2831!
     
    20162019                nc_stat = NF90_DEF_VAR_FILL( id_set_3d(av),     &
    20172020                                             id_var_do3d(av,i), &
    2018                                              1, 0 )
     2021                                             NF90_NOFILL, 0 )
    20192022                CALL netcdf_handle_error( 'netcdf_define_header', 532 )
    20202023!
     
    30003003                   nc_stat = NF90_DEF_VAR_FILL( id_set_xy(av),     &
    30013004                                                id_var_do2d(av,i), &
    3002                                                 1, 0 )
     3005                                                NF90_NOFILL, 0 )
    30033006                   CALL netcdf_handle_error( 'netcdf_define_header', 533 )
    30043007!
     
    38883891                   nc_stat = NF90_DEF_VAR_FILL( id_set_xz(av),     &
    38893892                                                id_var_do2d(av,i), &
    3890                                                 1, 0 )
     3893                                                NF90_NOFILL, 0 )
    38913894                   CALL netcdf_handle_error( 'netcdf_define_header', 534 )
    38923895!
     
    47444747                   nc_stat = NF90_DEF_VAR_FILL( id_set_yz(av),     &
    47454748                                                id_var_do2d(av,i), &
    4746                                                 1, 0 )
     4749                                                NF90_NOFILL, 0 )
    47474750                   CALL netcdf_handle_error( 'netcdf_define_header', 535 )
    47484751!
Note: See TracChangeset for help on using the changeset viewer.