Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

Everything E3D

Running Clash Manager from the Command Line Interface

Running Clash Manager from the Command Line Interface

  • Last UpdatedSep 09, 2025
  • 1 minute read

AVEVA Clash Manager provides a PML capability to start up and run clash sets from the command line.

Start Clash Manager from the command line by instantiating the clashManagerInterface object, which will then create the core clashManager object.

!!clashManagerInterface = object clashManagerInterface()

List the available clash sets to the command line by calling the listClashSets method.

!!clashManager.listClashSets()

Run a clash set by calling the runClashSet method. Note that only one clash set run can be active at a time, so consecutive calls will fail. Once a clash set run has completed its last run date and comment will be visible in the Clash Sets form.

!!clashManager.runClashSet(!clashSetNumber is REAL, !comment is STRING)

In graphical mode use the show method to display Clash Manager main form.

!!clashManager.show()