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