simple-pv-simulator/config.json

53 lines
1.2 KiB
JSON
Raw Normal View History

2024-05-06 21:24:12 +02:00
{
2024-05-07 20:20:09 +02:00
"pv":{
"loss": 0.98,
2024-05-06 21:24:12 +02:00
"cost_per_kW": 200,
"lifetime": 15
},
"ess":{
"loss": 0.98,
"cost_per_kW": 300,
"lifetime": 8
},
"grid":{
"loss": 0.98,
"sell_price": 0.2 ,
"capacity": 5000
},
"pv_capacities":{
"begin": 0,
2024-05-06 21:24:12 +02:00
"end": 50000,
2024-05-10 23:57:58 +02:00
"groups": 11
2024-05-06 21:24:12 +02:00
},
"ess_capacities":{
"begin": 0,
"end": 100000,
2024-05-10 23:57:58 +02:00
"groups": 11
2024-05-06 21:24:12 +02:00
},
"time_interval":{
"numerator": 15,
"denominator": 60
2024-05-07 20:20:09 +02:00
},
"annotated": {
"unmet_prob": false,
2024-05-07 20:20:09 +02:00
"benefit": false,
2024-05-10 23:57:58 +02:00
"cost": false,
"roi": false
2024-05-07 20:20:09 +02:00
},
"figure_size":{
"height": 9,
"length": 10
2024-05-07 20:20:09 +02:00
},
"plot_title":{
"unmet_prob": "Coverage Rate of Factory Electrical Demands",
"cost": "Costs of Microgrid system [m-EUR]",
2024-05-10 23:57:58 +02:00
"benefit": "Financial Profit Based on Py & Ess Configuration (k-EUR / year)",
"roi": "ROI"
},
"data_path": {
"pv_yield": "read_data/Serbia.csv",
"demand": "read_data/factory_power1.csv",
"sell": "read_data/electricity_price_data_sell.csv",
"buy": "read_data/electricity_price_data.csv"
2024-05-06 21:24:12 +02:00
}
}