vulc_stopeopt
Use this to create a batch file to run the Stope Shape Optimiser engine as a standalone tool from a CMD box.
Using a Vulcan cshell and a Vulcan stope optimiser parameters file (.sof
):
#!/usr/bin/csh -f
$VULCAN/bin/exe/vulc_stopeopt.exe <parameters file> <scenario id>
Using a Vulcan cshell and a valid XML file:
#!/usr/bin/csh -f
$VULCAN/bin/exe/stopeopt/StopeOpt.exe -v <xml file>
To create an XML file from a Vulcan parameters file use:
$VULCAN/bin/exe/vulc_stopeopt.exe -x <parameters file> <scenario id>
Using a command prompt batch file:
@echo off
rem - ensure the runtime dlls are avaliable
set PATH="C:\Program Files\Maptek\Vulcan 9.1\bin\exe\stopeopt";%PATH%
StopeOpt.exe -v test.xml
pause