Reinforcement learning suite of process control problems.
Project description
Reinforcement learning environments for process control
Quick start ⚡
Setup a CSTR environment with a setpoint change
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!
Installation ⏳
The latest pc-gym version can be installed from PyPI:
pip install pcgym
Examples
TODO: Link example notebooks here
Implemented Process Control Environments 🎛️
Environment | Reference | Source | Documentation |
---|---|---|---|
CSTR | Hedengren, 2022 | Source | |
First Order Sytem | N/A | Source | |
Multistage Extraction Column | Ingham et al, 2007 (pg 471) | Source | |
Nonsmooth Control | Lim,1969 | Source |
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 🔍
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
pcgym-0.1.3.tar.gz
(20.6 kB
view details)
Built Distribution
pcgym-0.1.3-py3-none-any.whl
(20.8 kB
view details)
File details
Details for the file pcgym-0.1.3.tar.gz
.
File metadata
- Download URL: pcgym-0.1.3.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5c7b1ffddc2dd1698fcbe5ab575e547e19e08c8e38b5cc1a05f1dee84fa38ff |
|
MD5 | 27ee65195ff82812cea75e8679b611a1 |
|
BLAKE2b-256 | 54bdc9c3e7774884828fb25c6d63007447534dfee729be93b7a08d956741f9a8 |
File details
Details for the file pcgym-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: pcgym-0.1.3-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d54aeb0f90f6c4151eddedf20b3bc6cff24e87acd4dc8200f6d31b71c37bb32 |
|
MD5 | ac2c3bf1bf16a9075c38ab5726f6026f |
|
BLAKE2b-256 | f35dffa17737af238cbf42be5891350b251ac43e93eabb9be8947408157b5a91 |