Ignore:
Timestamp:
Sep 15, 2011 1:58:31 PM (13 years ago)
Author:
raasch
Message:

New:
---

The number of parallel I/O operations can be limited with new mrun-option -w.
(advec_particles, data_output_2d, data_output_3d, header, init_grid, init_pegrid, init_3d_model, modules, palm, parin, write_3d_binary)

Changed:


mrun option -T is obligatory

Errors:


Bugfix: No zero assignments to volume_flow_initial and volume_flow_area in
case of normal restart runs. (init_3d_model)

initialization of u_0, v_0. This is just to avoid access of uninitialized
memory in exchange_horiz_2d, which causes respective error messages
when the Intel thread checker (inspector) is used. (production_e)

Bugfix for ts limitation (prandtl_fluxes)

File:
1 edited

Legend:

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

    r710 r759  
    44! Current revisions:
    55! -----------------
    6 !
     6! Bugfix for ts limitation
    77!
    88! Former revisions:
     
    7474!--          ts must be limited, because otherwise overflow may occur in case of
    7575!--          us=0 when computing rif further below
    76              IF ( ts(j,i) < -1.05E5 )  ts = -1.0E5
    77              IF ( ts(j,i) >   1.0E5 )  ts =  1.0E5
     76             IF ( ts(j,i) < -1.05E5 )  ts(j,i) = -1.0E5
     77             IF ( ts(j,i) >   1.0E5 )  ts(j,i) =  1.0E5
    7878          ENDDO
    7979       ENDDO
Note: See TracChangeset for help on using the changeset viewer.