source: palm/trunk/SOURCE/user_header.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: 2.7 KB
RevLine 
[211]1 SUBROUTINE user_header( io )
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:
[211]21! -----------------
[1320]22! ONLY-attribute added to USE-statements,
23! kind-parameters added to all INTEGER and REAL declaration statements,
24! kinds are defined in new module kinds,
25! old module precision_kind is removed,
26! revision history before 2012 removed,
27! comment fields (!:) to be used for variable explanations added to
28! all variable declaration statements
[392]29!
[211]30!
31! Former revisions:
32! -----------------
33! $Id: user_header.f90 1320 2014-03-20 08:40:49Z raasch $
34!
[1037]35! 1036 2012-10-22 13:43:42Z raasch
36! code put under GPL (PALM 3.9)
37!
[226]38! 2008-12-09 18:00:48Z letzel
39! +topography_grid_convention
40! Former file user_interface.f90 split into one file per subroutine
41!
[211]42! Description:
43! ------------
44! Print a header with user-defined informations.
45!------------------------------------------------------------------------------!
46
[1320]47    USE kinds
48   
49    USE statistics,                                                            &
50        ONLY:  statistic_regions, region
51       
[211]52    USE user
53
54    IMPLICIT NONE
55
[1320]56    INTEGER(iwp) ::  i    !:
57    INTEGER(iwp) ::  io   !:
[211]58
59!
60!-- If no user-defined variables are read from the namelist-file, no
61!-- informations will be printed.
62    IF ( .NOT. user_defined_namelist_found )  THEN
63       WRITE ( io, 100 )
64       RETURN
65    ENDIF
66
67!
68!-- Printing the informations.
69    WRITE ( io, 110 )
70
71    IF ( statistic_regions /= 0 )  THEN
72       WRITE ( io, 200 )
73       DO  i = 0, statistic_regions
74          WRITE ( io, 201 )  i, region(i)
75       ENDDO
76    ENDIF
77
78!
79!-- Format-descriptors
80100 FORMAT (//' *** no user-defined variables found'/)
[1320]81110 FORMAT (//1X,78('#')                                                       &
82            //' User-defined variables and actions:'/                          &
[211]83              ' -----------------------------------'//)
84200 FORMAT (' Output of profiles and time series for following regions:' /)
85201 FORMAT (4X,'Region ',I1,':   ',A)
86
87
88 END SUBROUTINE user_header
89
Note: See TracBrowser for help on using the repository browser.