[211] | 1 | SUBROUTINE user_define_netcdf_grid( variable, found, grid_x, grid_y, grid_z ) |
---|
| 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 | ! ----------------- |
---|
[226] | 22 | ! |
---|
[211] | 23 | ! |
---|
| 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: user_define_netcdf_grid.f90 1321 2014-03-20 09:40:40Z hoffmann $ |
---|
| 27 | ! |
---|
[1321] | 28 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
| 29 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 30 | ! all variable declaration statements |
---|
| 31 | ! |
---|
[1037] | 32 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 33 | ! code put under GPL (PALM 3.9) |
---|
| 34 | ! |
---|
[226] | 35 | ! 211 2008-11-11 04:46:24Z raasch |
---|
| 36 | ! Former file user_interface.f90 split into one file per subroutine |
---|
| 37 | ! |
---|
[211] | 38 | ! Description: |
---|
| 39 | ! ------------ |
---|
| 40 | ! Set the grids on which user-defined output quantities are defined. |
---|
| 41 | ! Allowed values for grid_x are "x" and "xu", for grid_y "y" and "yv", and |
---|
| 42 | ! for grid_z "zu" and "zw". |
---|
| 43 | !------------------------------------------------------------------------------! |
---|
| 44 | |
---|
[1320] | 45 | USE kinds |
---|
| 46 | |
---|
[211] | 47 | USE user |
---|
| 48 | |
---|
| 49 | IMPLICIT NONE |
---|
| 50 | |
---|
[1320] | 51 | CHARACTER (LEN=*) :: grid_x !: |
---|
| 52 | CHARACTER (LEN=*) :: grid_y !: |
---|
| 53 | CHARACTER (LEN=*) :: grid_z !: |
---|
| 54 | CHARACTER (LEN=*) :: variable !: |
---|
[211] | 55 | |
---|
[1320] | 56 | LOGICAL :: found !: |
---|
[211] | 57 | |
---|
| 58 | |
---|
| 59 | SELECT CASE ( TRIM( variable ) ) |
---|
| 60 | |
---|
| 61 | ! |
---|
| 62 | !-- Uncomment and extend the following lines, if necessary |
---|
| 63 | ! CASE ( 'u2', 'u2_xy', 'u2_xz', 'u2_yz' ) |
---|
| 64 | ! grid_x = 'xu' |
---|
| 65 | ! grid_y = 'y' |
---|
| 66 | ! grid_z = 'zu' |
---|
| 67 | |
---|
| 68 | ! CASE ( 'u*v*', 'u*v*_xy', 'u*v*_xz', 'u*v*_yz' ) |
---|
| 69 | ! grid_x = 'x' |
---|
| 70 | ! grid_y = 'y' |
---|
| 71 | ! grid_z = 'zu' |
---|
| 72 | |
---|
| 73 | CASE DEFAULT |
---|
| 74 | found = .FALSE. |
---|
| 75 | grid_x = 'none' |
---|
| 76 | grid_y = 'none' |
---|
| 77 | grid_z = 'none' |
---|
| 78 | |
---|
| 79 | END SELECT |
---|
| 80 | |
---|
| 81 | |
---|
| 82 | END SUBROUTINE user_define_netcdf_grid |
---|
| 83 | |
---|