Vincent M. Le Corre
Larry Lüer
CAPE - Centre for Advanced Photovoltaics and Thin-film Energy Devices, University of Southern Denmark, Denmark
This repository contains the code to run optimPV. optimPV combines sevral optimization procedures and modeling utilities that can be used for two objectives:
- to optimize the parameters of a simulation to fit experimental data.
- to optimize the processing conditions in a self-driving experimental set-up.
.
├── Main # Main directory
├── optimPV # Main directory for the optimPV codes
├── axBOtorch # Directory with the Bayesian optimization (BO) codes using BoTorch and Ax
├── BayesInfEmcee # Directory with the Bayesian inference codes using emcee
├── DDfits # Directory with the different agents to run the drift-diffusion simulator [SIMsalabim](https://github.com/kostergroup/SIMsalabim) for JV, Hysteresis, Impedance, CV and IMPS simulations and fitting
├── Diodefits # Directory with the agent to simulate and fit the non-ideal diode equation model
├── general # Directory with general utility functions used by the different agents
├── posterior # Directory with some utility functions to plot the posterior distributions using the BO surrogate model
├── RateEqfits # Directory with the agent to simulate and fit the rate equations for different experiment types (trPL, TRMC, TAS, etc.)
├── scipyOpti # Directory with the optimization codes using scipy.optimize
├── TransferMatrix # Directory with the agent to run the transfer matrix simulations
├── Notebooks # Contains clean versions of the Notebooks
├── Data # Contains some example data for the notebooks
├── docs # Contains the documentation
├── test # Contains the codes for testing optimPV
└── README.md
To install optimPV with pip you have two options:
-
Install optimPV using the PyPI repository
pip install optimpv
-
Install optimPV using the GitHub repository https://github.com/openPV-lab/optimPV
pip install git+https://github.com/openPV-lab/optimPV
To install optimPV with conda:
conda create -n optimpv
conda activate optimpv
pip install optimpvYou can also clone your base environment:
conda create -n optimpv --clone baseThe drift-diffusion agent uses SIMsalabim to run drift-diffusion simulations.
- SIMsalabim is included as a submodule.
- Install it following the instructions on the SIMsalabim GitHub repository.
- Only works for parallel simulations on Linux. All other optimPV agents work on Windows.
To run parallel simulations on Linux you can also install GNU Parallel:
sudo apt update
sudo apt install parallelThis repository is still under development. If you find any bugs or have any questions, please contact us.
