[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 | ! |
---|
| 17 | ! Copyright 1997-2012 Leibniz University Hannover |
---|
| 18 | !--------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[1] | 21 | ! ----------------- |
---|
[1033] | 22 | ! |
---|
[1] | 23 | ! |
---|
| 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
[3] | 26 | ! $Id: swap_timelevel.f90 1037 2012-10-22 14:10:22Z raasch $ |
---|
[39] | 27 | ! |
---|
[1037] | 28 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 29 | ! code put under GPL (PALM 3.9) |
---|
| 30 | ! |
---|
[1033] | 31 | ! 1032 2012-10-21 13:03:21Z letzel |
---|
| 32 | ! save memory by not allocating pt_2 in case of neutral = .T. |
---|
| 33 | ! |
---|
[1011] | 34 | ! 1010 2012-09-20 07:59:54Z raasch |
---|
| 35 | ! cpp switch __nopointer added for pointer free version |
---|
| 36 | ! |
---|
[1002] | 37 | ! 1001 2012-09-13 14:08:46Z raasch |
---|
| 38 | ! all actions concerning leapfrog scheme removed |
---|
| 39 | ! |
---|
[110] | 40 | ! 102 2007-07-27 09:09:17Z raasch |
---|
| 41 | ! swaping of uswst, vswst included |
---|
| 42 | ! |
---|
[98] | 43 | ! 95 2007-06-02 16:48:38Z raasch |
---|
| 44 | ! Swaping of salinity |
---|
| 45 | ! |
---|
[77] | 46 | ! 75 2007-03-22 09:54:05Z raasch |
---|
| 47 | ! moisture renamed humidity |
---|
| 48 | ! |
---|
[39] | 49 | ! 19 2007-02-23 04:53:48Z raasch |
---|
| 50 | ! Swaping of top fluxes |
---|
| 51 | ! |
---|
[3] | 52 | ! RCS Log replace by Id keyword, revision history cleaned up |
---|
| 53 | ! |
---|
[1] | 54 | ! Revision 1.8 2004/01/28 15:28:18 raasch |
---|
| 55 | ! Swaping for Runge-Kutta schemes implemented |
---|
| 56 | ! |
---|
| 57 | ! Revision 1.1 2000/01/10 10:08:58 10:08:58 raasch (Siegfried Raasch) |
---|
| 58 | ! Initial revision |
---|
| 59 | ! |
---|
| 60 | ! |
---|
| 61 | ! Description: |
---|
| 62 | ! ------------ |
---|
| 63 | ! Swap of timelevels of variables after each timestep |
---|
[3] | 64 | !------------------------------------------------------------------------------! |
---|
[1] | 65 | |
---|
| 66 | USE arrays_3d |
---|
| 67 | USE cpulog |
---|
| 68 | USE interfaces |
---|
| 69 | USE control_parameters |
---|
| 70 | |
---|
| 71 | IMPLICIT NONE |
---|
| 72 | |
---|
| 73 | ! |
---|
| 74 | !-- Incrementing timestep counter |
---|
| 75 | timestep_count = timestep_count + 1 |
---|
| 76 | |
---|
| 77 | ! |
---|
[1001] | 78 | !-- Swap of variables |
---|
[1010] | 79 | #if defined( __nopointer ) |
---|
| 80 | CALL cpu_log( log_point(28), 'swap_timelevel (nop)', 'start' ) |
---|
| 81 | |
---|
| 82 | u = u_p |
---|
| 83 | v = v_p |
---|
| 84 | w = w_p |
---|
| 85 | pt = pt_p |
---|
| 86 | IF ( .NOT. constant_diffusion ) THEN |
---|
| 87 | e = e_p |
---|
| 88 | ENDIF |
---|
| 89 | IF ( ocean ) THEN |
---|
| 90 | sa = sa_p |
---|
| 91 | ENDIF |
---|
| 92 | IF ( humidity .OR. passive_scalar ) THEN |
---|
| 93 | q = q_p |
---|
| 94 | ENDIF |
---|
| 95 | |
---|
| 96 | CALL cpu_log( log_point(28), 'swap_timelevel (nop)', 'stop' ) |
---|
| 97 | #else |
---|
| 98 | CALL cpu_log( log_point(28), 'swap_timelevel', 'start' ) |
---|
| 99 | |
---|
[1] | 100 | SELECT CASE ( MOD( timestep_count, 2 ) ) |
---|
| 101 | |
---|
| 102 | CASE ( 0 ) |
---|
| 103 | |
---|
[1001] | 104 | u => u_1; u_p => u_2 |
---|
| 105 | v => v_1; v_p => v_2 |
---|
| 106 | w => w_1; w_p => w_2 |
---|
[1032] | 107 | IF ( .NOT. neutral ) THEN |
---|
| 108 | pt => pt_1; pt_p => pt_2 |
---|
| 109 | ENDIF |
---|
[1001] | 110 | IF ( .NOT. constant_diffusion ) THEN |
---|
| 111 | e => e_1; e_p => e_2 |
---|
| 112 | ENDIF |
---|
| 113 | IF ( ocean ) THEN |
---|
| 114 | sa => sa_1; sa_p => sa_2 |
---|
| 115 | ENDIF |
---|
| 116 | IF ( humidity .OR. passive_scalar ) THEN |
---|
| 117 | q => q_1; q_p => q_2 |
---|
| 118 | ENDIF |
---|
[1] | 119 | |
---|
| 120 | |
---|
[1001] | 121 | CASE ( 1 ) |
---|
[1] | 122 | |
---|
[1001] | 123 | u => u_2; u_p => u_1 |
---|
| 124 | v => v_2; v_p => v_1 |
---|
| 125 | w => w_2; w_p => w_1 |
---|
[1032] | 126 | IF ( .NOT. neutral ) THEN |
---|
| 127 | pt => pt_2; pt_p => pt_1 |
---|
| 128 | ENDIF |
---|
[1001] | 129 | IF ( .NOT. constant_diffusion ) THEN |
---|
| 130 | e => e_2; e_p => e_1 |
---|
[1] | 131 | ENDIF |
---|
[1001] | 132 | IF ( ocean ) THEN |
---|
| 133 | sa => sa_2; sa_p => sa_1 |
---|
| 134 | ENDIF |
---|
| 135 | IF ( humidity .OR. passive_scalar ) THEN |
---|
| 136 | q => q_2; q_p => q_1 |
---|
| 137 | ENDIF |
---|
[1] | 138 | |
---|
| 139 | |
---|
| 140 | END SELECT |
---|
| 141 | |
---|
| 142 | CALL cpu_log( log_point(28), 'swap_timelevel', 'stop' ) |
---|
[1010] | 143 | #endif |
---|
[1] | 144 | |
---|
| 145 | END SUBROUTINE swap_timelevel |
---|
| 146 | |
---|
| 147 | |
---|