[808] | 1 | PROGRAM check_namelist_files |
---|
| 2 | |
---|
[807] | 3 | !------------------------------------------------------------------------------! |
---|
| 4 | ! Current revisions: |
---|
| 5 | ! ----------------- |
---|
| 6 | ! |
---|
[846] | 7 | ! |
---|
[807] | 8 | ! Former revisions: |
---|
| 9 | ! ----------------- |
---|
| 10 | ! $Id: check_namelist_files.f90 846 2012-03-07 10:26:21Z raasch $ |
---|
| 11 | ! |
---|
[846] | 12 | ! 845 2012-03-07 10:23:05Z maronga |
---|
| 13 | ! Added call to init_cloud_physics |
---|
| 14 | ! |
---|
[808] | 15 | ! 807 2012-01-25 11:53:51Z maronga |
---|
| 16 | ! Initial revision |
---|
| 17 | ! |
---|
[807] | 18 | ! Description: |
---|
| 19 | ! ------------ |
---|
| 20 | ! Perform namelist file check. The program is independent from PALM and used by |
---|
| 21 | ! the shell script "mrun" to check the parameter files (e.g. p3d, p3df...) b |
---|
| 22 | ! efore the job is submitted/started. Source code from the PALM model in used in |
---|
| 23 | ! check_namelist_files by means of the cpp directive "__check". The compiled |
---|
| 24 | ! program resides in the SCRIPTS folder as check_namelist_files.x. |
---|
| 25 | !------------------------------------------------------------------------------! |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | USE pegrid |
---|
| 29 | USE control_parameters |
---|
| 30 | |
---|
| 31 | IMPLICIT NONE |
---|
| 32 | |
---|
| 33 | |
---|
| 34 | ! |
---|
| 35 | !-- Read number of processors and variable check_restart, which gives |
---|
| 36 | !-- information whether the p3d or the pd3f file shall be checked |
---|
| 37 | READ (*,*,ERR=10,END=10) numprocs, check_restart |
---|
| 38 | 10 CONTINUE |
---|
| 39 | |
---|
[818] | 40 | |
---|
[807] | 41 | ! |
---|
| 42 | !-- Read control parameters from NAMELIST files and read environment-variables1 |
---|
| 43 | CALL parin |
---|
| 44 | |
---|
| 45 | ! |
---|
| 46 | !-- Determine processor topology and local array indices |
---|
| 47 | CALL init_pegrid |
---|
| 48 | |
---|
| 49 | ! |
---|
| 50 | !-- Generate grid parameters |
---|
| 51 | CALL init_grid |
---|
| 52 | |
---|
[845] | 53 | ! |
---|
[807] | 54 | !-- Check control parameters and deduce further quantities |
---|
| 55 | CALL check_parameters |
---|
| 56 | |
---|
[845] | 57 | ! |
---|
| 58 | !-- Check absolute temperature and pressure. Delete this call in case that |
---|
| 59 | !-- init_3d_model is compiled for the parameter file check |
---|
| 60 | CALL init_cloud_physics |
---|
[807] | 61 | |
---|
| 62 | END PROGRAM check_namelist_files |
---|