[808] | 1 | PROGRAM check_namelist_files |
---|
| 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 | ! |
---|
[807] | 20 | ! Current revisions: |
---|
| 21 | ! ----------------- |
---|
| 22 | ! |
---|
[932] | 23 | ! |
---|
[807] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: check_namelist_files.f90 1037 2012-10-22 14:10:22Z maronga $ |
---|
| 27 | ! |
---|
[1037] | 28 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 29 | ! code put under GPL (PALM 3.9) |
---|
| 30 | ! |
---|
[932] | 31 | ! 931 2012-06-08 15:09:28Z maronga |
---|
| 32 | ! Check of max_pr_user implemented |
---|
| 33 | ! |
---|
[846] | 34 | ! 845 2012-03-07 10:23:05Z maronga |
---|
| 35 | ! Added call to init_cloud_physics |
---|
| 36 | ! |
---|
[808] | 37 | ! 807 2012-01-25 11:53:51Z maronga |
---|
| 38 | ! Initial revision |
---|
| 39 | ! |
---|
[807] | 40 | ! Description: |
---|
| 41 | ! ------------ |
---|
| 42 | ! Perform namelist file check. The program is independent from PALM and used by |
---|
| 43 | ! the shell script "mrun" to check the parameter files (e.g. p3d, p3df...) b |
---|
| 44 | ! efore the job is submitted/started. Source code from the PALM model in used in |
---|
| 45 | ! check_namelist_files by means of the cpp directive "__check". The compiled |
---|
| 46 | ! program resides in the SCRIPTS folder as check_namelist_files.x. |
---|
| 47 | !------------------------------------------------------------------------------! |
---|
| 48 | |
---|
| 49 | |
---|
| 50 | USE pegrid |
---|
| 51 | USE control_parameters |
---|
| 52 | |
---|
| 53 | IMPLICIT NONE |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | ! |
---|
[931] | 57 | !-- Read number of processors, the variable check_restart and max_user_pr. |
---|
| 58 | !-- check_restart gives information whether the initalor the restart parameter |
---|
| 59 | !-- file must be checked. max_user_pr is usually set by read_var_list |
---|
| 60 | !-- (excluded in the namelist file check). |
---|
| 61 | READ (*,*,ERR=10,END=10) numprocs, check_restart, max_pr_user |
---|
[807] | 62 | 10 CONTINUE |
---|
| 63 | |
---|
[818] | 64 | |
---|
[807] | 65 | ! |
---|
| 66 | !-- Read control parameters from NAMELIST files and read environment-variables1 |
---|
| 67 | CALL parin |
---|
| 68 | |
---|
[931] | 69 | OPEN( 11, FILE='parin_for_check', FORM='FORMATTED' ) |
---|
| 70 | WRITE(11, FMT='(I)'), max_pr_user |
---|
| 71 | CLOSE(11) |
---|
[807] | 72 | ! |
---|
[931] | 73 | !-- Determine processor topology and local array indicesy |
---|
| 74 | |
---|
[807] | 75 | CALL init_pegrid |
---|
| 76 | |
---|
| 77 | ! |
---|
| 78 | !-- Generate grid parameters |
---|
| 79 | CALL init_grid |
---|
| 80 | |
---|
[845] | 81 | ! |
---|
[807] | 82 | !-- Check control parameters and deduce further quantities |
---|
| 83 | CALL check_parameters |
---|
| 84 | |
---|
[845] | 85 | ! |
---|
| 86 | !-- Check absolute temperature and pressure. Delete this call in case that |
---|
| 87 | !-- init_3d_model is compiled for the parameter file check |
---|
| 88 | CALL init_cloud_physics |
---|
[807] | 89 | |
---|
| 90 | END PROGRAM check_namelist_files |
---|