Skip to content

Commit 04512e8

Browse files
author
kanderso-nrel
committed
deploy: 29d03fc
0 parents  commit 04512e8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+25359
-0
lines changed

.buildinfo

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 6dfb04f87dbf162450b9b06227df8783
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

.nojekyll

Whitespace-only changes.

_sources/index.rst.txt

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
2+
This page links to tutorial material for `pvlib-python <pvlib-python.readthedocs.io>`_,
3+
a free and open-source python package for simulating photovoltaic power systems.
4+
These tutorials were created by pvlib contributors and community members as
5+
introductory material for newcomers to pvlib. They were originally developed
6+
to be presented in workshop-style interactive tutorials at conferences, but
7+
the material itself is still useful on its own.
8+
9+
If you have created a tutorial and want to have it listed on this page,
10+
feel free to submit it to this website's `git repository <https://github.com/PVSC-Python-Tutorials/pvsc-python-tutorials.github.io>`_.
11+
12+
13+
.. grid:: 1 2 3 3
14+
15+
.. grid-item-card:: PVPMC_2022
16+
17+
.. raw:: html
18+
19+
<img src="https://raw.githubusercontent.com/PVSC-Python-Tutorials/PVPMC_2022/main/images/PVLib_PVPMCLogo.PNG" alt="logo" loading="lazy" style="max-width: 100%; max-height: 200px; margin-top: 1rem;"/>
20+
21+
^^^
22+
23+
A pvlib tutorial given at the 2022 PVPMC workshop in Salt Lake City.
24+
25+
+++
26+
27+
:bdg-link-primary:`Repository <https://github.com/PVSC-Python-Tutorials/PVPMC_2022>`
28+
:bdg-link-primary:`Website <https://pvsc-python-tutorials.github.io/PVPMC_2022/index.html>`
29+
30+
.. raw:: html
31+
32+
<a href="https://github.com/PVSC-Python-Tutorials/PVPMC_2022">
33+
<img src="https://img.shields.io/github/stars/PVSC-Python-Tutorials/PVPMC_2022?style=social"/>
34+
</a>
35+
36+
37+
.. grid-item-card:: pyData-2021-Solar-PV-Modeling
38+
39+
.. raw:: html
40+
41+
<img src="_static/pydata-2021-logo-cropped.png" alt="logo" loading="lazy" style="max-width: 100%; max-height: 200px; margin-top: 1rem;"/>
42+
43+
^^^
44+
45+
A tutorial given at the 2021 PyData Global conference: *Data & Tools to Model PV Systems*
46+
47+
+++
48+
49+
:bdg-link-primary:`Repository <https://github.com/PVSC-Python-Tutorials/pyData-2021-Solar-PV-Modeling>`
50+
:bdg-link-primary:`Website <https://pvsc-python-tutorials.github.io/pyData-2021-Solar-PV-Modeling/index.html>`
51+
:bdg-link-primary:`Recording <https://www.youtube.com/watch?v=sweUakFg3I8>`
52+
53+
.. raw:: html
54+
55+
<a href="https://github.com/PVSC-Python-Tutorials/pyData-2021-Solar-PV-Modeling">
56+
<img src="https://img.shields.io/github/stars/PVSC-Python-Tutorials/pyData-2021-Solar-PV-Modeling?style=social"/>
57+
</a>
58+
59+
60+
.. grid-item-card:: PVSC48-Python-Tutorial
61+
62+
.. raw:: html
63+
64+
<img src="_static/pvsc-48-logo-cropped.png" alt="logo" loading="lazy" style="max-width: 100%; max-height: 200px; margin-top: 1rem;"/>
65+
66+
^^^
67+
68+
A tutorial given at PVSC48 in 2021: *Solar PV Resource Modeling 101: From Sun Position to AC Output*
69+
70+
+++
71+
72+
:bdg-link-primary:`Repository <https://github.com/PVSC-Python-Tutorials/PVSC48-Python-Tutorial>`
73+
:bdg-link-primary:`Website <https://pvsc-python-tutorials.github.io/PVSC48-Python-Tutorial/index.html>`
74+
75+
.. raw:: html
76+
77+
<a href="https://github.com/PVSC-Python-Tutorials/PVSC48-Python-Tutorial">
78+
<img src="https://img.shields.io/github/stars/PVSC-Python-Tutorials/PVSC48-Python-Tutorial?style=social"/>
79+
</a>

_sphinx_design_static/design-style.4045f2051d55cab465a707391d5b2007.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
var sd_labels_by_text = {};
2+
3+
function ready() {
4+
const li = document.getElementsByClassName("sd-tab-label");
5+
for (const label of li) {
6+
syncId = label.getAttribute("data-sync-id");
7+
if (syncId) {
8+
label.onclick = onLabelClick;
9+
if (!sd_labels_by_text[syncId]) {
10+
sd_labels_by_text[syncId] = [];
11+
}
12+
sd_labels_by_text[syncId].push(label);
13+
}
14+
}
15+
}
16+
17+
function onLabelClick() {
18+
// Activate other inputs with the same sync id.
19+
syncId = this.getAttribute("data-sync-id");
20+
for (label of sd_labels_by_text[syncId]) {
21+
if (label === this) continue;
22+
label.previousElementSibling.checked = true;
23+
}
24+
window.localStorage.setItem("sphinx-design-last-tab", syncId);
25+
}
26+
27+
document.addEventListener("DOMContentLoaded", ready, false);

0 commit comments

Comments
 (0)