Ignore:
Timestamp:
Mar 24, 2020 12:21:00 PM (4 years ago)
Author:
Giersch
Message:

Profile output of the Kolmogorov length scale added

File:
1 edited

Legend:

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

    r4466 r4472  
    2020! Current revisions:
    2121! ------------------
    22 ! 
    23 ! 
     22!
     23!
    2424! Former revisions:
    2525! -----------------
    2626! $Id$
     27! OPENACC COPYIN directive for ddx and ddy added
     28!
     29! 4466 2020-03-20 16:14:41Z suehring
    2730! Add advection fluxes to ACC copyin
    2831!
     
    289292        ONLY:  flight_measurement
    290293
     294    USE grid_variables,                                                                            &
     295        ONLY:  ddx, ddy
     296
    291297    USE indices,                                                                                   &
    292298        ONLY:  nbgp, nx, nxl, nxlg, nxr, nxrg, nzb, nzt
     
    524530!$ACC DATA &
    525531!$ACC COPYIN(tsc(1:5))
     532
     533!
     534!-- Copy data from grid_variables
     535!$ACC DATA &
     536!$ACC COPYIN(ddx, ddy)
    526537
    527538!
     
    565576!$ACC COPY(sums_wsss_ws_l(nzb:nzt+1,0)) &
    566577!$ACC COPY(sums_salsa_ws_l(nzb:nzt+1,0))
     578
     579!
     580!-- Next statement is to avoid compiler warnings about unused variables. Please
     581!-- remove in case that you are using them. ddx and ddy need to be defined in
     582!-- time_integration because of ACC COPYIN directive.
     583    ddx = ddx
     584    ddy = ddy
    567585
    568586#if defined( _OPENACC )
     
    17271745!$ACC END DATA
    17281746!$ACC END DATA
     1747!$ACC END DATA
    17291748
    17301749#if defined( __parallel )
Note: See TracChangeset for help on using the changeset viewer.