source: palm/trunk/SCRIPTS/nc2vdf.config @ 1067

Last change on this file since 1067 was 1067, checked in by maronga, 11 years ago

updates in nc2vdf and associated files

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 2.1 KB
RevLine 
[1067]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; Initial revision
21;
22; Former revisions:
23; -----------------
24; $Id: nc2vdf.config 1067 2012-11-26 10:13:14Z maronga $
25;
26;
27; Description:
28; ------------
29; Configuration file for nc2vdf.
30;------------------------------------------------------------------------------!
31
32; Insert number and names of input files
33    numberoffiles   = 2
34    files           = new( (/numberoffiles/), string)
35    files(0)        = "../OUTPUT/building_3d.nc"
36    files(1)        = "../OUTPUT/building_3d.1.nc"
37
38; Insert names of variables to be taken from files specifyed above
39    alt_varnames = False
40   
41    varString = new( (/numberoffiles,1/), string)
42    varString(0,0) = "u"
43    varString(1,0) = "w"
44   
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; specify index of start and end time step? 'False' will include all time steps
51    spec_ts = True
52    t_start = 0
53    t_end   = 10
54   
55; Specify a maximum refinement level? 'False' will set the default value.
56    spec_reflevel = True
57    reflevel      = 1
58   
59; LES used periodic lateral boundaries?
60    periodic = True
61   
62; LES used grid stretching?
63    grid_stretch = False
64    stretch_level = 999   
65
66
67; define output file
68   outputfile = "output" +".vdf"
69   
Note: See TracBrowser for help on using the repository browser.