ProcStart ()

Starts the execution of a list (chain) of process.

Usage

ProcStart( problem, dir, procs )

Parameters

problem (string)
The problem name which these processes is run from.
dir (string)
The working directory of the problem.
procs (list)
The list of the processes to be run.

Return Value

None

Errors

The processes in the procs must be already defined.

Description

This routine starts the execution of a list (chain) of processes and is given by procs. The problem that the processes are run for it is given by problem and its working directory by dir. For example:
procList = ( genMesh, impMesh, getInp, runPbs, probe )
ProcStart( problem = 'Mixer',
            dir = ".",
            procs = procList )