OpenFLUID.runSimulationAsExternalProcessR Documentation

Runs a simulation from a simulation definition blob as an external independent process

Description

Runs a simulation from a simulation definition blob as an external independent process

Usage

OpenFLUID.runSimulationAsExternalProcess(
  ofblob,
  workpath = NULL,
  verbose = FALSE
)

Arguments

ofblob

the simulation definition blob

workpath

a workspace for simulation files. Inside this path, an IN directory will be created to store the input dataset, and an out directory will be created for output data. If this workpath is not provided or is NULL, a temporary path will be automatically generated

verbose

the verbose mode for the run. Possible values are similar than the R system2 built-in function, e.g. FALSE for quiet mode, "" for console output, a path string for file log.

See Also

OpenFLUID.runSimulation

Examples

## Not run: 
OpenFLUID.runSimulationAsExternalProcess(ofsim)
OpenFLUID.runSimulationAsExternalProcess(ofsim, workpath = "/path/to/work")

## End(Not run)