Usage

Running the Compiler

The compiler is a script named simlc. It reads a program file in the SIML language, and writes a program file in the python language. Diagnostic output is printed to the console. General usage is:

simlc <input file name> [<options>]

When no options are given, the generated python program will have the same base name as the input program, but with the extension changed to ".py". Specifically the command below will produce an executable python program with the name "bioreactor_simple.py".

$> simlc bioreactor_simple.siml 
    

Options

Running the Generated Program

When the generated program is started with no options, all simulations in the program are run. The program also has some command line options.

Options