;--------------------------------------------------------------------------------! ; This file is part of PALM. ; ; PALM is free software: you can redistribute it and/or modify it under the terms ; of the GNU General Public License as published by the Free Software Foundation, ; either version 3 of the License, or (at your option) any later version. ; ; PALM is distributed in the hope that it will be useful, but WITHOUT ANY ; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR ; A PARTICULAR PURPOSE. See the GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License along with ; PALM. If not, see . ; ; Copyright 1997-2012 Leibniz University Hannover ;------------------------------------------------------------------------------! ; ; Current revisions: ; ----------------- ; ; ; Former revisions: ; ----------------- ; $Id: nc2vdf.config 1079 2012-12-11 10:46:18Z maronga $ ; ; 1078 2012-12-11 10:44:49Z maronga ; Minor changes ; ; 1067 2012-11-26 10:13:14Z maronga ; Initial revision ; ; Description: ; ------------ ; Configuration file for nc2vdf. ;------------------------------------------------------------------------------! ; Insert number and names of input files numberoffiles = 2 files = new( (/numberoffiles/), string) files(0) = "../OUTPUT/example_3d.nc" files(1) = "../OUTPUT/example_3d.1.nc" ; Insert names of variables to be taken from files specifyed above alt_varnames = False ;for using the alternative method (alt_varnames = True): ;vars = new( (/numberoffiles,1/), integer) ;vars(0,0) = 10 ;vars(1,0) = 9 nvars = 2 ;number of variables (per file) ;normal method (alt_varnames = False): varString = new( (/numberoffiles,1/), string) varString(0,0) = "u" varString(1,0) = "w" ; specify index of start and end time step? 'False' will include all time steps spec_ts = True t_start = 0 t_end = 10 ; Specify a maximum refinement level? 'False' will set the default value. spec_reflevel = False reflevel = 1 ; LES used periodic lateral boundaries? periodic = True ; LES used grid stretching? grid_stretch = False stretch_level = 999 ; define name of output file outputfile = "vaporoutput" +".vdf"