.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/_simulating_network_functions.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples__simulating_network_functions.py: Network Simulation Tools ======================== This is not a runnable example, but are the functions and classes used in the simulating_networks.py example. Including the my_simulator function in the main script can cause parallel processing issues (at least when trying to run both as a script and an ipython/Sphinx example). .. GENERATED FROM PYTHON SOURCE LINES 11-31 .. code-block:: default import time from random import random from elphick.mass_composition import MassComposition from elphick.mass_composition.flowsheet import Flowsheet def my_simulator(args) -> tuple[int, Flowsheet]: mc: MassComposition sid, mc = args mc.name = 'feed' fraction = random() time.sleep(fraction * 10) lump, fines = mc.split(fraction, name_1='lump', name_2='fines') fs: Flowsheet = Flowsheet.from_streams(streams=[mc, lump, fines], name=f'Sample {sid}') return sid, fs .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.001 seconds) .. _sphx_glr_download_auto_examples__simulating_network_functions.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: _simulating_network_functions.py <_simulating_network_functions.py>` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: _simulating_network_functions.ipynb <_simulating_network_functions.ipynb>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_