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

Last change on this file since 1318 was 1318, checked in by raasch, 10 years ago

former files/routines cpu_log and cpu_statistics combined to one module,
which also includes the former data module cpulog from the modules-file,
module interfaces removed

  • Property svn:keywords set to Id
File size: 4.7 KB
RevLine 
[1]1 SUBROUTINE swap_timelevel
2
[1036]3!--------------------------------------------------------------------------------!
4! This file is part of PALM.
5!
6! PALM is free software: you can redistribute it and/or modify it under the terms
7! of the GNU General Public License as published by the Free Software Foundation,
8! either version 3 of the License, or (at your option) any later version.
9!
10! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
11! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13!
14! You should have received a copy of the GNU General Public License along with
15! PALM. If not, see <http://www.gnu.org/licenses/>.
16!
[1310]17! Copyright 1997-2014 Leibniz Universitaet Hannover
[1036]18!--------------------------------------------------------------------------------!
19!
[484]20! Current revisions:
[1]21! -----------------
[1318]22! module interfaces removed
[1033]23!
[1]24! Former revisions:
25! -----------------
[3]26! $Id: swap_timelevel.f90 1318 2014-03-17 13:35:16Z raasch $
[39]27!
[1116]28! 1115 2013-03-26 18:16:16Z hoffmann
29! calculation of qr and nr is restricted to precipitation
30!
[1112]31! 1111 2013-03-08 23:54:10Z raasch
32! openACC directives added
33!
[1054]34! 1053 2012-11-13 17:11:03Z hoffmann
35! swap of timelevels for nr, qr added
36!
[1037]37! 1036 2012-10-22 13:43:42Z raasch
38! code put under GPL (PALM 3.9)
39!
[1033]40! 1032 2012-10-21 13:03:21Z letzel
41! save memory by not allocating pt_2 in case of neutral = .T.
42!
[1011]43! 1010 2012-09-20 07:59:54Z raasch
44! cpp switch __nopointer added for pointer free version
45!
[1002]46! 1001 2012-09-13 14:08:46Z raasch
47! all actions concerning leapfrog scheme removed
48!
[110]49! 102 2007-07-27 09:09:17Z raasch
50! swaping of uswst, vswst included
51!
[98]52! 95 2007-06-02 16:48:38Z raasch
53! Swaping of salinity
54!
[77]55! 75 2007-03-22 09:54:05Z raasch
56! moisture renamed humidity
57!
[39]58! 19 2007-02-23 04:53:48Z raasch
59! Swaping of top fluxes
60!
[3]61! RCS Log replace by Id keyword, revision history cleaned up
62!
[1]63! Revision 1.8  2004/01/28 15:28:18  raasch
64! Swaping for Runge-Kutta schemes implemented
65!
66! Revision 1.1  2000/01/10  10:08:58  10:08:58  raasch (Siegfried Raasch)
67! Initial revision
68!
69!
70! Description:
71! ------------
72! Swap of timelevels of variables after each timestep
[3]73!------------------------------------------------------------------------------!
[1]74
75    USE arrays_3d
76    USE cpulog
77    USE control_parameters
78
79    IMPLICIT NONE
80
81!
82!-- Incrementing timestep counter
83    timestep_count = timestep_count + 1
84
85!
[1001]86!-- Swap of variables
[1010]87#if defined( __nopointer )
88    CALL cpu_log( log_point(28), 'swap_timelevel (nop)', 'start' )
89
[1111]90    !$acc kernels present( pt, pt_p, u, u_p, v, v_p, w, w_p )
[1010]91    u  = u_p
92    v  = v_p
93    w  = w_p
94    pt = pt_p
[1111]95    !$acc end kernels
[1010]96    IF ( .NOT. constant_diffusion )  THEN
[1111]97       !$acc kernels present( e, e_p )
[1010]98       e = e_p
[1111]99       !$acc end kernels
[1010]100    ENDIF
101    IF ( ocean )  THEN
102       sa = sa_p
103    ENDIF
104    IF ( humidity  .OR.  passive_scalar )  THEN
[1053]105       q = q_p             
106       IF ( cloud_physics  .AND.  icloud_scheme == 0 )  THEN
107          qr = qr_p
108          nr = nr_p
109       ENDIF
[1010]110    ENDIF
111
112    CALL cpu_log( log_point(28), 'swap_timelevel (nop)', 'stop' )
113#else
114    CALL cpu_log( log_point(28), 'swap_timelevel', 'start' )
115
[1]116    SELECT CASE ( MOD( timestep_count, 2 ) )
117
118       CASE ( 0 )
119
[1001]120          u  => u_1;   u_p  => u_2
121          v  => v_1;   v_p  => v_2
122          w  => w_1;   w_p  => w_2
[1032]123          IF ( .NOT. neutral )  THEN
124             pt => pt_1;  pt_p => pt_2
125          ENDIF
[1001]126          IF ( .NOT. constant_diffusion )  THEN
127             e => e_1;    e_p => e_2
128          ENDIF
129          IF ( ocean )  THEN
130             sa => sa_1;  sa_p => sa_2
131          ENDIF
132          IF ( humidity  .OR.  passive_scalar )  THEN
133             q => q_1;    q_p => q_2
[1115]134             IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.  &
135                  precipitation )  THEN
[1053]136                qr => qr_1;    qr_p => qr_2
137                nr => nr_1;    nr_p => nr_2
138             ENDIF
[1001]139          ENDIF
[1]140
141
[1001]142       CASE ( 1 )
[1]143
[1001]144          u  => u_2;   u_p  => u_1
145          v  => v_2;   v_p  => v_1
146          w  => w_2;   w_p  => w_1
[1032]147          IF ( .NOT. neutral )  THEN
148             pt => pt_2;  pt_p => pt_1
149          ENDIF
[1001]150          IF ( .NOT. constant_diffusion )  THEN
151             e => e_2;    e_p => e_1
[1]152          ENDIF
[1001]153          IF ( ocean )  THEN
154             sa => sa_2;  sa_p => sa_1
155          ENDIF
156          IF ( humidity  .OR.  passive_scalar )  THEN
157             q => q_2;    q_p => q_1
[1115]158             IF ( cloud_physics  .AND.  icloud_scheme == 0  .AND.  &
159                  precipitation)  THEN
[1053]160                qr => qr_2;    qr_p => qr_1
161                nr => nr_2;    nr_p => nr_1
162             ENDIF
[1001]163          ENDIF
[1]164
165
166    END SELECT
167
168    CALL cpu_log( log_point(28), 'swap_timelevel', 'stop' )
[1010]169#endif
[1]170
171 END SUBROUTINE swap_timelevel
172
173
Note: See TracBrowser for help on using the repository browser.