source: palm/trunk/SOURCE/swap_timelevel.f90 @ 1771

Last change on this file since 1771 was 1767, checked in by raasch, 8 years ago

last commit documented

  • Property svn:keywords set to Id
File size: 7.3 KB
RevLine 
[1682]1!> @file swap_timelevel.f90
[1036]2!--------------------------------------------------------------------------------!
3! This file is part of PALM.
4!
5! PALM is free software: you can redistribute it and/or modify it under the terms
6! of the GNU General Public License as published by the Free Software Foundation,
7! either version 3 of the License, or (at your option) any later version.
8!
9! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12!
13! You should have received a copy of the GNU General Public License along with
14! PALM. If not, see <http://www.gnu.org/licenses/>.
15!
[1310]16! Copyright 1997-2014 Leibniz Universitaet Hannover
[1036]17!--------------------------------------------------------------------------------!
18!
[484]19! Current revisions:
[1]20! -----------------
[1748]21!
[1767]22!
[1]23! Former revisions:
24! -----------------
[3]25! $Id: swap_timelevel.f90 1767 2016-02-29 08:47:57Z hoffmann $
[39]26!
[1767]27! swap_timelevel.f90 1766 2016-02-29 08:37:15Z raasch
28! setting the swap level for pmc data transfer
29!
[1748]30! 1747 2016-02-08 12:25:53Z raasch
31! explicit loops in nopointer case to omit craypointer option of pgi compiler
32!
[1683]33! 1682 2015-10-07 23:56:08Z knoop
34! Code annotations made doxygen readable
35!
[1497]36! 1496 2014-12-02 17:25:50Z maronga
37! Added swapping of land surface model quantities
38!
[1375]39! 1374 2014-04-25 12:55:07Z raasch
40! bugfix: use-statement for nopointer-case added
41!
[1321]42! 1320 2014-03-20 08:40:49Z raasch
43! ONLY-attribute added to USE-statements,
44! revision history before 2012 removed,
[1319]45! 1318 2014-03-17 13:35:16Z raasch
46! module interfaces removed
47!
[1116]48! 1115 2013-03-26 18:16:16Z hoffmann
49! calculation of qr and nr is restricted to precipitation
50!
[1112]51! 1111 2013-03-08 23:54:10Z raasch
52! openACC directives added
53!
[1054]54! 1053 2012-11-13 17:11:03Z hoffmann
55! swap of timelevels for nr, qr added
56!
[1037]57! 1036 2012-10-22 13:43:42Z raasch
58! code put under GPL (PALM 3.9)
59!
[1033]60! 1032 2012-10-21 13:03:21Z letzel
61! save memory by not allocating pt_2 in case of neutral = .T.
62!
[1011]63! 1010 2012-09-20 07:59:54Z raasch
64! cpp switch __nopointer added for pointer free version
65!
[1002]66! 1001 2012-09-13 14:08:46Z raasch
67! all actions concerning leapfrog scheme removed
68!
[1]69! Revision 1.1  2000/01/10  10:08:58  10:08:58  raasch (Siegfried Raasch)
70! Initial revision
71!
72!
73! Description:
74! ------------
[1682]75!> Swap of timelevels of variables after each timestep
[3]76!------------------------------------------------------------------------------!
[1682]77 SUBROUTINE swap_timelevel
78 
[1]79
[1374]80#if defined( __nopointer )
[1320]81    USE arrays_3d,                                                             &
[1374]82        ONLY:  e, e_p, nr, nr_p, pt, pt_p, q, q_p, qr, qr_p, sa, sa_p, u, u_p, &
83               v, v_p, w, w_p
84#else
85    USE arrays_3d,                                                             &
[1320]86        ONLY:  e, e_1, e_2, e_p, nr, nr_1, nr_2, nr_p, pt, pt_1, pt_2, pt_p, q,&
87               q_1, q_2, q_p, qr, qr_1, qr_2, qr_p, sa, sa_1, sa_2, sa_p, u,   &
88               u_1, u_2, u_p, v, v_1, v_2, v_p, w, w_1, w_2, w_p
[1496]89
[1374]90#endif
[1]91
[1551]92    USE land_surface_model_mod,                                                &
93        ONLY: land_surface, lsm_swap_timelevel
94
[1320]95    USE cpulog,                                                                &
96        ONLY: cpu_log, log_point
97
98    USE control_parameters,                                                    &
99        ONLY:  cloud_physics, constant_diffusion, humidity, icloud_scheme,     &
100               neutral, ocean, passive_scalar, precipitation, timestep_count
101
[1747]102    USE indices,                                                               &
103        ONLY:  nxlg, nxrg, nyng, nysg, nzb, nzt
[1766]104
105    USE pmc_interface,                                                         &
106        ONLY: nested_run, pmci_set_swaplevel
107
108
[1]109    IMPLICIT NONE
110
[1766]111    INTEGER ::  i, j, k     !> loop indices
112    INTEGER ::  swap_level  !> swap_level for steering the pmc data transfer
[1747]113
[1]114!
115!-- Incrementing timestep counter
116    timestep_count = timestep_count + 1
117
118!
[1001]119!-- Swap of variables
[1010]120#if defined( __nopointer )
121    CALL cpu_log( log_point(28), 'swap_timelevel (nop)', 'start' )
122
[1111]123    !$acc kernels present( pt, pt_p, u, u_p, v, v_p, w, w_p )
[1747]124    !$acc loop independent
125    DO  i = nxlg, nxrg
126       !$acc loop independent
127       DO  j = nysg, nyng
128          !$acc loop independent
129          DO  k = nzb, nzt+1
130             u(k,j,i)  = u_p(k,j,i)
131             v(k,j,i)  = v_p(k,j,i)
132             w(k,j,i)  = w_p(k,j,i)
133             pt(k,j,i) = pt_p(k,j,i)
134          ENDDO
135       ENDDO
136    ENDDO
137!    u  = u_p
138!    v  = v_p
139!    w  = w_p
140!    pt = pt_p
[1111]141    !$acc end kernels
[1010]142    IF ( .NOT. constant_diffusion )  THEN
[1111]143       !$acc kernels present( e, e_p )
[1747]144       !$acc loop independent
145       DO  i = nxlg, nxrg
146          !$acc loop independent
147          DO  j = nysg, nyng
148             !$acc loop independent
149             DO  k = nzb, nzt+1
150                e(k,j,i) = e_p(k,j,i)
151             ENDDO
152          ENDDO
153       ENDDO
154!       e = e_p
[1111]155       !$acc end kernels
[1010]156    ENDIF
157    IF ( ocean )  THEN
158       sa = sa_p
159    ENDIF
160    IF ( humidity  .OR.  passive_scalar )  THEN
[1053]161       q = q_p             
162       IF ( cloud_physics  .AND.  icloud_scheme == 0 )  THEN
163          qr = qr_p
164          nr = nr_p
165       ENDIF
[1010]166    ENDIF
167
[1496]168    IF ( land_surface )  THEN
[1551]169       CALL lsm_swap_timelevel ( 0 )
[1496]170    ENDIF
171
172
[1010]173    CALL cpu_log( log_point(28), 'swap_timelevel (nop)', 'stop' )
174#else
175    CALL cpu_log( log_point(28), 'swap_timelevel', 'start' )
176
[1]177    SELECT CASE ( MOD( timestep_count, 2 ) )
178
179       CASE ( 0 )
180
[1001]181          u  => u_1;   u_p  => u_2
182          v  => v_1;   v_p  => v_2
183          w  => w_1;   w_p  => w_2
[1032]184          IF ( .NOT. neutral )  THEN
185             pt => pt_1;  pt_p => pt_2
186          ENDIF
[1001]187          IF ( .NOT. constant_diffusion )  THEN
188             e => e_1;    e_p => e_2
189          ENDIF
190          IF ( ocean )  THEN
191             sa => sa_1;  sa_p => sa_2
192          ENDIF
193          IF ( humidity  .OR.  passive_scalar )  THEN
194             q => q_1;    q_p => q_2
[1115]195             IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.  &
196                  precipitation )  THEN
[1053]197                qr => qr_1;    qr_p => qr_2
198                nr => nr_1;    nr_p => nr_2
199             ENDIF
[1001]200          ENDIF
[1]201
[1496]202          IF ( land_surface )  THEN
[1551]203             CALL lsm_swap_timelevel ( MOD( timestep_count, 2) )
[1496]204          ENDIF
[1]205
[1766]206          swap_level = 1
[1496]207
[1001]208       CASE ( 1 )
[1]209
[1001]210          u  => u_2;   u_p  => u_1
211          v  => v_2;   v_p  => v_1
212          w  => w_2;   w_p  => w_1
[1032]213          IF ( .NOT. neutral )  THEN
214             pt => pt_2;  pt_p => pt_1
215          ENDIF
[1001]216          IF ( .NOT. constant_diffusion )  THEN
217             e => e_2;    e_p => e_1
[1]218          ENDIF
[1001]219          IF ( ocean )  THEN
220             sa => sa_2;  sa_p => sa_1
221          ENDIF
222          IF ( humidity  .OR.  passive_scalar )  THEN
223             q => q_2;    q_p => q_1
[1115]224             IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.  &
225                  precipitation)  THEN
[1053]226                qr => qr_2;    qr_p => qr_1
227                nr => nr_2;    nr_p => nr_1
228             ENDIF
[1001]229          ENDIF
[1]230
[1496]231          IF ( land_surface )  THEN
[1551]232             CALL lsm_swap_timelevel ( MOD( timestep_count, 2) )
[1496]233          ENDIF
[1]234
[1766]235          swap_level = 2
[1496]236
[1]237    END SELECT
238
[1766]239!
240!-- Set the swap level for steering the pmc data transfer
241    IF ( nested_run )  CALL pmci_set_swaplevel( swap_level )
242
[1]243    CALL cpu_log( log_point(28), 'swap_timelevel', 'stop' )
[1010]244#endif
[1]245
246 END SUBROUTINE swap_timelevel
247
248
Note: See TracBrowser for help on using the repository browser.