Changeset 4717 for palm/trunk/SOURCE/prognostic_equations.f90
- Timestamp:
- Sep 30, 2020 10:27:40 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/prognostic_equations.f90
r4671 r4717 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Fixes and optimizations of OpenMP parallelization, formatting of OpenMP 28 ! directives (J. Resler) 29 ! 30 ! 4671 2020-09-09 20:27:58Z pavelkrc 27 31 ! Implementation of downward facing USM and LSM surfaces 28 32 ! 29 33 ! 4649 2020-08-25 12:11:17Z raasch 30 34 ! File re-formatted to follow the PALM coding standard 31 !32 35 ! 33 36 ! 4370 2020-01-10 14:00:44Z raasch … … 397 400 CALL cpu_log( log_point(32), 'all progn.equations', 'start' ) 398 401 399 !$OMP PARALLEL PRIVATE (i,j) 400 !$OMP DO 402 !$OMP PARALLEL DO PRIVATE (i,j) SCHEDULE( STATIC ) 401 403 DO i = nxl, nxr 402 404 DO j = nys, nyn … … 409 411 !-- Module Inferface for exchange horiz after non_advective_processes but before advection. 410 412 !-- Therefore, non_advective_processes must not run for ghost points. 411 !$OMP END PARALLEL412 413 CALL module_interface_exchange_horiz() 413 414 !
Note: See TracChangeset
for help on using the changeset viewer.