final_energy_system_model #60

Merged
g_gutierrez merged 113 commits from final_energy_system_model into main 2024-03-14 09:13:21 -04:00
Showing only changes of commit d4b424357d - Show all commits

View File

@ -11,7 +11,7 @@ from abc import ABC
class EnergyStorageSystem(ABC):
""""
Energy Storage System Class
Energy Storage System Abstract Class
"""
def __init__(self, storage_id, name, model_name, manufacturer, storage_type, nominal_capacity, losses_ratio):
@ -79,3 +79,7 @@ class EnergyStorageSystem(ABC):
:return: float
"""
return self._losses_ratio
def to_dictionary(self):
"""Class content to dictionary"""
raise NotImplementedError