.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/111_constraints_and_status.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_111_constraints_and_status.py: Constraints and Status ====================== This example demonstrates how constraints relate to the status property. It is common for there to exists upper bounds for some analytes, driven by the mineralogical composition. For example a sample that is expected to be Hematite (Fe2O3) will have a maximum Fe composition of 69.97%. Setting constraints on the MassComposition object provides assurance that all records in the dataset are within the specified bounds. Cases where data is Out of Range (OOR) of the prescribed constraints will result in logged warnings. Where possible, visualisations will also highlight a status that is not OK (OOR). .. GENERATED FROM PYTHON SOURCE LINES 16-32 .. code-block:: default import logging import pandas as pd from matplotlib import pyplot as plt from elphick.mass_composition import MassComposition from elphick.mass_composition.flowsheet import Flowsheet from elphick.mass_composition.datasets.sample_data import sample_data logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(module)s: %(message)s', datefmt='%Y-%m-%dT%H:%M:%S%z') # sphinx_gallery_thumbnail_number = -1 .. GENERATED FROM PYTHON SOURCE LINES 33-37 Create a MassComposition object ------------------------------- We get some demo data in the form of a pandas DataFrame .. GENERATED FROM PYTHON SOURCE LINES 38-42 .. code-block:: default df_data: pd.DataFrame = sample_data() df_data .. raw:: html
wet_mass mass_dry FE SIO2 al2o3 LOI group
index
0 100.0 90.0 57.0 5.2 3.0 5.0 grp_1
1 90.0 80.0 59.0 3.1 1.7 4.0 grp_1
2 110.0 90.0 61.0 2.2 0.9 3.0 grp_2


.. GENERATED FROM PYTHON SOURCE LINES 43-44 Construct a MassComposition object .. GENERATED FROM PYTHON SOURCE LINES 44-47 .. code-block:: default obj_mc: MassComposition = MassComposition(df_data) .. GENERATED FROM PYTHON SOURCE LINES 48-49 Inspect the default constraints and the status .. GENERATED FROM PYTHON SOURCE LINES 49-52 .. code-block:: default obj_mc.constraints .. rst-class:: sphx-glr-script-out .. code-block:: none {'mass_wet': [0.0, inf], 'mass_dry': [0.0, inf], 'H2O': [0.0, 100.0], 'Fe': [0.0, 100.0], 'SiO2': [0.0, 100.0], 'Al2O3': [0.0, 100.0], 'LOI': [0.0, 100.0]} .. GENERATED FROM PYTHON SOURCE LINES 53-55 .. code-block:: default print(obj_mc.status) .. rst-class:: sphx-glr-script-out .. code-block:: none status.ok: True num_oor: 0 .. GENERATED FROM PYTHON SOURCE LINES 56-57 The status is ok since the data is all in range, so there are no OOR records. .. GENERATED FROM PYTHON SOURCE LINES 59-63 Modify the constraints to demonstrate OOR data ---------------------------------------------- The Fe upper constraint will be set low enough to demonstrate the OOR case. .. GENERATED FROM PYTHON SOURCE LINES 63-67 .. code-block:: default obj_mc_oor: MassComposition = MassComposition(df_data, constraints={'Fe': [0.0, 60.0]}) print(obj_mc_oor.status) .. rst-class:: sphx-glr-script-out .. code-block:: none 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. status.ok: False num_oor: 1 .. GENERATED FROM PYTHON SOURCE LINES 68-69 We can view the failing records .. GENERATED FROM PYTHON SOURCE LINES 69-72 .. code-block:: default obj_mc_oor.status.oor .. raw:: html
mass_wet mass_dry H2O Fe SiO2 Al2O3 LOI
index
2 NaN NaN NaN 61.0 NaN NaN NaN


.. GENERATED FROM PYTHON SOURCE LINES 73-79 OOR data within a network ------------------------- When an object exists in a network with a failing status (with OOR data) it will be coloured red. We will first construct a simple network and plot it, the network is balanced (across nodes) .. GENERATED FROM PYTHON SOURCE LINES 79-87 .. code-block:: default obj_mc_feed: MassComposition = MassComposition(df_data, name='feed', constraints={'Fe': [0.0, 69.97]}) obj_mc_1, obj_mc_2 = obj_mc_feed.split(0.4, name_1='stream_1', name_2='stream_2') fs: Flowsheet = Flowsheet().from_streams([obj_mc_feed, obj_mc_1, obj_mc_2]) fs.plot() plt.show() print(fs.balanced) .. image-sg:: /auto_examples/images/sphx_glr_111_constraints_and_status_001.png :alt: Flowsheet Balanced: True Edge Status OK: True :srcset: /auto_examples/images/sphx_glr_111_constraints_and_status_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none True .. GENERATED FROM PYTHON SOURCE LINES 88-90 Now we will modify the grades of a single stream so that they are OOR. Note that this will also create a node imbalance that is highlighted red. .. GENERATED FROM PYTHON SOURCE LINES 90-94 .. code-block:: default obj_mc_2.update_data(obj_mc_2.data['Fe'] + 10.0) obj_mc_2.data.to_dataframe() .. raw:: html
mass_wet mass_dry H2O Fe SiO2 Al2O3 LOI group
index
0 60.0 54.0 10.000000 67.0 5.2 3.0 5.0 grp_1
1 54.0 48.0 11.111111 69.0 3.1 1.7 4.0 grp_1
2 66.0 54.0 18.181818 71.0 2.2 0.9 3.0 grp_2


.. GENERATED FROM PYTHON SOURCE LINES 95-99 .. code-block:: default fs.plot() plt.show() print(fs.balanced) .. image-sg:: /auto_examples/images/sphx_glr_111_constraints_and_status_002.png :alt: Flowsheet Balanced: False Edge Status OK: False, {'stream_2': ['Fe']} :srcset: /auto_examples/images/sphx_glr_111_constraints_and_status_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. False .. GENERATED FROM PYTHON SOURCE LINES 100-101 Display the offending edge records .. GENERATED FROM PYTHON SOURCE LINES 101-104 .. code-block:: default print(fs.get_edge_by_name('stream_2').status.failing_components) fs.get_edge_by_name('stream_2').status.oor .. rst-class:: sphx-glr-script-out .. code-block:: none ['Fe'] .. raw:: html
mass_wet mass_dry H2O Fe SiO2 Al2O3 LOI
index
2 NaN NaN NaN 71.0 NaN NaN NaN


.. GENERATED FROM PYTHON SOURCE LINES 105-108 The red edge is caused by the Fe of 71.0 on stream_2 exceeding 69.97. The red node is caused by the mass not balancing across that node - we would expect the imbalance to be in Fe. .. GENERATED FROM PYTHON SOURCE LINES 108-111 .. code-block:: default fs.graph.nodes[1]['mc'].node_balance() .. raw:: html
mass_wet mass_dry H2O Fe SiO2 Al2O3 LOI
index
0 0.0 0.0 0.0 -5.4 -8.881784e-16 0.000000e+00 0.0
1 0.0 0.0 0.0 -4.8 -4.440892e-16 2.220446e-16 0.0
2 0.0 0.0 0.0 -5.4 0.000000e+00 0.000000e+00 0.0


.. GENERATED FROM PYTHON SOURCE LINES 112-113 We have confirmed the imbalance is in Fe by inspecting the balance across node 1. .. GENERATED FROM PYTHON SOURCE LINES 115-116 The interactive network plot applies equivalent formatting. .. GENERATED FROM PYTHON SOURCE LINES 116-119 .. code-block:: default fig = fs.plot_network() fig .. rst-class:: sphx-glr-script-out .. code-block:: none 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. 2024-05-28T13:06:29+0000 WARNING mc_status: 1 out of range records exist. .. raw:: html


.. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.577 seconds) .. _sphx_glr_download_auto_examples_111_constraints_and_status.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: 111_constraints_and_status.py <111_constraints_and_status.py>` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: 111_constraints_and_status.ipynb <111_constraints_and_status.ipynb>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_