A template which all new Connectors (integrations which provide Simvue tracking for Non-Python software) should inherit from.
A customised WrappedRun
class has been created which has the following methods:
The _pre_simulation
method is called when the launch()
method is called, but before the file monitor is started. This means that it should include:
- Upload of any input or code files
- Adding any tags or metadata which are present before the simulation begins
- Creating alerts
- Logging events messages required before the simulation begins
- Adding the process for the simulation, using parameters which will be input into the launch method
Because this class inherits from the base Simvue Run class, all methods associated with that are available through self.
You should also call the functionality from the WrappedRun class at the top of your method using super()._pre_simulation()
- this creates a trigger which can be used to abort the file monitor, and checks that a simvue Run has been initialized before the launch method was called.
The _during_simulation
method is called when the launch()
method is called, and within the self.file_monitor context manager. This is an instance of the FileMonitor class from multiparser, which monitors any files which you wish to track. You should include all of your multiparser code inside this method, eg:
- Calls to the .track() method, detailing a file to read and the methods or functions used to process and upload data from it
- Calls to the .tail() method, detailing a file to read line by line as it is written and the methods or functions used to process and upload data from it
The _post_simulation
method is called when the launch()
method is called, but after the file monitor is finished. This means that it should include:
- Upload of any output files
- Adding any tags or metadata which are generated after the simulation finishes
- Logging events messages required after the simulation finishes
Because this class inherits from the base Simvue Run class, all methods associated with that are available through self. You should also call the functionality from the WrappedRun class at the bottom of your method using super()._post_simulation()
- this adds support for soft aborts of simulation, and termination of simulations with alerts.
The launch
method is the overall method which starts the file monitor and calls the three methods above. This should be overriden to require the user to provide any inputs relevant to running the simulation, for example the path to an executable, the path of an input file, and/or the path of an output directory.
Once you have created your set of required parameters, make sure to call the parent launch method: super().launch()
.
To install and use this connector, first create a virtual environment:
python -m venv venv
Then activate it:
source venv/bin/activate
And then use pip to install this module:
pip install simvue-connector
The service URL and token can be defined as environment variables:
export SIMVUE_URL=...
export SIMVUE_TOKEN=...
or a file simvue.toml
can be created containing:
[server]
url = "..."
token = "..."
The exact contents of both of the above options can be obtained directly by clicking the Create new run button on the web UI. Note that the environment variables have preference over the config file.
from simvue_connector.connector import WrappedRun
import multiparser.parsing.tail as mp_tail_parser
# Create a new Connector class which inherits from WrappedRun
class TemperatureRun(WrappedRun):
script_path: pathlib.Path = None
# Override the `_pre_simulation` method to launch the process
def _pre_simulation(self):
# Call the base method first
super()._pre_simulation()
# Add a process to the run using `add_process`
self.add_process(
identifier="heating_experiment",
executable="bash",
script=self.script_path,
completion_trigger=self._trigger # Sets a multiprocessing Event once the simulation is completed
)
# Override the `_during_simulation` method to track the temperature data
def _during_simulation(self):
# Use the `tail` method of the Multiparser `FileMonitor` object to track file, line by line
self.file_monitor.tail(
path_glob_exprs=str(self.script_path.with_suffix(".csv")),
parser_func=mp_tail_parser.record_csv, # Use the built-in CSV parser, which returns a dictionary of data and metadata as each line is written
callback=lambda csv_data, metadata: self.log_metrics( # Use data from those two dictionaries to log a metric:
{'sample_temperature': csv_data["Temperature"]},
time=csv_data["Time"],
step=csv_data["Step"],
)
)
# Override the `_post_simulation` method to upload the final CSV file of temperature data
def _post_simulation(self):
self.save_file(self.script_path.with_suffix(".csv"), category="output")
# And finally call the base method
super()._post_simulation()
# Override the `launch` method to accept the path to the bash script
def launch(self, script_path: str):
self.script_path = script_path
# Call the base `launch` method to call the above methods in the correct order
super().launch()
Released under the terms of the Apache 2 license.
To reference Simvue, please use the information outlined in this citation file.