This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Battery Storage Economic Analysis - 10kWh System, SEK Currency | |
This script analyzes the economic feasibility of installing a 10kWh battery storage system | |
costing 50,000 SEK for a residential house, with all costs converted to Swedish Kronor. | |
""" | |
import pandas as pd | |
import numpy as np |
OlderNewer