Open rbolgaryn opened 4 months ago
[X] Searched the issues page for similar reports
[X] Read the relevant sections of the documentation
[X] Browse the tutorials and tests for usefull code snippets and examples of use
In build_branch.py line 1061:
delta_t_degree_celsius = net[element].temperature_degree_celsius.values.astype(np.float64) - 20
should be:
if "reference_temperature_degree_celsius" in net[element].columns: ref_t = net[element].reference_temperature_degree_celsius.astype(np.float64) else: ref_t = 20. delta_t_degree_celsius = net[element].temperature_degree_celsius.values.astype(np.float64) - ref_t
@jwiemer112 ?
Feature Checklist
[X] Searched the issues page for similar reports
[X] Read the relevant sections of the documentation
[X] Browse the tutorials and tests for usefull code snippets and examples of use
Issue
In build_branch.py line 1061:
should be:
Label