8000 Updated plot_ghi_transposition.py by RoyCoding8 · Pull Request #1450 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Updated plot_ghi_transposition.py #1450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update plot_singlediode.py
Changed to LaTeX \degree symbol in matplotlib which avoids any encoding issues with using Unicode characters.
  • Loading branch information
RoyCoding8 committed Mar 25, 2022
commit 94bbb6efe556276e704b5ddb155bd6b9e0ced724
2 changes: 1 addition & 1 deletion docs/examples/iv-modeling/plot_singlediode.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
for i, case in conditions.iterrows():
label = (
"$G_{eff}$ " + f"{case['Geff']} $W/m^2$\n"
"$T_{cell}$ " + f"{case['Tcell']} $°C$"
"$T_{cell}$ " + f"{case['Tcell']} $\\degree C$"
)
plt.plot(curve_info['v'][i], curve_info['i'][i], label=label)
v_mp = curve_info['v_mp'][i]
Expand Down
0