Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slacgismo/StatisticalClearSky
Statistical estimation of a clear sky signal from PV system power data
https://github.com/slacgismo/StatisticalClearSky
Last synced: 3 months ago
JSON representation
Statistical estimation of a clear sky signal from PV system power data
- Host: GitHub
- URL: https://github.com/slacgismo/StatisticalClearSky
- Owner: slacgismo
- License: bsd-2-clause
- Created: 2018-01-15T01:38:46.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-11T23:56:16.000Z (over 2 years ago)
- Last Synced: 2024-06-11T19:21:41.092Z (5 months ago)
- Language: Jupyter Notebook
- Size: 80.8 MB
- Stars: 29
- Watchers: 8
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - StatisticalClearSky - Statistical estimation of a clear sky signal from PV system power data. (Renewable Energy / Photovoltaics and Solar Energy)
README
# StatisticalClearSky
Test-Coverage
_Statistical estimation of a clear sky signal from PV system power data_
This project implements an algorithm based on [Generalized Low Rank Models](https://stanford.edu/~boyd/papers/glrm.html) for estimating the output of a solar PV system under clear sky or "cloudless" conditions, given only measured power as an input. Noteably, no system configuration information, modeling parameters, or correlated environmental data are required. You can read more about this work in these two papers [[1](https://arxiv.org/abs/1907.08279), [2](https://ieeexplore.ieee.org/abstract/document/8939335)].
We actually recommend that users generally not invoke this software directly. Instead, we recommend using the API provided by [Solar Data Tools](https://github.com/slacgismo/solar-data-tools).
## Getting Started
You can install pip package or Anaconda package for this project.
### Recommended: Set up `conda` environment with provided `.yml` file
_Updated September 2020_
We recommend seting up a fresh Python virutal environment in which to use `solar-data-tools`. We recommend using the [Conda](https://docs.conda.io/projects/conda/en/latest/index.html) package management system, and creating an environment with the environment configuration file named `pvi-user.yml`, provided in the top level of this repository. This will install the `solar-data-tools` package as well.
Please see the Conda documentation page, "[Creating an environment from an environment.yml file](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file)" for more information.
### Installation
If you are using pip:
```sh
$ pip install statistical-clear-sky
```As of February 11, 2019, it fails because scs package installed as a dependency of cxvpy expects numpy to be already installed.
[scs issue 85](https://github.com/cvxgrp/scs/issues/85) says, it is fixed.
However, it doesn't seem to be reflected in its pip package.
Also, cvxpy doesn't work with numpy version less than 1.16.
As a work around, install numpy separatly first and then install this package.
i.e.
```sh
$ pip install 'numpy>=1.16'
$ pip install statistical-clear-sky
```If you are using Anaconda, the problem described above doesn't occur since numpy is already installed. And during statistical-clear-sky installation, numpy is upgraded above 1.16:
```sh
$ conda install -c slacgismo statistical-clear-sky
```#### Solvers
The default convex solver included with cvxpy is ECOS, which is open source. However this solver tends to fail on problems with >1000 variables, as it does not work for this algorithm.
So, the default behavior of the code is to use the commercial Mosek solver. Thus, we encourage you to install it separately as below and obtain the license on your own.
* [mosek](https://www.mosek.com/resources/getting-started/) - For using MOSEK solver.
If you are using pip:
```sh
$ pip install -f https://download.mosek.com/stable/wheel/index.html Mosek
```If you are using Anaconda:
```sh
$ conda install -c mosek mosek==8.1.43
```Academic licenses are available for free here: [https://www.mosek.com/products/academic-licenses/](https://www.mosek.com/products/academic-licenses/)
## Usage
### As a part of Python code or inside Jupyter notebook
#### Example 1: Simplest example with the fewest number of input parameters.
Using default solver (Open Source solver: ECOS)
```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d)
iterative_fitting.execute()
clear_sky_signals = iterative_fitting.clear_sky_signals()
degradation_rate = iterative_fitting.degradation_rate()
```#### Example 2: Estimating clear sky signals without degradation.
You can estimate clear sky signals based on the assumption that there is no year-to-year degradation.
In this case, you can set is_degradation_calculated keyword argument to False in execute method.
By default, it's set to True.```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d)
iterative_fitting.execute(is_degradation_calculated=False)
clear_sky_signals = iterative_fitting.clear_sky_signals()
```#### Example 3: Using a different solver.
The default solver ECOS is not stable with large set of input data.
The following example shows how to specify to use Mosek solver by passing solver_type keyword argument (to the constructor).```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d,
solver_type='MOSEK')iterative_fitting.execute()
clear_sky_signals = iterative_fitting.clear_sky_signals()
degradation_rate = iterative_fitting.degradation_rate()
```#### Example 4: Setting rank for Generalized Low Rank Modeling.
By default, rank of low rank matrices is specified to be 6.
You can change it by specifying rank_k keyword argument (in the constructor).```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d, rank_k=6)
iterative_fitting.execute()
# Get the resulting left low rank matrix and right low rank matrix for evaluation.
left_low_rank_matrix = iterative_fitting.left_low_rank_matrix()
# The above can be also obtained as l_cs_value:
l_cs_value = iterative_fitting.l_cs_value# Get the resulting right low rank matrix for evaluation.
right_low_rank_matrix = iterative_fitting.right_low_rank_matrix()
# The above can be also obtained as r_cs_value:
r_cs_value = iterative_fitting.r_cs_valueclear_sky_signals = iterative_fitting.clear_sky_signals()
degradation_rate = iterative_fitting.degradation_rate()
# The above can be also obtained as beta_value:
beta_value = iterative_fitting.beta_value
```#### Example 5: Setting different hyper-parameters for minimization of objective function of Generalized Low Rank Modeling.
There are three hyper-parameters in the objective function of Generalized Low Rank Modeling, i.e. mu_l, mu_r, and tau.
By default, mu_l is set to 1.0, mu_r is set to 20.0, and tau is set to 0.8.
You can change it by specifying mu_l, mu_r, and tau keyword arguments in execute method.```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d)
iterative_fitting.execute(mu_l=5e2, mu_r=1e3, tau=0.9)
clear_sky_signals = iterative_fitting.clear_sky_signals()
degradation_rate = iterative_fitting.degradation_rate()
```#### Example 6: Setting different control parameters for minimization of objective function of Generalized Low Rank Modeling.
There are three control parameters in the objective function of Generalized Low Rank Modeling, i.e. exit criteria - exit_criterion_epsilon, and maximum number of iteration - max_iteration.
By default, exit_criterion_epsilon is set to 1e-3, max_iteration is set to 100.
You can change it by specifying eps and max_iteration keyword arguments in execute method.```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d)
iterative_fitting.execute(exit_criterion_epsilon=1e-6, max_iteration=10)
clear_sky_signals = iterative_fitting.clear_sky_signals()
degradation_rate = iterative_fitting.degradation_rate()
```#### Example 7: Setting limit on degradation rate.
You can specify the maximum degradation and minimum degradation by setting max_degradation and min_degradation keyword arguments in execute method.
By default, they are set not to be used.```python
import numpy as np
from statistical_clear_sky.algorithm.iterative_fitting import IterativeFitting# Usually read from a CSV file or a database with more data,
# covering 1 day (column) and a few years (row):
power_signals_d = np.array([[0.0, 0.0, 0.0, 0.0],
[1.33389997, 1.40310001, 0.67150003, 0.77249998],
[1.42349994, 1.51800001, 1.43809998, 1.20449996],
[1.52020001, 1.45150006, 1.84809995, 0.99949998]])iterative_fitting = IterativeFitting(power_signals_d)
iterative_fitting.execute(max_degradation=0.0, min_degradation=-0.5)
clear_sky_signals = iterative_fitting.clear_sky_signals()
degradation_rate = iterative_fitting.degradation_rate()
```## Jupyter notebook examples
Alternatively, you can clone this repository (GIT) and execute the example codes under notebooks folder.
Simplest way to install dependencies if you are using pip is by
```sh
$ pip install -r requirements.txt
```As mentioned in the section, "Getting Started" above,
as of February 11, 2019, it fails because scs package installed as a dependency of cxvpy expects numpy to be already installed.
[scs issue 85](https://github.com/cvxgrp/scs/issues/85) says, it is fixed.
However, it doesn't seem to be reflected in its pip package.
Also, cvxpy doesn't work with numpy version less than 1.16.
As a work around, install numpy separatly first and install the other packages using requirements.txt. i.e.
```sh
$ pip install 'numpy>=1.16'
$ pip install -r requirements.txt
```## Running the tests
### Unit tests (developer tests)
1. GIT clone this project.
2. In the project directory in terminal,
```
$ python -m unittest
```This runs all the tests under tests folder.
All the tests are placed under "tests" directory directly under the project directory.
It is using "unittest" that is a part of Python Standard Library by default.
There may be a better unit testing framework.
But the reason is to invite as many contributors as possible with variety of background.### Coding style tests
[pylint](https://www.pylint.org/) is used to check if coding style is conforming to "PEP 8 -- Style Guide for Python Code"
Note: We are open to use [LGTM](https://lgtm.com/).
However, since we decided to use another code coverage tool [codecov](https://codecov.io/) based on a comment by project's Technical Advisory Council, we decided not to use another tool that does code coverage.
We are also open to use other coding style tools.Example of using pylint:
In the project directory in terminal,
```
$ pylint statistical_clear_sky
```## Contributing
Please read [CONTRIBUTING.md](https://github.com/bmeyers/StatisticalClearSky/contributing) for details on our code of conduct, and the process for submitting pull requests to us.
## Versioning
We use [Semantic Versioning](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/bmeyers/StatisticalClearSky/tags).
## Authors
* **Bennet Meyers** - *Initial work and Main research work* - [Bennet Meyers GitHub](https://github.com/bmeyers)
* **Tadatoshi Takahashi** - *Refactoring and Packaging work and Research support work* - [Tadatoshi Takahashi GitHub](https://github.com/tadatoshi)
See also the list of [contributors](https://github.com/bmeyers/StatisticalClearSky/contributors) who participated in this project.
## License
This project is licensed under the BSD 2-Clause License - see the [LICENSE](LICENSE) file for details
## References
[1] B. Meyers, M. Tabone, and E. C. Kara, "Statistical Clear Sky Fitting Algorithm," IEEE Photovoltaic Specialists Conference, 2018.
## Acknowledgments
* The authors would like to thank Professor Stephen Boyd from Stanford University for his input and guidance and Chris Deline, Mike Deceglie, and Dirk Jordan from NREL for collaboration.