1 | ;--------------------------------------------------------------------------------! |
---|
2 | ; This file is part of PALM. |
---|
3 | ; |
---|
4 | ; PALM is free software: you can redistribute it and/or modify it under the terms |
---|
5 | ; of the GNU General Public License as published by the Free Software Foundation, |
---|
6 | ; either version 3 of the License, or (at your option) any later version. |
---|
7 | ; |
---|
8 | ; PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
9 | ; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
10 | ; A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
11 | ; |
---|
12 | ; You should have received a copy of the GNU General Public License along with |
---|
13 | ; PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
14 | ; |
---|
15 | ; Copyright 1997-2012 Leibniz University Hannover |
---|
16 | ;------------------------------------------------------------------------------! |
---|
17 | ; |
---|
18 | ; Current revisions: |
---|
19 | ; ----------------- |
---|
20 | ; |
---|
21 | ; |
---|
22 | ; Former revisions: |
---|
23 | ; ----------------- |
---|
24 | ; $Id: nc2vdf.config 1079 2012-12-11 10:46:18Z raasch $ |
---|
25 | ; |
---|
26 | ; 1078 2012-12-11 10:44:49Z maronga |
---|
27 | ; Minor changes |
---|
28 | ; |
---|
29 | ; 1067 2012-11-26 10:13:14Z maronga |
---|
30 | ; Initial revision |
---|
31 | ; |
---|
32 | ; Description: |
---|
33 | ; ------------ |
---|
34 | ; Configuration file for nc2vdf. |
---|
35 | ;------------------------------------------------------------------------------! |
---|
36 | |
---|
37 | ; Insert number and names of input files |
---|
38 | numberoffiles = 2 |
---|
39 | files = new( (/numberoffiles/), string) |
---|
40 | files(0) = "../OUTPUT/example_3d.nc" |
---|
41 | files(1) = "../OUTPUT/example_3d.1.nc" |
---|
42 | |
---|
43 | ; Insert names of variables to be taken from files specifyed above |
---|
44 | alt_varnames = False |
---|
45 | ;for using the alternative method (alt_varnames = True): |
---|
46 | ;vars = new( (/numberoffiles,1/), integer) |
---|
47 | ;vars(0,0) = 10 |
---|
48 | ;vars(1,0) = 9 |
---|
49 | |
---|
50 | nvars = 2 ;number of variables (per file) |
---|
51 | |
---|
52 | ;normal method (alt_varnames = False): |
---|
53 | varString = new( (/numberoffiles,1/), string) |
---|
54 | varString(0,0) = "u" |
---|
55 | varString(1,0) = "w" |
---|
56 | |
---|
57 | ; specify index of start and end time step? 'False' will include all time steps |
---|
58 | spec_ts = True |
---|
59 | t_start = 0 |
---|
60 | t_end = 10 |
---|
61 | |
---|
62 | ; Specify a maximum refinement level? 'False' will set the default value. |
---|
63 | spec_reflevel = False |
---|
64 | reflevel = 1 |
---|
65 | |
---|
66 | ; LES used periodic lateral boundaries? |
---|
67 | periodic = True |
---|
68 | |
---|
69 | ; LES used grid stretching? |
---|
70 | grid_stretch = False |
---|
71 | stretch_level = 999 |
---|
72 | |
---|
73 | |
---|
74 | ; define name of output file |
---|
75 | outputfile = "vaporoutput" +".vdf" |
---|
76 | |
---|