;--------------------------------------------------------------------------------! ; 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 1068 2012-11-26 10:15:04Z hoffmann $ ; ; 1067 2012-11-26 10:13:14Z marong ; Initial revision ; ; Description: ; ------------ ; Configuration file for nc2vdf. ;------------------------------------------------------------------------------! ; Insert number and names of input files numberoffiles = 2 files = new( (/numberoffiles/), string) files(0) = "../OUTPUT/building_3d.nc" files(1) = "../OUTPUT/building_3d.1.nc" ; Insert names of variables to be taken from files specifyed above alt_varnames = False varString = new( (/numberoffiles,1/), string) varString(0,0) = "u" varString(1,0) = "w" ;for using the alternative method (alt_varnames = True): vars = new( (/numberoffiles,1/), integer) vars(0,0) = 10 vars(1,0) = 9 ; 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 = True reflevel = 1 ; LES used periodic lateral boundaries? periodic = True ; LES used grid stretching? grid_stretch = False stretch_level = 999 ; define output file outputfile = "output" +".vdf"