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