initialize config

This commit is contained in:
mhrooz 2024-05-03 12:20:19 +02:00
commit 1902d53a92
3 changed files with 14 additions and 0 deletions

13
config.py Normal file
View File

@ -0,0 +1,13 @@
class pv_config:
def __init__(self, capacity, cost_per_kW, pv_lifetime):
self.capacity = capacity
self.cost_per_kW = cost_per_kW
self.pv_lifetime = pv_lifetime
class ess_config:
def __init__(self, capacity, cost_per_kW, pv_lifetime):
self.capacity = capacity
self.cost_per_kW = cost_per_kW
self.pv_lifetime = pv_lifetime

1
main.py Normal file
View File

@ -0,0 +1 @@
import matplotlib

0
pvprofile.py Normal file
View File