uvrct
is a python package for UV photochemical CSTR reactor modelling.
Files included in this repository are made to a scientific computing standard. That is, not in line with software devlopment best practices. Hence, inter- and intra- file structure is a work in progress.
The main file for is uvrct.py
.
These instructions will get you a copy of the project up and running on your local machine for usage, development and testing purposes. Please note that only Linux environments have been tested in the current implementation but the code should work independently of the OS.
Open a terminal window and clone this repository by writing:
git clone https://github.com/marrov/uvrct
In order to use uvrct
several Python 3 packages are required. Creating a brand new Conda environment for this is recommended. This can be done easily with the provided environment.yml
file as follows:
conda env create -f environment.yml
conda activate uvrct
After executing these commands a new Conda environment named uvrct
will be created with all necessary packages. The environment is self-contained so as to not influence other local python installations and avoid conflicts with previously installed packages.
To deactivate this environment simply type:
conda deactivate