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 1068 2012-11-26 10:15:04Z franke $ |
---|
25 | ; |
---|
26 | ; 1067 2012-11-26 10:13:14Z marong |
---|
27 | ; Initial revision |
---|
28 | ; |
---|
29 | ; Description: |
---|
30 | ; ------------ |
---|
31 | ; Configuration file for nc2vdf. |
---|
32 | ;------------------------------------------------------------------------------! |
---|
33 | |
---|
34 | ; Insert number and names of input files |
---|
35 | numberoffiles = 2 |
---|
36 | files = new( (/numberoffiles/), string) |
---|
37 | files(0) = "../OUTPUT/building_3d.nc" |
---|
38 | files(1) = "../OUTPUT/building_3d.1.nc" |
---|
39 | |
---|
40 | ; Insert names of variables to be taken from files specifyed above |
---|
41 | alt_varnames = False |
---|
42 | |
---|
43 | varString = new( (/numberoffiles,1/), string) |
---|
44 | varString(0,0) = "u" |
---|
45 | varString(1,0) = "w" |
---|
46 | |
---|
47 | ;for using the alternative method (alt_varnames = True): |
---|
48 | vars = new( (/numberoffiles,1/), integer) |
---|
49 | vars(0,0) = 10 |
---|
50 | vars(1,0) = 9 |
---|
51 | |
---|
52 | ; specify index of start and end time step? 'False' will include all time steps |
---|
53 | spec_ts = True |
---|
54 | t_start = 0 |
---|
55 | t_end = 10 |
---|
56 | |
---|
57 | ; Specify a maximum refinement level? 'False' will set the default value. |
---|
58 | spec_reflevel = True |
---|
59 | reflevel = 1 |
---|
60 | |
---|
61 | ; LES used periodic lateral boundaries? |
---|
62 | periodic = True |
---|
63 | |
---|
64 | ; LES used grid stretching? |
---|
65 | grid_stretch = False |
---|
66 | stretch_level = 999 |
---|
67 | |
---|
68 | |
---|
69 | ; define output file |
---|
70 | outputfile = "output" +".vdf" |
---|
71 | |
---|