source: palm/trunk/SOURCE/init_slope.f90 @ 2001

Last change on this file since 2001 was 2001, checked in by knoop, 8 years ago

last commit documented

  • Property svn:keywords set to Id
File size: 5.6 KB
Line 
1!> @file init_slope.f90
2!------------------------------------------------------------------------------!
3! This file is part of PALM.
4!
5! PALM is free software: you can redistribute it and/or modify it under the
6! terms of the GNU General Public License as published by the Free Software
7! Foundation, either version 3 of the License, or (at your option) any later
8! 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-2016 Leibniz Universitaet Hannover
18!------------------------------------------------------------------------------!
19!
20! Current revisions:
21! -----------------
22!
23!
24! Former revisions:
25! -----------------
26! $Id: init_slope.f90 2001 2016-08-20 18:41:22Z knoop $
27!
28! 2000 2016-08-20 18:09:15Z knoop
29! Forced header and separation lines into 80 columns
30!
31! 1682 2015-10-07 23:56:08Z knoop
32! Code annotations made doxygen readable
33!
34! 1353 2014-04-08 15:21:23Z heinze
35! REAL constants provided with KIND-attribute
36!
37! 1322 2014-03-20 16:38:49Z raasch
38! REAL constants defined as wp_kind
39!
40! 1320 2014-03-20 08:40:49Z raasch
41! ONLY-attribute added to USE-statements,
42! kind-parameters added to all INTEGER and REAL declaration statements,
43! kinds are defined in new module kinds,
44! revision history before 2012 removed,
45! comment fields (!:) to be used for variable explanations added to
46! all variable declaration statements
47!
48! 1036 2012-10-22 13:43:42Z raasch
49! code put under GPL (PALM 3.9)
50!
51! Revision 1.1  2000/04/27 07:06:24  raasch
52! Initial revision
53!
54!
55! Description:
56! ------------
57!> Initialization of the temperature field and other variables used in case
58!> of a sloping surface.
59!> @note when a sloping surface is used, only one constant temperature
60!>       gradient is allowed!
61!------------------------------------------------------------------------------!
62 SUBROUTINE init_slope
63 
64
65    USE arrays_3d,                                                             &
66        ONLY:  pt, pt_init, pt_slope_ref, zu
67       
68    USE constants,                                                             &
69        ONLY:  pi
70                   
71    USE control_parameters,                                                    &
72        ONLY:  alpha_surface, initializing_actions, pt_slope_offset,           &
73               pt_surface, pt_vertical_gradient, sin_alpha_surface
74       
75    USE grid_variables,                                                        &
76        ONLY:  dx
77       
78    USE indices,                                                               &
79        ONLY:  ngp_2dh, nx, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt
80       
81    USE kinds
82
83    USE pegrid
84
85
86    IMPLICIT NONE
87
88    INTEGER(iwp) ::  i        !<
89    INTEGER(iwp) ::  j        !<
90    INTEGER(iwp) ::  k        !<
91   
92    REAL(wp)     ::  alpha    !<
93    REAL(wp)     ::  height   !<
94    REAL(wp)     ::  pt_value !<
95    REAL(wp)     ::  radius   !<
96   
97    REAL(wp), DIMENSION(:), ALLOCATABLE ::  pt_init_local !<
98
99!
100!-- Calculate reference temperature field needed for computing buoyancy
101    ALLOCATE( pt_slope_ref(nzb:nzt+1,nxlg:nxrg) )
102
103    DO  i = nxlg, nxrg
104       DO  k = nzb, nzt+1
105
106!
107!--       Compute height of grid-point relative to lower left corner of
108!--       the total domain.
109!--       First compute the distance between the actual grid point and the
110!--       lower left corner as well as the angle between the line connecting
111!--       these points and the bottom of the model.
112          IF ( k /= nzb )  THEN
113             radius = SQRT( ( i * dx )**2 + zu(k)**2 )
114             height = zu(k)
115          ELSE
116             radius = SQRT( ( i * dx )**2 )
117             height = 0.0_wp
118          ENDIF
119          IF ( radius /= 0.0_wp )  THEN
120             alpha = ASIN( height / radius )
121          ELSE
122             alpha = 0.0_wp
123          ENDIF
124!
125!--       Compute temperatures in the rotated coordinate system
126          alpha    = alpha + alpha_surface / 180.0_wp * pi
127          pt_value = pt_surface + radius * SIN( alpha ) * &
128                                  pt_vertical_gradient(1) / 100.0_wp
129          pt_slope_ref(k,i) = pt_value
130       ENDDO               
131    ENDDO
132
133!
134!-- Temperature difference between left and right boundary of the total domain,
135!-- used for the cyclic boundary in x-direction
136    pt_slope_offset = (nx+1) * dx * sin_alpha_surface * &
137                      pt_vertical_gradient(1) / 100.0_wp
138
139
140!
141!-- Following action must only be executed for initial runs
142    IF ( TRIM( initializing_actions ) /= 'read_restart_data' )  THEN
143!
144!--    Set initial temperature equal to the reference temperature field
145       DO  j = nysg, nyng
146          pt(:,j,:) = pt_slope_ref
147       ENDDO
148
149!
150!--    Recompute the mean initial temperature profile (mean along x-direction of
151!--    the rotated coordinate system)
152       ALLOCATE( pt_init_local(nzb:nzt+1) )
153       pt_init_local = 0.0_wp
154       DO  i = nxl, nxr
155          DO  j =  nys, nyn
156             DO  k = nzb, nzt+1
157                pt_init_local(k) = pt_init_local(k) + pt(k,j,i)
158             ENDDO
159          ENDDO
160       ENDDO
161
162#if defined( __parallel )
163       IF ( collective_wait )  CALL MPI_BARRIER( comm2d, ierr )
164       CALL MPI_ALLREDUCE( pt_init_local, pt_init, nzt+2-nzb, MPI_REAL, &
165                            MPI_SUM, comm2d, ierr )
166#else
167       pt_init = pt_init_local
168#endif
169
170       pt_init = pt_init / ngp_2dh(0)
171       DEALLOCATE( pt_init_local )
172
173    ENDIF
174
175 END SUBROUTINE init_slope
Note: See TracBrowser for help on using the repository browser.