pcgym


Namepcgym JSON
Version 0.1.6 PyPI version JSON
download
home_pageNone
SummaryReinforcement learning suite of process control problems.
upload_time2024-04-17 11:30:01
maintainerNone
docs_urlNone
authorNone
requires_python~=3.10
licenseMIT License Copyright (c) 2024 Maximilian Bloor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords reinforcement-learning process-control jax casadi control
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">
  <a href="https://github.com/MaximilianB2/pc-gym/blob/main/docs/img/pc-gym-blue-Ai.png">
    <img src="https://github.com/MaximilianB2/pc-gym/blob/main/docs/img/pc-gym-blue-Ai.png"/></a><br>
  <b>Reinforcement learning environments for process control </b><br>
</h1>
<p align="center">
      <a href="https://www.python.org/doc/versions/">
        <img src="https://img.shields.io/badge/python-3.10-blue.svg" /></a>  
      <a href="https://opensource.org/license/mit">
        <img src="https://img.shields.io/badge/license-MIT-orange" /></a>
      <a href="https://github.com/astral-sh/ruff">
        <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json" /></a>
</p>


## Quick start ⚡
Setup a CSTR environment with a setpoint change

```python 
import pcgym

# Simulation variables
nsteps = 100
T = 25

# Setpoint
SP = {'Ca': [0.85 for i in range(int(nsteps/2))] + [0.9 for i in range(int(nsteps/2))]} 

# Action and observation Space
action_space = {'low': np.array([295]), 'high': np.array([302])}
observation_space = {'low': np.array([0.7,300,0.8]),'high': np.array([1,350,0.9])}

# Construct the environment parameter dictionary
env_params = {
    'N': nsteps, # Number of time steps
    'tsim':T, # Simulation Time
    'SP' :SP, 
    'o_space' : observation_space, 
    'a_space' : action_space, 
    'x0': np.array([0.8, 330, 0.8]), # Initial conditions [Ca, T, Ca_SP]
    'model': 'cstr_ode', # Select the model
}

# Create environment
env = pcgym.make_env(env_params)

# Reset the environment
obs, state = env.reset()

# Sample a random action
action = env.action_space.sample()

# Perform a step in the environment
obs, rew, done, term, info = env.step(action)
```
## Documentation

You can read the full documentation [here](https://maximilianb2.github.io/pc-gym/)!

## Installation ⏳

The latest pc-gym version can be installed from PyPI:

```bash
pip install pcgym
```

## Examples

TODO: Link example notebooks here

## Implemented Process Control Environments 🎛️

|          Environment          | Reference | Source | Documentation |
|:-----------------------------:|:---------:|:------:|---------------|
|              CSTR             | [Hedengren, 2022](https://github.com/APMonitor/pdc/blob/master/CSTR_Control.ipynb)     | [Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py)      |               |
|       First Order Sytem       |      N/A  | [Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py)        |               |
| Multistage Extraction Column  |  [Ingham et al, 2007 (pg 471)](https://onlinelibrary.wiley.com/doi/book/10.1002/9783527614219)         | [Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py)        |               |
| Nonsmooth Control|[Lim,1969](https://pubs.acs.org/doi/epdf/10.1021/i260031a007)|[Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py) ||


 
## Citing `pc-gym`
If you use `pc-gym` in your research, please cite using the following 
```
@software{pcgym2024,
  author = {Max Bloor and and Jose Neto and Ilya Sandoval and Max Mowbray and Akhil Ahmed and Mehmet Mercangoz and Calvin Tsay and Antonio Del Rio-Chanona},
  title = {{pc-gym}: Reinforcement Learning Envionments for Process Control},
  url = {https://github.com/MaximilianB2/pc-gym},
  version = {0.0.4},
  year = {2024},
}
```

## Other Great Gyms 🔍
- ✨[safe-control-gym](https://github.com/utiasDSL/safe-control-gym) 
- ✨[safety-gymnasium](https://github.com/PKU-Alignment/safety-gymnasium)
- ✨[gymnax](https://github.com/RobertTLange/gymnax)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pcgym",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.10",
    "maintainer_email": null,
    "keywords": "reinforcement-learning, process-control, jax, casadi, control",
    "author": null,
    "author_email": "Max Bloor <max.bloor@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/f7/15/19d565742baca2b0383b7e35326991d6326d0cc63042e11cd7bad4dc086a/pcgym-0.1.6.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">\r\n  <a href=\"https://github.com/MaximilianB2/pc-gym/blob/main/docs/img/pc-gym-blue-Ai.png\">\r\n    <img src=\"https://github.com/MaximilianB2/pc-gym/blob/main/docs/img/pc-gym-blue-Ai.png\"/></a><br>\r\n  <b>Reinforcement learning environments for process control </b><br>\r\n</h1>\r\n<p align=\"center\">\r\n      <a href=\"https://www.python.org/doc/versions/\">\r\n        <img src=\"https://img.shields.io/badge/python-3.10-blue.svg\" /></a>  \r\n      <a href=\"https://opensource.org/license/mit\">\r\n        <img src=\"https://img.shields.io/badge/license-MIT-orange\" /></a>\r\n      <a href=\"https://github.com/astral-sh/ruff\">\r\n        <img src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json\" /></a>\r\n</p>\r\n\r\n\r\n## Quick start \u26a1\r\nSetup a CSTR environment with a setpoint change\r\n\r\n```python \r\nimport pcgym\r\n\r\n# Simulation variables\r\nnsteps = 100\r\nT = 25\r\n\r\n# Setpoint\r\nSP = {'Ca': [0.85 for i in range(int(nsteps/2))] + [0.9 for i in range(int(nsteps/2))]} \r\n\r\n# Action and observation Space\r\naction_space = {'low': np.array([295]), 'high': np.array([302])}\r\nobservation_space = {'low': np.array([0.7,300,0.8]),'high': np.array([1,350,0.9])}\r\n\r\n# Construct the environment parameter dictionary\r\nenv_params = {\r\n    'N': nsteps, # Number of time steps\r\n    'tsim':T, # Simulation Time\r\n    'SP' :SP, \r\n    'o_space' : observation_space, \r\n    'a_space' : action_space, \r\n    'x0': np.array([0.8, 330, 0.8]), # Initial conditions [Ca, T, Ca_SP]\r\n    'model': 'cstr_ode', # Select the model\r\n}\r\n\r\n# Create environment\r\nenv = pcgym.make_env(env_params)\r\n\r\n# Reset the environment\r\nobs, state = env.reset()\r\n\r\n# Sample a random action\r\naction = env.action_space.sample()\r\n\r\n# Perform a step in the environment\r\nobs, rew, done, term, info = env.step(action)\r\n```\r\n## Documentation\r\n\r\nYou can read the full documentation [here](https://maximilianb2.github.io/pc-gym/)!\r\n\r\n## Installation \u23f3\r\n\r\nThe latest pc-gym version can be installed from PyPI:\r\n\r\n```bash\r\npip install pcgym\r\n```\r\n\r\n## Examples\r\n\r\nTODO: Link example notebooks here\r\n\r\n## Implemented Process Control Environments \ud83c\udf9b\ufe0f\r\n\r\n|          Environment          | Reference | Source | Documentation |\r\n|:-----------------------------:|:---------:|:------:|---------------|\r\n|              CSTR             | [Hedengren, 2022](https://github.com/APMonitor/pdc/blob/master/CSTR_Control.ipynb)     | [Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py)      |               |\r\n|       First Order Sytem       |      N/A  | [Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py)        |               |\r\n| Multistage Extraction Column  |  [Ingham et al, 2007 (pg 471)](https://onlinelibrary.wiley.com/doi/book/10.1002/9783527614219)         | [Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py)        |               |\r\n| Nonsmooth Control|[Lim,1969](https://pubs.acs.org/doi/epdf/10.1021/i260031a007)|[Source](https://github.com/MaximilianB2/pc-gym/blob/main/src/pcgym/model_classes.py) ||\r\n\r\n\r\n \r\n## Citing `pc-gym`\r\nIf you use `pc-gym` in your research, please cite using the following \r\n```\r\n@software{pcgym2024,\r\n  author = {Max Bloor and and Jose Neto and Ilya Sandoval and Max Mowbray and Akhil Ahmed and Mehmet Mercangoz and Calvin Tsay and Antonio Del Rio-Chanona},\r\n  title = {{pc-gym}: Reinforcement Learning Envionments for Process Control},\r\n  url = {https://github.com/MaximilianB2/pc-gym},\r\n  version = {0.0.4},\r\n  year = {2024},\r\n}\r\n```\r\n\r\n## Other Great Gyms \ud83d\udd0d\r\n- \u2728[safe-control-gym](https://github.com/utiasDSL/safe-control-gym) \r\n- \u2728[safety-gymnasium](https://github.com/PKU-Alignment/safety-gymnasium)\r\n- \u2728[gymnax](https://github.com/RobertTLange/gymnax)\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Maximilian Bloor  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Reinforcement learning suite of process control problems.",
    "version": "0.1.6",
    "project_urls": {
        "Documentation": "https://maximilianb2.github.io/pc-gym/",
        "Repository": "https://github.com/MaximilianB2/pc-gym"
    },
    "split_keywords": [
        "reinforcement-learning",
        " process-control",
        " jax",
        " casadi",
        " control"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5325187fe6ca078336b8e561d5365d9bfbd683209c6932cf55979ae9867210e",
                "md5": "541c6c5dc632eb98ca38db5e6a93ab0e",
                "sha256": "10aadb242353102954e6d266af20f5494e2bf56738a476a89f2f62ddcb44b3d4"
            },
            "downloads": -1,
            "filename": "pcgym-0.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "541c6c5dc632eb98ca38db5e6a93ab0e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.10",
            "size": 20763,
            "upload_time": "2024-04-17T11:29:59",
            "upload_time_iso_8601": "2024-04-17T11:29:59.879819Z",
            "url": "https://files.pythonhosted.org/packages/f5/32/5187fe6ca078336b8e561d5365d9bfbd683209c6932cf55979ae9867210e/pcgym-0.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f71519d565742baca2b0383b7e35326991d6326d0cc63042e11cd7bad4dc086a",
                "md5": "67e70a73422034ddf230bf306bb2d4e0",
                "sha256": "4e423598d4d6f012c89b0a53ab3858256296b57fc127200b7800e83185c08da3"
            },
            "downloads": -1,
            "filename": "pcgym-0.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "67e70a73422034ddf230bf306bb2d4e0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.10",
            "size": 20499,
            "upload_time": "2024-04-17T11:30:01",
            "upload_time_iso_8601": "2024-04-17T11:30:01.741664Z",
            "url": "https://files.pythonhosted.org/packages/f7/15/19d565742baca2b0383b7e35326991d6326d0cc63042e11cd7bad4dc086a/pcgym-0.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-17 11:30:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MaximilianB2",
    "github_project": "pc-gym",
    "github_not_found": true,
    "lcname": "pcgym"
}
        
Elapsed time: 0.24486s