Skip to content

Commit

Permalink
Merge 3a33876 into 7494c75
Browse files Browse the repository at this point in the history
  • Loading branch information
FranziPl committed Mar 25, 2020
2 parents 7494c75 + 3a33876 commit 4bd1be5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,5 @@ target/
# IDE
.idea

# data from Franzi
CSP_data/
CSP_results/

# results
examples/flat_plate_collector/results/
examples/**/results
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
title='Heat of the collector')
ax.grid()
ax.legend()
plt.savefig('compare_precalculations.png')
plt.savefig('results/compare_collector_heat_method1.png')

# plot showing the difference between a constant efficiency and the efficiency
# depending on the ambient temperature for the same irradiance and hour of the
Expand Down Expand Up @@ -83,4 +83,4 @@
ax.grid()
ax.legend()
plt.show()
plt.savefig('compare_temp_dependency.png')
plt.savefig('results/compare_temp_dependency_method1.png')
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
title='Heat of the collector')
ax.grid()
ax.legend()
plt.savefig('compare_precalculations.png')
plt.savefig('results/compare_collector_heat_method2.png')

# plot showing the difference between a constant efficiency and the efficiency
# depending on the ambient temperature for the same irradiance and hour of the
Expand Down Expand Up @@ -90,4 +90,4 @@
ax.grid()
ax.legend()
plt.show()
plt.savefig('compare_temp_dependency.png')
plt.savefig('results/compare_temp_dependency_method2.png')
2 changes: 1 addition & 1 deletion examples/concentrating_solar_power/csp_plant_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@
df = pd.DataFrame()
df = df.append(collector['sequences'])
df = df.join(thermal_bus['sequences'], lsuffix='_1')
df.to_csv('CSP_results.csv')
df.to_csv('results/csp_plant_results.csv')

0 comments on commit 4bd1be5

Please sign in to comment.