ARR 2019 Ensembles Processing: Difference between revisions
Content deleted Content added
(20 intermediate revisions by 4 users not shown) | |||
Line 1:
==Introduction==
The
==Choice of Output==
As the model
Commands in the TCF:<br>
:<font color="blue"><tt>Map Output Format </tt></font> <font color="red"><tt>== </tt></font><tt>FLT</tt><br>
:<font color="blue"><tt>Map Output Date Types </tt></font> <font color="red"><tt>== </tt></font><tt>h, d, V</tt><br>
:<font color="blue"><tt>FLT Map Output Interval </tt></font> <font color="red"><tt>== </tt></font><tt>0</tt><br>
If using only time-series outputs (xmdf, dat) an extra step will be required to
==Median==
Use <u>[https://wiki.tuflow.com/index.php?title=ASC_to_ASC#.22-statMedian.22 ASC_to_ASC utility (-statMedian switch)]</u> to create the median result of required
==Maximums==
Use <u>[https://wiki.tuflow.com/index.php?title=ASC_to_ASC#Maximum ASC_to_ASC utility (-max switch)]</u> to create the maximum envelope of the median results for each AEP.
==Processing Batch File Tips==
*
:<u>Example:</u><br>
:This method would be preferable:<br>
:<tt>"C:\TUFLOW\Utilities\asc_to_asc_w64.exe" -b -out
:Instead of this method:<br>
:<tt>"C:\TUFLOW\Utilities\asc_to_asc_w64.exe" -b -out "C:\Projects\Project_1024\Processing\
*A wild card (*) can be used to avoid typing all the file names. Instead ASC_to_ASC utility will automatically read all the files with the same start and end of the filename.<br>
:<u>Example:</u><br>
:This method would be preferable:<br>
:<tt>"C:\TUFLOW\Utilities\asc_to_asc_w64.exe" -b -out
:Instead of this method:<br>
:<tt>"C:\TUFLOW\Utilities\asc_to_asc_w64.exe" -b -out
*Looping through variables in a batch file can also be used to make the processing more efficient. Example of such batch file is below:<br>
@echo off
:: This sets the variables as local, so you can use another batch file with A and B variables
SetLocal
:: set path to
set ASC_to_ASC="C:\TUFLOW\Utilities\asc_to_asc_w64.exe"
:: set up variables
set A=060m 120m 180m 240m 300m 360m
set B=tp01 tp02 tp03 tp04 tp05 tp06 tp07 tp08 tp09 tp10
Line 45 ⟶ 46:
FOR %%a in (%A%) do (
FOR %%b in (%B%) DO (
%ASC_to_ASC% -b -statMedian
)
)
pause
</pre>
<br>
{{Tips Navigation
|uplink=[[ TUFLOW_Modelling_Guidance | Back to TUFLOW Modelling Guidance]]
}}
|