Ignore:
Timestamp:
Nov 24, 2010 4:10:51 PM (13 years ago)
Author:
raasch
Message:

New:
---

Changed:


Parameters moved from d3par to inipar: call_psolver_at_all_substeps,
cfl_factor, cycle_mg, mg_cycles,mg_switch_to_pe0_level, ngsrb, nsor,
omega_sor, prandtl_number, psolver, rayleigh_damping_factor,
rayleigh_damping_height, residual_limit (parin, read_var_list, write_var_list)

Due to this change, in routine skip_var_list (end of file read_var_list.f90),
variable ldum is replaced by cdum(LEN=1), because otherwise read errors (too
few data on file) would appear due to one of the additional parameters
(cycle_mg, which is a string of one single character) which are now stored
on the restart file.

Weblink to error message database changed to new trac server (message)

Errors:


Bugfix concerning check of cross-section levels on netcdf-files to be
extended (xz,yz) (netcdf)

Bugfix in opening of cross section netcdf-files (parallel opening with
netcdf4 only works for netcdf_data_format > 2) (check_open)

Default values of surface_scalarflux and surface_waterflux changed from 0.0
to 9999999.9. Giving the parameter the default values means, that the
respective surface fluxes are calculated by the MO-relations, so the old default
value did not allow to set the surface fluxes to zero explicitly.

File:
1 edited

Legend:

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

    r565 r600  
    77! Current revisions:
    88! ------------------
    9 !
     9! Bugfix concerning check of cross-section levels on netcdf-files to be
     10! extended (xz,yz)
    1011!
    1112! Former revisions:
     
    22412242
    22422243!
    2243 !--       Write yv_xz data 
     2244!--       Write yv_xz data
    22442245          DO  i = 1, ns
    22452246             IF( section(i,2) == -1 )  THEN
     
    23872388          DO  i = 1, ns
    23882389             IF ( section(i,2) /= -1 )  THEN
    2389                 IF ( ( section(i,2) * dy ) /= netcdf_data(i) )  THEN
     2390                IF ( ( ( section(i,2) + 0.5 ) * dy ) /= netcdf_data(i) )  THEN
    23902391                   message_string = 'NetCDF file for cross-sections ' //     &
    23912392                               TRIM( var ) // ' from previous run found,' // &
     
    29712972          DO  i = 1, ns
    29722973             IF ( section(i,3) /= -1 )  THEN
    2973                 IF ( ( section(i,3) * dx ) /= netcdf_data(i) )  THEN
     2974                IF ( ( ( section(i,3) + 0.5 ) * dx ) /= netcdf_data(i) )  THEN
    29742975                   message_string = 'NetCDF file for cross-sections ' //    &
    29752976                              TRIM( var ) // ' from previous run found,' // &
Note: See TracChangeset for help on using the changeset viewer.