8000 Implement dynamic faiman model and function to fit this to measurements by adriesse · Pull Request #1878 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Implement dynamic faiman model and function to fit this to measurements #1878

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 25 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
Remove errant line.
  • Loading branch information
adriesse committed Oct 9, 2023
commit 75a95197c3a5904a438aa53f26feddcc170a1a4f
5 changes: 2 additions & 3 deletions docs/examples/operating-temperature/plot_dynamic_faiman.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,11 @@
plt.legend(['measured', 'faiman', 'faiman_dyn'])
plt.grid(alpha=0.5)
plt.xlabel('2020-03-20')
plt.ylabel('PV temperature [C]')
plt.ylabel('PV temperature [°C]')
plt.show()

# %%

dfs = df.sort_values('wind_speed')
plt.figure()
l1 = plt.plot(dfs['temp_pv'], dfs['temp_pv_faiman'], '.', color='C1')
l2 = plt.plot(dfs['temp_pv'], dfs['temp_pv_faiman_dyn'], '.', color='C2')
Expand All @@ -128,7 +127,7 @@

# %%
#
# Both of the above graphs demonstrate that substantial improvement in modeled
# Both graphs above demonstrate that substantial improvement in modeled
# operating temperature is obtained by this simple technique. Perhaps more
# important than this, however, is the fact that parameter values can be
# extracted from field data with minimal or no filtering.
Expand Down
0