Ignore:
Timestamp:
Jan 18, 2011 4:19:48 PM (13 years ago)
Author:
suehring
Message:

Right computation of the pressure using Runge-Kutta weighting coefficients. Consideration of the pressure gradient during the time integration removed. Removed bugfix concerning velocity variances.

File:
1 edited

Legend:

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

    r668 r673  
    55! Current revisions:
    66! -----------------
    7 !
     7! +weight_pres to weight the respective contribution of the Runge-Kutta
     8! substeps. +p_sub to buffer the intermediate contributions for Multigrid and
     9! SOR.
    810! Former revisions:
    911! -----------------
     
    252254    REAL, DIMENSION(:,:,:), ALLOCATABLE ::                                     &
    253255          canopy_heat_flux, cdc, d, diss, lad_s, lad_u, lad_v, lad_w, lai,     &
    254           l_wall, sec, sls, tend, u_m_l, u_m_n, u_m_r, u_m_s, v_m_l, v_m_n,    &
    255           v_m_r, v_m_s, w_m_l, w_m_n, w_m_r, w_m_s
     256          l_wall, p_sub, sec, sls, tend, u_m_l, u_m_n, u_m_r, u_m_s, v_m_l,    &
     257          v_m_n, v_m_r, v_m_s, w_m_l, w_m_n, w_m_r, w_m_s
    256258
    257259    REAL, DIMENSION(:,:,:), ALLOCATABLE, TARGET ::                             &
     
    13821384    REAL ::     u_max, v_max, w_max
    13831385    REAL, DIMENSION(:), ALLOCATABLE       ::  sums_divnew_l, sums_divold_l, &
    1384                                               weight_substep
     1386                                              weight_substep, weight_pres
    13851387    REAL, DIMENSION(:,:), ALLOCATABLE     ::  sums, sums_wsts_bc_l,        &
    13861388                                              sums_wsus_ws_l, sums_wsvs_ws_l,&
Note: See TracChangeset for help on using the changeset viewer.