"description":"This project provides a comprehensive solution for simulating and optimizing an energy system based on renewable energy sources. With a focus on photovoltaic (PV) systems, battery storage (batteries), load management (consumer requirements), heat pumps, electric vehicles, and consideration of electricity price data, this system enables forecasting and optimization of energy flow and costs over a specified period.",
"description":"**Note**: The first value of \"Last_Wh_pro_Stunde\", \"Netzeinspeisung_Wh_pro_Stunde\" and \"Netzbezug_Wh_pro_Stunde\", will be set to null in the JSON output and represented as NaN or None in the corresponding classes' data returns. This approach is adopted to ensure that the current hour's processing remains unchanged."
},
"PVAkkuParameters":{
"properties":{
"kapazitaet_wh":{
"type":"integer",
"exclusiveMinimum":0.0,
"title":"Kapazitaet Wh",
"description":"An integer representing the capacity of the battery in watt-hours."
},
"lade_effizienz":{
"type":"number",
"maximum":1.0,
"exclusiveMinimum":0.0,
"title":"Lade Effizienz",
"description":"A float representing the charging efficiency of the battery.",
"default":0.88
},
"entlade_effizienz":{
"type":"number",
"maximum":1.0,
"exclusiveMinimum":0.0,
"title":"Entlade Effizienz",
"default":0.88
},
"max_ladeleistung_w":{
"anyOf":[
{
"type":"number",
"exclusiveMinimum":0.0
},
{
"type":"null"
}
],
"title":"Max Ladeleistung W",
"description":"An integer representing the charging power of the battery in watts.",
"default":5000
},
"start_soc_prozent":{
"type":"integer",
"maximum":100.0,
"minimum":0.0,
"title":"Start Soc Prozent",
"description":"An integer representing the state of charge of the battery at the **start** of the current hour (not the current state).",
"default":0
},
"min_soc_prozent":{
"type":"integer",
"maximum":100.0,
"minimum":0.0,
"title":"Min Soc Prozent",
"description":"An integer representing the minimum state of charge (SOC) of the battery in percentage.",
"default":0
},
"max_soc_prozent":{
"type":"integer",
"maximum":100.0,
"minimum":0.0,
"title":"Max Soc Prozent",
"default":100
}
},
"type":"object",
"required":[
"kapazitaet_wh"
],
"title":"PVAkkuParameters"
},
"SimulationResult":{
"properties":{
"Last_Wh_pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Last Wh Pro Stunde",
"description":"TBD"
},
"EAuto_SoC_pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Eauto Soc Pro Stunde",
"description":"The state of charge of the EV for each hour."
},
"Einnahmen_Euro_pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Einnahmen Euro Pro Stunde",
"description":"The revenue from grid feed-in or other sources in euros per hour."
},
"Gesamt_Verluste":{
"type":"number",
"title":"Gesamt Verluste",
"description":"The total losses in watt-hours over the entire period."
},
"Gesamtbilanz_Euro":{
"type":"number",
"title":"Gesamtbilanz Euro",
"description":"The total balance of revenues minus costs in euros."
},
"Gesamteinnahmen_Euro":{
"type":"number",
"title":"Gesamteinnahmen Euro",
"description":"The total revenues in euros."
},
"Gesamtkosten_Euro":{
"type":"number",
"title":"Gesamtkosten Euro",
"description":"The total costs in euros."
},
"Haushaltsgeraet_wh_pro_stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Haushaltsgeraet Wh Pro Stunde",
"description":"The energy consumption of a household appliance in watt-hours per hour."
},
"Kosten_Euro_pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Kosten Euro Pro Stunde",
"description":"The costs in euros per hour."
},
"Netzbezug_Wh_pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Netzbezug Wh Pro Stunde",
"description":"The grid energy drawn in watt-hours per hour."
},
"Netzeinspeisung_Wh_pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Netzeinspeisung Wh Pro Stunde",
"description":"The energy fed into the grid in watt-hours per hour."
},
"Verluste_Pro_Stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Verluste Pro Stunde",
"description":"The losses in watt-hours per hour."
},
"akku_soc_pro_stunde":{
"items":{
"anyOf":[
{
"type":"number"
},
{
"type":"null"
}
]
},
"type":"array",
"title":"Akku Soc Pro Stunde",
"description":"The state of charge of the battery (not the EV) in percentage per hour."