https://github.com/watertap-org/parameter-sweep
https://github.com/watertap-org/parameter-sweep
idaesplus parameter-sweep pyomo
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/watertap-org/parameter-sweep
- Owner: watertap-org
- License: other
- Created: 2024-04-24T14:01:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-10T15:37:12.000Z (8 months ago)
- Last Synced: 2025-12-29T09:16:21.448Z (5 months ago)
- Topics: idaesplus, parameter-sweep, pyomo
- Language: Python
- Homepage: https://parameter-sweep.readthedocs.io
- Size: 1.3 MB
- Stars: 1
- Watchers: 3
- Forks: 5
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Parameter Sweep
## For contributors
### Installation
```sh
# create Conda env for Parameter Sweep development, if not present
conda create --yes --name parameter-sweep-dev python=3.10
# ensure Conda env is active
conda activate parameter-sweep-dev
# clone this repo locally
git clone https://github.com/watertap-org/parameter-sweep && cd parameter-sweep
pip install -r requirements-dev.txt
```
### Running tests
```sh
conda activate parameter-sweep-dev
pytest --pyargs parameter_sweep
```
### Before committing
```sh
black .
```