Skip to content

Commit

Permalink
updated code style & deleted unnecessary variables/function
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHiDLR committed Oct 12, 2023
1 parent 1321e4e commit b5b0803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/thermal_building_model/calculate_gain_by_Sun.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
def sunPositionReader(SunPosition_path):
sun_labels = ["altitude", "azimuth"] # 'HOY',
result = pd.read_csv(SunPosition_path, skiprows=1, names=sun_labels)
return
return result


class Location(
Expand Down
2 changes: 1 addition & 1 deletion examples/thermal_building_model/thermal_building_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main():
solver_verbose = False # show/hide solver output
number_of_time_steps = 8760
mainPath = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))

building_example = None
# Generates 5RC Building-Model
building_status = "no_refurbishment"
if building_status == "no_refurbishment":
Expand Down

0 comments on commit b5b0803

Please sign in to comment.