Python bindings for the Java library NeqSim (via JPype), with python stubs
Project description
jNeqSim
Python interface for the NeqSim java package, with stubs. Java interface is created with jpype, and stubs are generated with stubgenj
PYPI
https://pypi.org/project/jneqsim/
[!NOTE] JNeqSim mirrors NeqSims versions
Demo
Example
from jneqsim import neqsim
def pressurize_gas():
inlet_fluid = neqsim.thermo.system.SystemSrkEos()
neqsim.thermo.system.SystemSrkEos()
thermo_ops = neqsim.thermodynamicOperations.ThermodynamicOperations(inlet_fluid)
inlet_fluid.addComponent("methane", 100.0)
inlet_fluid.setTemperature(10, "C")
inlet_fluid.setPressure(20, "bara")
inlet_fluid.setMultiPhaseCheck(True)
inlet_fluid.setSolidPhaseCheck("methane")
thermo_ops.TPflash()
thermo_ops.bubblePointTemperatureFlash()
inlet_fluid.initProperties()
enthalpy = inlet_fluid.getEnthalpy()
inlet_fluid.setPressure(1.0, "bara")
thermo_ops.PHflash(enthalpy)
Dependencies
Version Management
jneqsim uses a controlled release process to ensure compatibility:
- Pinned Versions: Each jneqsim release is pinned to a specific, tested NeqSim JAR version
- Automated Updates: The nightly CI workflow automatically checks for new NeqSim releases and publishes updated jneqsim packages when available
- No Auto-Updates: Applications using jneqsim will not automatically download newer NeqSim versions - they use the tested version that comes with their installed jneqsim package
- Cache Management: Downloaded JARs are cached locally in
~/.jneqsim/cachefor faster subsequent usage
Development
Running Tests
The project uses pytest with custom markers to categorize tests. Test dependencies are already included in the development dependencies.
# Install development dependencies (includes pytest and pytest-mock)
poetry install
# Run unit tests (fast, excludes tests marked as slow)
pytest -v -m "not slow" tests/
# Run all tests (may download JARs for integration tests)
pytest -v tests/
# Run with coverage (requires pytest-cov)
poetry add --group dev pytest-cov
poetry run pytest --cov=jneqsim --cov-report=html tests/
Test markers:
slow: Tests that may download files or take longer to runintegration: Integration tests that require external dependenciesunit: Fast unit tests (default)
:+1: Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jneqsim-3.4.0.tar.gz.
File metadata
- Download URL: jneqsim-3.4.0.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
294cd2dbe21795045514dc4372ecdff0a6f13cde874ec2ef66239b813d9c3a37
|
|
| MD5 |
8dca04b25d26c096a65d4c6d33f259eb
|
|
| BLAKE2b-256 |
c73e5acc3cbdac793fc0dd9691ef8e592b0093c99c004f6f5501bf8ccf5badb7
|
File details
Details for the file jneqsim-3.4.0-py3-none-any.whl.
File metadata
- Download URL: jneqsim-3.4.0-py3-none-any.whl
- Upload date:
- Size: 505.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a29bc36e32f605a07f2d02b103b67b0f6bfd242b7269692e811f0ad6e7d8bff
|
|
| MD5 |
44e0b5d8460834993cf82b03206626dd
|
|
| BLAKE2b-256 |
07292e612bb06aa56042d4d3cec3262710ea00cab92332721b141b473b33c4cd
|