source: palm/trunk/SOURCE/user_data_output_dvrp.f90 @ 1320

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

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

  • Property svn:keywords set to Id
File size: 3.0 KB
RevLine 
[211]1 SUBROUTINE user_data_output_dvrp( output_variable, local_pf )
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!
[258]20! Current revisions:
[211]21! -----------------
[1320]22! kind-parameters added to all INTEGER and REAL declaration statements,
23! kinds are defined in new module kinds,
24! old module precision_kind is removed,
25! revision history before 2012 removed,
26! comment fields (!:) to be used for variable explanations added to
27! all variable declaration statements
[211]28!
29! Former revisions:
30! -----------------
31! $Id: user_data_output_dvrp.f90 1320 2014-03-20 08:40:49Z raasch $
32!
[1037]33! 1036 2012-10-22 13:43:42Z raasch
34! code put under GPL (PALM 3.9)
35!
[226]36! 211 2008-11-11 04:46:24Z raasch
37! Former file user_interface.f90 split into one file per subroutine
38!
[211]39! Description:
40! ------------
41! Execution of user-defined dvrp output
42!------------------------------------------------------------------------------!
43
44    USE control_parameters
[1320]45
[246]46    USE dvrp_variables
[1320]47
[211]48    USE indices
[1320]49
50    USE kinds
51
[211]52    USE pegrid
[1320]53
[211]54    USE user
55
56    IMPLICIT NONE
57
[1320]58    CHARACTER (LEN=*) ::  output_variable !:
[211]59
[1320]60    INTEGER(iwp) ::  i !:
61    INTEGER(iwp) ::  j !:
62    INTEGER(iwp) ::  k !:
[211]63
[1320]64    REAL(wp), DIMENSION(nxl_dvrp:nxr_dvrp+1,nys_dvrp:nyn_dvrp+1,nzb:nz_do3d) :: &
65              local_pf !:
[211]66
67!
68!-- Here the user-defined DVRP output follows:
69
70!
71!-- Move original array to intermediate array
72    SELECT CASE ( output_variable )
73
74!       CASE ( 'u2', 'u2_xy', 'u2_xz', 'u2_yz'  )
75!!
76!!--       Here the user can add user_defined output quantities.
77!!--       Uncomment and extend the following lines, if necessary.
[246]78!          DO  i = nxl_dvrp, nxr_dvrp+1
79!             DO  j = nys_dvrp, nyn_dvrp+1
[211]80!                DO  k = nzb, nz_do3d
81!                   local_pf(i,j,k) = u2(k,j,i)
82!                ENDDO
83!             ENDDO
84!          ENDDO
85
86
87       CASE DEFAULT
88!
89!--       The DEFAULT case is reached if output_variable contains a
90!--       wrong character string that is neither recognized in data_output_dvrp
91!--       nor here in user_data_output_dvrp.
[258]92          WRITE( message_string, * ) 'no output possible for: ', &
93                                     output_variable
94          CALL message( 'user_data_output_dvrp', 'UI0003', 0, 0, 0, 6, 0 )
95         
[211]96
97    END SELECT
98
99
100 END SUBROUTINE user_data_output_dvrp
101
Note: See TracBrowser for help on using the repository browser.