You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the _run_simulation function that is submitted to the ProcessPoolExecutor saves the results to a file; thus, any results processing, such as calculating ignition delay times or retrieving top species, must then reload the simulation from the file in the main process after the simulation process completes. Instead, a custom function (Callable[[Simulation], ...]) that can be executed on the simulation process should be available as a keyword argument or a staticmethod that can be overridden.
The text was updated successfully, but these errors were encountered:
Currently, the
_run_simulation
function that is submitted to theProcessPoolExecutor
saves the results to a file; thus, any results processing, such as calculating ignition delay times or retrieving top species, must then reload the simulation from the file in the main process after the simulation process completes. Instead, a custom function (Callable[[Simulation], ...]
) that can be executed on the simulation process should be available as a keyword argument or a staticmethod that can be overridden.The text was updated successfully, but these errors were encountered: