Ignore:
Timestamp:
Sep 27, 2012 9:23:24 AM (12 years ago)
Author:
raasch
Message:

Starting with changes required for GPU optimization. OpenACC statements for using NVIDIA GPUs added.
Adjustment of mixing length to the Prandtl mixing length at first grid point above ground removed.
mask array is set zero for ghost boundaries

File:
1 edited

Legend:

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

    r1011 r1015  
    77! Current revisions:
    88! ------------------
    9 !
     9! mask is set to zero for ghost boundaries
    1010!
    1111! Former revisions:
     
    15301530!
    15311531!-- Pre-set masks for regional statistics. Default is the total model domain.
     1532!-- Ghost points are excluded because counting values at the ghost boundaries
     1533!-- would bias the statistics
    15321534    rmask = 1.0
     1535    rmask(nxlg:nxl-1,:,:) = 0.0;  rmask(nxr+1:nxrg,:,:) = 0.0
     1536    rmask(:,nysg:nys-1,:) = 0.0;  rmask(:,nyn+1:nyng,:) = 0.0
    15331537
    15341538!
Note: See TracChangeset for help on using the changeset viewer.