I can't reproduce the precipitation results from the example: [here](https://pyequion2.readthedocs.io/en/latest/tutorials.html#example-3-equilibrium-with-precipitation). Here's a screenshot of my own results from the code below <img width="1067" height="294" alt="Image" src="https://github.com/user-attachments/assets/50707186-18eb-4db6-94dd-7601e2835859" /> ```python import pyequion2 as pe eqsys = pe.EquilibriumSystem(['Ca', 'Na', 'C', 'Cl'], from_elements=True) molal_balance = {'Ca':0.028, 'C':0.065, 'Na':0.065, 'Cl':0.056} TK = 298.15 #Temperature in Kelvin PATM = 1.0 #Pressure in atm solution, solution_stats = eqsys.solve_equilibrium_elements_balance_phases(TK, molal_balance) solution.solid_molals ```