Changeset 555 for palm/trunk/SOURCE


Ignore:
Timestamp:
Sep 7, 2010 7:32:53 AM (14 years ago)
Author:
raasch
Message:

New:
---

Changed:


Documentation for surface_heatflux in case of prandtl_layer = .F. improved.

bugfix for wrong netcdf/3.6.3 module on lcsgi (mbuild, mrun)

Errors:


Bugfix in if statement (disturb_heatflux)

Bugfix: in 2201 statement: closing " was missing (interpret_config)

Bugfix: default setting of nzb_local for flat topography (init_grid)

Bugfix: wrong dimension used for ts_value_l (user_statistics)

disturb_heatflux, init_grid, interpret_config, user_statistics

Location:
palm/trunk/SOURCE
Files:
3 edited

Legend:

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

    r484 r555  
    44! Current revisions:
    55! -----------------
    6 !
     6! Bugfix in if statement
    77!
    88! Former revisions:
     
    5252             IF ( nzb_s_inner(j,i) == 0 )  THEN
    5353                shf(j,i) = randomnumber * surface_heatflux
     54             ELSE
    5455!
    5556!--             Over topography surface_heatflux is replaced by wall_heatflux(0)
    5657                shf(j,i) = randomnumber * wall_heatflux(0)
    57              ELSE
    5858             ENDIF
    5959          ENDIF
  • palm/trunk/SOURCE/init_grid.f90

    r392 r555  
    44! Current revisions:
    55! -----------------
    6 !
     6! Bugfix: default setting of nzb_local for flat topographie
    77!
    88! Former revisions:
     
    344344       CASE ( 'flat' )
    345345!
    346 !--       No actions necessary
     346!--       nzb_local is required for the multigrid solver
     347          nzb_local = 0
    347348
    348349       CASE ( 'single_building' )
  • palm/trunk/SOURCE/user_statistics.f90

    r494 r555  
    44! Current revisions:
    55! -----------------
    6 !
     6! Bugfix: wrong dimension used for ts_value_l
    77!
    88! Former revisions:
     
    7777!--    velocities u and v.
    7878!       ts_value_l = 0.0
    79 !       ts_value_l(dots_num_palm+1,sr) = ABS( u_max )
    80 !       ts_value_l(dots_num_palm+2,sr) = ABS( v_max )
     79!       ts_value_l(dots_num_palm+1) = ABS( u_max )
     80!       ts_value_l(dots_num_palm+2) = ABS( v_max )
    8181!
    8282!--     Collect / send values to PE0, because only PE0 outputs the time series.
Note: See TracChangeset for help on using the changeset viewer.