2022-09-29 17:13:16 +00:00
|
|
|
# Python Imports
|
|
|
|
import os
|
2022-09-22 15:55:31 +00:00
|
|
|
|
2022-09-29 17:13:16 +00:00
|
|
|
# Project Imports
|
|
|
|
from Utilities.env_variables import binary_path
|
2022-09-22 15:55:31 +00:00
|
|
|
|
2022-09-29 17:13:16 +00:00
|
|
|
|
|
|
|
def run_simulation(output_format, input_settings, output_file):
|
|
|
|
os.system(binary_path + " -f " + output_format + " -i " + input_settings + " -o " + output_file)
|