Global Scripts

Important

To use the built in python examples, please install Python – Windows

This capability allows you to extend the Solver GUI with additional menu items that execute custom commands and scripts. This can be leveraged to run Python, MATLAB, or any other tasks associated with your M-Star cases. This system is general purpose in that you can run any command you want. So you can also do things like submit jobs to a cluster via SSH, or synchronize data to your local machine. The main purpose of the global scripts functionality is to provide useful commands to your users to streamline common tasks.

By default, M-Star provides a handful of Python based examples in the data/Scripts/ folder in your installation. This is also the location of the configuration file that specifies the menu item and command line. You are encouraged to copy the scripts to a new location and customize them as needed. They are provided mostly as a starting point.

config.ini

This configuration file lives in the same directory as all your scripts. It specifies the menu item name and command line. An example config is shown below. Each ini configuration group, for example, MyCommand1, must be a unique name in your file. The group names should only contain letters and numbers. The options in each group specify the menu item name and the associated command line.

The command line has a simple variable substitution syntax, with variable names enclosed in curly brackets. The following variable names are available:

  • MStarPython : If you have installed the M-Star Python distribution, this will be filled in with the full path to the Python executable.

  • ScriptDir : This is the directory where the catalog.ini lives. Typically used to get a full path for any scripts being used.

  • Any variable defined in the Global section will be available in the commands defined in the configuration. This is useful if you are setting up a custom python installation or need to reuse values in your commands for any reason.

[Global]
# Runs a specific miniconda environment and keeps the console window open when command is done
CustomPythonCmd = cmd /K C:/a/miniconda/condabin/conda.bat run --name mstarscripts python
SystemPythonCmd = cmd /K python

[MyCommand1]
DisplayName = Live Plot
Command = cmd /K "{MStarPython} -m bokeh serve --show "{ScriptDir}/liveplot.py""

[SimplePlot1]
DisplayName = Plot Forces
Command = cmd /K "{MStarPython} "{ScriptDir}/charts.py""
IconName = chart_curve

Config File Format

  • Sections are denoted by a name in square brackets, eg. [MySectionName1]. Section names must be unique and contain only letters and numbers (no spaces).

  • Values are denoted by KEYNAME = Value.

  • The Global section is special and must only be used for variable settings

  • Other sections are used to define commands and must all be uniquely named

[Global]

Section for variables that can be referenced in other sections. Global variables cannot reference other global variables.

DisplayName

The name of the menu/button item

Description

Help text that will be displayed in certain areas

IconName

Name of an icon from. See famfamfam Icon Set . Icon set provided by famfamfam

Command

The command that is executed. A few tips:

  • On windows use the cmd /K to start your commands in order to keep the command window open upon script termination. This helps debug any issues that come up

  • Use double quotes " to enclose the entire command and script paths as shown in the above configuration sample. This deal with any issues with spaces in the path name

  • Use the {ScriptDir}, {MStarPython}, and any other variables you define to help define the command

Here the above configuration will generate 2 commands in the Scripts menu of the Solver GUI. In this case we are using the MStarPython variable so we must have that installed prior to execution.

Scripts

Use script files in your global scripts location to perform common workflow activities. A few examples are provided with M-Star in order help get you started. These examples include the following

  • Make Report : Plot every stats channel in the output and create a PDF containing all the plots

  • Make Video : Use the Slice output data to render a video

  • Plot Forces : An simple example using matplotlib to plot some stats data

  • Live Plot : Use the python Bokeh library to create a automatically updating plot in your browser

  • Make Report Data : Process VTK data and output all images for 3 defined orthogonal views

  • Make Histograms : Compute the histogram of velocity on the volume output data (last time step)

Use your own scripts

  1. Copy the data/Scripts/ folder to a location you can edit

  2. Edit the Global Scripts Directory option in the application preferences to the location you are using

  3. Edit the config.ini file to add/remove commands

  4. Write new scripts and commands

Note that there is no requirement to use Python for your commands.

More tips

If you need to reference a python module from another, be sure to update your sys.path or otherwise define your python environment so the search path finds your module. In the provided example scripts, this is accomplished by using the following code from a script. Note that we need to append a path name prior to importing our python module. Replace yourmodulename with the module you need to reference.

import sys
sys.path.append(os.path.dirname(__file__))
import yourmodulename