source: palm/trunk/SOURCE/data_output_profiles.f90 @ 1346

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

last commit documented

  • Property svn:keywords set to Id
File size: 11.7 KB
Line 
1 SUBROUTINE data_output_profiles
2
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-2014 Leibniz Universitaet Hannover
18!--------------------------------------------------------------------------------!
19!
20! Current revisions:
21! -----------------
22!
23!
24! Former revisions:
25! -----------------
26! $Id: data_output_profiles.f90 1329 2014-03-21 11:09:15Z heinze $
27!
28! 1327 2014-03-21 11:00:16Z raasch
29! -netcdf output queries
30!
31! 1322 2014-03-20 16:38:49Z raasch
32! REAL functions provided with KIND-attribute
33!
34! 1320 2014-03-20 08:40:49Z raasch
35! ONLY-attribute added to USE-statements,
36! kind-parameters added to all INTEGER declaration statements,
37! kinds are defined in new module kinds,
38! revision history before 2012 removed,
39! comment fields (!:) to be used for variable explanations added to
40! all variable declaration statements
41!
42! 1318 2014-03-17 13:35:16Z raasch
43! barrier argument removed from cpu_log,
44! module interfaces removed
45!
46! 1106 2013-03-04 05:31:38Z raasch
47! bugfix: initial time for preruns of coupled runs is output as
48! -coupling_start_time
49!
50! 1092 2013-02-02 11:24:22Z raasch
51! unused variables removed
52!
53! 1036 2012-10-22 13:43:42Z raasch
54! code put under GPL (PALM 3.9)
55!
56! 964 2012-07-26 09:14:24Z raasch
57! code for profil-output removed
58!
59! Revision 1.1  1997/09/12 06:28:48  raasch
60! Initial revision
61!
62!
63! Description:
64! ------------
65! Plot output of 1D-profiles for PROFIL
66!------------------------------------------------------------------------------!
67
68    USE control_parameters,                                                    &
69        ONLY:  average_count_pr, averaging_interval_pr, coupling_start_time,   &
70               dopr_n, dopr_time_count, normalizing_region,                    &
71               time_since_reference_point
72
73    USE cpulog,                                                                &
74        ONLY:  cpu_log, log_point
75
76    USE indices,                                                               &
77        ONLY:  nzb, nzt
78
79    USE kinds
80
81    USE netcdf_control
82
83    USE pegrid
84
85    USE profil_parameter
86
87    USE statistics,                                                            &
88        ONLY:  flow_statistics_called, hom, hom_sum, pr_palm, statistic_regions
89
90    IMPLICIT NONE
91
92
93    INTEGER(iwp) ::  i  !:
94    INTEGER(iwp) ::  sr !:
95
96!
97!-- If required, compute statistics
98    IF ( .NOT. flow_statistics_called )  CALL flow_statistics
99
100!
101!-- Flow_statistics has its own CPU time measurement
102    CALL cpu_log( log_point(15), 'data_output_profiles', 'start' )
103
104!
105!-- If required, compute temporal average
106    IF ( averaging_interval_pr == 0.0 )  THEN
107       hom_sum(:,:,:) = hom(:,1,:,:)
108    ELSE
109       IF ( average_count_pr > 0 )  THEN
110          hom_sum = hom_sum / REAL( average_count_pr, KIND=wp )
111       ELSE
112!
113!--       This case may happen if dt_dopr is changed in the d3par-list of
114!--       a restart run
115          RETURN
116       ENDIF
117    ENDIF
118
119   
120    IF ( myid == 0 )  THEN
121
122!
123!--    Plot-output for each (sub-)region
124
125!
126!--    Open file for profile output in NetCDF format
127       CALL check_open( 104 )
128
129!
130!--    Increment the counter for number of output times
131       dopr_time_count = dopr_time_count + 1
132
133!
134!--    Output of initial profiles
135       IF ( dopr_time_count == 1 )  THEN
136       
137          IF ( .NOT. output_for_t0 ) THEN 
138
139#if defined( __netcdf )         
140!
141!--          Store initial time to time axis, but only if an output
142!--          is required for at least one of the profiles. The initial time
143!--          is either 0, or, in case of a prerun for coupled atmosphere-ocean
144!--          runs, has a negative value
145             DO  i = 1, dopr_n
146             IF ( dopr_initial_index(i) /= 0 )  THEN
147                nc_stat = NF90_PUT_VAR( id_set_pr, id_var_time_pr,  &
148                                        (/ -coupling_start_time /), &
149                                        start = (/ 1 /), count = (/ 1 /) )
150                   CALL handle_netcdf_error( 'data_output_profiles', 329 )
151                   output_for_t0 = .TRUE.
152                   EXIT
153                ENDIF
154             ENDDO
155
156!
157!--          Store normalization factors
158             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(1), & ! wpt0
159                                  (/ hom_sum(nzb,18,normalizing_region) /), &
160                                     start = (/ 1 /), count = (/ 1 /) )
161             CALL handle_netcdf_error( 'data_output_profiles', 330 )
162
163             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(2), & ! ws2
164                        (/ hom_sum(nzb+8,pr_palm,normalizing_region)**2 /), &
165                                     start = (/ 1 /), count = (/ 1 /) )
166             CALL handle_netcdf_error( 'data_output_profiles', 331 )
167             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(3), & ! tsw2
168                        (/ hom_sum(nzb+3,pr_palm,normalizing_region)**2 /), &
169                                  start = (/ 1 /), count = (/ 1 /) )
170             CALL handle_netcdf_error( 'data_output_profiles', 332 )
171             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(4), & ! ws3
172                        (/ hom_sum(nzb+8,pr_palm,normalizing_region)**3 /), &
173                                     start = (/ 1 /), count = (/ 1 /) )
174             CALL handle_netcdf_error( 'data_output_profiles', 333 )
175
176             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(5), &!ws2tsw
177                        (/ hom_sum(nzb+8,pr_palm,normalizing_region)**3 *   &
178                           hom_sum(nzb+3,pr_palm,normalizing_region)    /), &
179                                     start = (/ 1 /), count = (/ 1 /) )
180             CALL handle_netcdf_error( 'data_output_profiles', 334 )
181
182             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(6), &!wstsw2
183                        (/ hom_sum(nzb+8,pr_palm,normalizing_region) *      &
184                           hom_sum(nzb+3,pr_palm,normalizing_region)**2 /), &
185                                     start = (/ 1 /), count = (/ 1 /) )
186             CALL handle_netcdf_error( 'data_output_profiles', 335 )
187
188             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(7), & ! z_i
189                           (/ hom_sum(nzb+6,pr_palm,normalizing_region) /), &
190                                     start = (/ 1 /), count = (/ 1 /) )
191             CALL handle_netcdf_error( 'data_output_profiles', 336 )
192             
193#endif
194!
195!--          Loop over all 1D variables
196             DO  i = 1, dopr_n
197
198                IF ( dopr_initial_index(i) /= 0 )  THEN
199
200!
201!--                Output for the individual (sub-)regions
202                   DO  sr = 0, statistic_regions
203
204#if defined( __netcdf )
205!
206!--                   Write data to netcdf file
207                      nc_stat = NF90_PUT_VAR( id_set_pr, id_var_dopr(i,sr),    &
208                                    hom(nzb:nzt+1,1,dopr_initial_index(i),sr), &
209                                              start = (/ 1, 1 /),              &
210                                              count = (/ nzt-nzb+2, 1 /) )
211                      CALL handle_netcdf_error( 'data_output_profiles', 337 )
212#endif
213
214                   ENDDO
215
216                ENDIF   ! Initial profile available
217
218             ENDDO   ! Loop over dopr_n for initial profiles
219
220             IF ( output_for_t0 )  THEN
221                dopr_time_count = dopr_time_count + 1
222             ENDIF
223
224          END IF
225       ENDIF   ! Initial profiles
226
227#if defined( __netcdf )
228
229!
230!--    Store time to time axis
231       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_time_pr,        &
232                               (/ time_since_reference_point /), &
233                               start = (/ dopr_time_count /),    &
234                               count = (/ 1 /) )
235       CALL handle_netcdf_error( 'data_output_profiles', 338 )
236
237!
238!--    Store normalization factors
239       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(1), &  ! wpt0
240                               (/ hom_sum(nzb,18,normalizing_region) /), &
241                               start = (/ dopr_time_count /),               &
242                               count = (/ 1 /) )
243       CALL handle_netcdf_error( 'data_output_profiles', 339 )
244
245       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(2), &  ! ws2
246                     (/ hom_sum(nzb+8,pr_palm,normalizing_region)**2 /), &
247                               start = (/ dopr_time_count /),               &
248                               count = (/ 1 /) )
249       CALL handle_netcdf_error( 'data_output_profiles', 340 )
250
251       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(3), &  ! tsw2
252                     (/ hom_sum(nzb+3,pr_palm,normalizing_region)**2 /), &
253                               start = (/ dopr_time_count /),               &
254                               count = (/ 1 /) )
255       CALL handle_netcdf_error( 'data_output_profiles', 341 )
256
257       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(4), &  ! ws3
258                     (/ hom_sum(nzb+8,pr_palm,normalizing_region)**3 /), &
259                               start = (/ dopr_time_count /),               &
260                               count = (/ 1 /) )
261       CALL handle_netcdf_error( 'data_output_profiles', 342 )
262
263       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(5), &  ! ws2tsw
264                     (/ hom_sum(nzb+8,pr_palm,normalizing_region)**3 *   &
265                        hom_sum(nzb+3,pr_palm,normalizing_region)    /), &
266                               start = (/ dopr_time_count /),               &
267                               count = (/ 1 /) )
268       CALL handle_netcdf_error( 'data_output_profiles', 343 )
269
270       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(6), &  ! wstsw2
271                     (/ hom_sum(nzb+8,pr_palm,normalizing_region) *      &
272                        hom_sum(nzb+3,pr_palm,normalizing_region)**2 /), &
273                               start = (/ dopr_time_count /),               &
274                               count = (/ 1 /) )
275       CALL handle_netcdf_error( 'data_output_profiles', 344 )
276
277       nc_stat = NF90_PUT_VAR( id_set_pr, id_var_norm_dopr(7), &  ! z_i
278                        (/ hom_sum(nzb+6,pr_palm,normalizing_region) /), &
279                               start = (/ dopr_time_count /),               &
280                               count = (/ 1 /) )
281       CALL handle_netcdf_error( 'data_output_profiles', 345 )
282#endif
283
284!
285!--    Output of the individual (non-initial) profiles
286       DO  i = 1, dopr_n
287
288!
289!--       Output for the individual (sub-)domains
290          DO  sr = 0, statistic_regions
291
292#if defined( __netcdf )
293!
294!--          Write data to netcdf file
295             nc_stat = NF90_PUT_VAR( id_set_pr, id_var_dopr(i,sr),          &
296                                     hom_sum(nzb:nzt+1,dopr_index(i),sr),&
297                                     start = (/ 1, dopr_time_count /),      &
298                                     count = (/ nzt-nzb+2, 1 /) )
299             CALL handle_netcdf_error( 'data_output_profiles', 346 )
300#endif
301
302          ENDDO
303
304       ENDDO
305
306    ENDIF  ! Output on PE0
307
308!
309!-- If averaging has been done above, the summation counter must be re-set.
310    IF ( averaging_interval_pr /= 0.0 )  THEN
311       average_count_pr = 0
312    ENDIF
313
314    CALL cpu_log( log_point(15), 'data_output_profiles','stop' )
315
316!
317!-- Formats
318100 FORMAT ('#1 ',A,1X,A)
319101 FORMAT (E15.7,1X,E15.7)
320102 FORMAT ('NEXT')
321
322 END SUBROUTINE data_output_profiles
Note: See TracBrowser for help on using the repository browser.