24 lines
521 B
Python
24 lines
521 B
Python
|
"""
|
||
|
Fast charging infrastructure module
|
||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||
|
Copyright © 2021 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
||
|
"""
|
||
|
|
||
|
|
||
|
class FastChargingInfrastructure:
|
||
|
"""
|
||
|
FastChargingInfrastructure class
|
||
|
"""
|
||
|
|
||
|
def __init__(self):
|
||
|
self._electrical_demand = None
|
||
|
self._losses_in_grid = None
|
||
|
|
||
|
@property
|
||
|
def electrical_demand(self):
|
||
|
return self._electrical_demand
|
||
|
|
||
|
@property
|
||
|
def losses_in_grid(self):
|
||
|
return self._losses_in_grid
|