|   Home   |   Training   | 

Running Mathematica within a batch environment

Download the notebook

Mathematica can easily used within a batch environment, this is without user interaction. This is desirable e.g. if Mathematica is used for the the estimation of market parameters every few hours.

Information on how to do this is scattered over "The Mathematica book" and we were asked several times about this feature. The following example will demonstrate the use of Mathematica in a batch environment under Microsoft windows. The same should also be available with other operating systems.

To simplify the typing and to allow Mathematica to find the necessary files make sure that the currend directory is the root directory for Mathematica. On most installations using the command Directory  right after the start of the Mathematica front end should return the root directory.

[Graphics:Images/index_gr_1.gif]
[Graphics:Images/index_gr_2.gif]

Now we simply create a simple text file which will hold the Mathematica commands we want to have evaluated

[Graphics:Images/index_gr_3.gif]

Unevaluated avoids the immidiate evaluation of this expressions. The newly created file now looks like the following.

[Graphics:Images/index_gr_4.gif]
2 + 2 >> "result.txt"

All text editors can be used to create such a file. There is no need to use Mathematica for creating the text file. To let the Mathematica Kernel evaluate the commands in the input file just use a DOS shell, move to the root directory and type in

        Math < AddTwo.

as shown below:

[Graphics:Images/index_gr_5.gif]

In an batch environment the last line would be part of an *.bat or other scripting file.
The same can be achieved from within Mathematica using the Run command.

[Graphics:Images/index_gr_6.gif]
[Graphics:Images/index_gr_7.gif]
[Graphics:Images/index_gr_8.gif]
[Graphics:Images/index_gr_9.gif]

The result of this can be found in the file result.txt.

[Graphics:Images/index_gr_10.gif]
4

The same approach works with Mathematica notebooks. They are also text based and readily interpretable for the Mathematica kernel. To demonstrate this evaluate the following Mathematica lines. First create a new notebook, either by using the front end menu File|New typing as an example

    4+4>> result.txt

into the newly created notebook and save it as "AddTwo.nb" in the root directory. Alternativly one can evaluate the following lines, which let the Kernel perform the described steps

[Graphics:Images/index_gr_11.gif]
[Graphics:Images/index_gr_12.gif]

To see how the Mathematica Kernel works on this notebook use the DOS shell again, move to the Mathematica root directory and type this time.

        Math < AddTwo.nb

This will write the output file with the following content.

[Graphics:Images/index_gr_13.gif]
8

For logging purposes it might be usefull to catch error or other messages generated from Mathematica. This can be achieved through providing another parameter on the command line.

        Math < AddTwo.nb > log.txt

Now log.txt will capture all the text the kernel will generate during the evaluation. This can result in a very large file with a lot of useless information. To achieve a better logging we recommend the LogBook application which can be found as MathSource item 0205-850. see http://www.mathsource.com/Content/Enhancements/System/0205-850.

Certainly more complicated calculations can be run using this approach. Our Database-Link e.g. is constructed to smoothly run in such an environment and an application to estimate market parameters runs daily within a bank in this way.


Converted by Mathematica      April 26, 2002