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

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

updates in nc2vdf.config

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 2.2 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; -----------------
[1078]20; Minor changes
[1067]21;
22; Former revisions:
23; -----------------
24; $Id: nc2vdf.config 1078 2012-12-11 10:44:49Z maronga $
25;
[1078]26; 1067 2012-11-26 10:13:14Z maronga
[1068]27; Initial revision
[1067]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)
[1078]37    files(0)        = "../OUTPUT/example_3d.nc"
38    files(1)        = "../OUTPUT/example_3d.1.nc"
[1067]39
40; Insert names of variables to be taken from files specifyed above
41    alt_varnames = False
[1078]42    ;for using the alternative method (alt_varnames = True):
43    ;vars = new( (/numberoffiles,1/), integer)
44    ;vars(0,0) = 10
45    ;vars(1,0) = 9
46
47    nvars = 2 ;number of variables (per file)
48
49    ;normal method (alt_varnames = False):
[1067]50    varString = new( (/numberoffiles,1/), string)
51    varString(0,0) = "u"
52    varString(1,0) = "w"
[1078]53
[1067]54; specify index of start and end time step? 'False' will include all time steps
55    spec_ts = True
56    t_start = 0
57    t_end   = 10
[1078]58
[1067]59; Specify a maximum refinement level? 'False' will set the default value.
[1078]60    spec_reflevel = False
[1067]61    reflevel      = 1
[1078]62
[1067]63; LES used periodic lateral boundaries?
64    periodic = True
[1078]65
[1067]66; LES used grid stretching?
67    grid_stretch = False
[1078]68    stretch_level = 999
[1067]69
70
[1078]71; define name of output file
72   outputfile = "vaporoutput" +".vdf"
73
Note: See TracBrowser for help on using the repository browser.