PyMemSim is a Python package for membrane-process simulation, with a current focus on hollow-fiber membrane (HFM) models.
Current capabilities include:
- Hollow-fiber membrane simulation through the
HFMinterface andcreate_hfm_module(...)factory. - Gas-phase and liquid-phase HFM modeling.
physicalandscalemodeling modes.- Isothermal and non-isothermal simulation setup.
- Dual-side inlet specification (feed/permeate flows, temperatures, pressures).
- Constant-pressure operation for feed and permeate sides.
- Component-wise transport coefficients for gas and liquid systems.
- Solver-based simulation (
scipy.integrate.solve_ivpfor IVP andscipy.integrate.solve_bvpviasolver_bvpfor BVP) with configurable solver options.
Install from PyPI:
pip install PyMemSimQuick version check:
import pymemsim as pms
print(pms.__version__)For a complete end-to-end setup (thermo source, options, model inputs, module creation, and simulation), see:
examples/hfm/gas-hfm-exp-1.pyexamples/hfm/gas-hfm-exp-2.py
You can also review:
examples/hfm/liquid-hfm-exp-1.py
The gas HFM examples show how to switch the membrane flow arrangement through:
HollowFiberMembraneOptions(..., flow_pattern="co-current")HollowFiberMembraneOptions(..., flow_pattern="counter-current")
Reference examples:
examples/hfm/gas-hfm-exp-1.py: co-current case (flow_pattern_to_run = "co-current"), solved with IVP-style solver options (Radau,rtol,atol).examples/hfm/gas-hfm-exp-2.py: counter-current case (flow_pattern_to_run = "counter-current"), solved withsolver_bvpand BVP-style options (mesh_points,tol,bc_tol,max_nodes).
You can run either arrangement in both files by changing flow_pattern_to_run to "co-current" or "counter-current".
PyMemSim is under active development. APIs, model options, and behaviors may change in future releases.
This project is licensed under the Apache-2.0 License. You are free to use, modify, and distribute this software in your own applications or projects. However, if you choose to use this app in another app or software, please ensure that my name, Sina Gilassi, remains credited as the original author. This includes retaining any references to the original repository or documentation where applicable. By doing so, you help acknowledge the effort and time invested in creating this project.
For any question, contact me on LinkedIn