Skip to content

Commit c6ba394

Browse files
Merge pull request #33 from sandialabs/add-references
add references and minor changes to linear model
2 parents 7770bb2 + 7645d11 commit c6ba394

File tree

8 files changed

+583
-303
lines changed

8 files changed

+583
-303
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,31 @@ The package is delineated into the following directories. Refer to the `examples
3232

3333
More information about these modules is available at [readthedocs](https://pvops.readthedocs.io/en/latest/).
3434

35+
Citing
36+
======
37+
38+
If using this package, please cite [our paper](https://ieeexplore.ieee.org/document/9518439) using the following:
39+
40+
**Citation:**
41+
42+
```
43+
H. Mendoza, M. Hopwood and T. Gunda, "pvOps: Improving Operational Assessments through Data Fusion," 2021 IEEE 48th Photovoltaic Specialists Conference (PVSC), 2021, pp. 0112-0119, doi: 10.1109/PVSC43889.2021.9518439.
44+
```
45+
46+
**BibTex:**
47+
48+
```
49+
@INPROCEEDINGS{9518439,
50+
author={Mendoza, Hector and Hopwood, Michael and Gunda, Thushara},
51+
booktitle={2021 IEEE 48th Photovoltaic Specialists Conference (PVSC)},
52+
title={pvOps: Improving Operational Assessments through Data Fusion},
53+
year={2021},
54+
volume={},
55+
number={},
56+
pages={0112-0119},
57+
doi={10.1109/PVSC43889.2021.9518439}}
58+
```
59+
3560
Contributing
3661
============
3762

CITATION.cff renamed to citation.CIF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ keywords:
2020
- data fusion
2121
- machine learning
2222
- natural language processing
23-
license: "BSD-3C"
23+
license: "BSD-3C"

docs/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@
5555
# Add any Sphinx extension module names here, as strings. They can be
5656
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
5757
# ones.
58-
extensions = ["sphinx.ext.autodoc", "nbsphinx", "nbsphinx_link"]
58+
extensions = ["sphinx.ext.autodoc",
59+
"nbsphinx",
60+
"nbsphinx_link",
61+
"sphinx_copybutton"]
5962

6063
# Add any paths that contain templates here, relative to this directory.
6164
templates_path = ["_templates"]

docs/references.rst

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,45 @@
11
References
22
==========
33

4-
This package has a DOI (soon)! If you publish using this package, please cite us:
4+
If using this package, please cite us using the following
5+
6+
.. code-block:: text
7+
8+
H. Mendoza, M. Hopwood and T. Gunda, "pvOps: Improving Operational
9+
Assessments through Data Fusion," 2021 IEEE 48th Photovoltaic Specialists
10+
Conference (PVSC), 2021, pp. 0112-0119, doi: 10.1109/PVSC43889.2021.9518439.
11+
12+
In BibTex format:
13+
14+
.. code-block:: text
15+
16+
@INPROCEEDINGS{9518439,
17+
author={Mendoza, Hector and Hopwood, Michael and Gunda, Thushara},
18+
booktitle={2021 IEEE 48th Photovoltaic Specialists Conference (PVSC)},
19+
title={pvOps: Improving Operational Assessments through Data Fusion},
20+
year={2021},
21+
volume={},
22+
number={},
23+
pages={0112-0119},
24+
doi={10.1109/PVSC43889.2021.9518439}}
525
6-
[Placeholder for DOI]
726
827
We also utilize content from other packages. See the NOTICE/ directory on our GitHub!
928

1029
Additionally, some of our own content comes from published papers. See the following external references.
1130

1231
External references
13-
===================
32+
-------------------
1433

1534
iv/
16-
---
35+
^^^
1736

37+
.. code-block:: text
1838
19-
JW Bishop. "Computer simulation of the effects of electrical mismatches in photovoltaic cell
20-
interconnection circuits", Solar Cell (1988) DOI: 10.1016/0379-6787(88)90059-2
39+
JW Bishop. "Computer simulation of the effects of electrical mismatches in photovoltaic cell
40+
interconnection circuits", Solar Cell (1988) DOI: 10.1016/0379-6787(88)90059-2
2141
42+
.. code-block:: text
2243
23-
Hopwood, M. W., Gunda, T., Seigneur, H., & Walters, J. "Neural network-based classification
24-
of string-level IV curves from physically-induced failures of photovoltaic modules", IEEE Access (2020), 8, 161480-161487.
44+
Hopwood, M. W., Gunda, T., Seigneur, H., & Walters, J. "Neural network-based classification
45+
of string-level IV curves from physically-induced failures of photovoltaic modules", IEEE Access (2020), 8, 161480-161487.

docs/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
ipykernel
22
nbsphinx
3-
nbsphinx-link
3+
nbsphinx-link
4+
sphinx-copybutton

docs/whatsnew/beta.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,8 @@ Bug fixes
2222
* Basic package fixes to README (PR #27) and documentation configuration (PR #24)
2323
* Fix IV simulator bug for edge case where two IV curves added have equal I_{sc} (PR #30)
2424
* Neural network configuration referencing in 1D CNN (PR #32)
25+
26+
Docs
27+
~~~~
28+
29+
* Update how to reference pvOps (PR #33)

0 commit comments

Comments
 (0)