[217] | 1 | SUBROUTINE user_check_parameters |
---|
| 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 | ! |
---|
| 17 | ! Copyright 1997-2012 Leibniz University Hannover |
---|
| 18 | !--------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[217] | 21 | ! ----------------- |
---|
| 22 | ! |
---|
| 23 | ! Former revisions: |
---|
| 24 | ! ----------------- |
---|
| 25 | ! $Id: user_check_parameters.f90 1037 2012-10-22 14:10:22Z raasch $ |
---|
| 26 | ! |
---|
[1037] | 27 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 28 | ! code put under GPL (PALM 3.9) |
---|
| 29 | ! |
---|
[226] | 30 | ! 217 2008-12-09 18:00:48Z letzel |
---|
| 31 | ! Initial version |
---|
| 32 | ! |
---|
[217] | 33 | ! Description: |
---|
| 34 | ! ------------ |
---|
| 35 | ! Check &userpar control parameters and deduce further quantities. |
---|
| 36 | !------------------------------------------------------------------------------! |
---|
| 37 | |
---|
| 38 | USE control_parameters |
---|
| 39 | USE user |
---|
| 40 | |
---|
| 41 | IMPLICIT NONE |
---|
| 42 | |
---|
| 43 | ! |
---|
| 44 | !-- Here the user may add code to check the validity of further &userpar |
---|
| 45 | !-- control parameters or deduce further quantities. |
---|
| 46 | |
---|
| 47 | |
---|
| 48 | END SUBROUTINE user_check_parameters |
---|
| 49 | |
---|