From b075ea09a808ba87959865da97dded64c927c313 Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Sat, 20 Jul 2024 13:41:46 +0700 Subject: [PATCH] Create config.json --- data/config.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 data/config.json diff --git a/data/config.json b/data/config.json new file mode 100644 index 0000000..34663bf --- /dev/null +++ b/data/config.json @@ -0,0 +1,25 @@ +{ + "energy_production": { + "solar_panel_efficiency": 0.2, + "wind_turbine_efficiency": 0.5, + "hydroelectric_power_plant_efficiency": 0.9 + }, + "energy_consumption": { + "household_appliances_power_consumption": 1000, + "electric_vehicle_charging_power_consumption": 3000, + "industrial_machinery_power_consumption": 5000 + }, + "energy_storage": { + "battery_capacity": 10000, + "battery_efficiency": 0.8 + }, + "visualization": { + "matplotlib_backend": "TkAgg", + "matplotlib_style": "seaborn-whitegrid" + }, + "blockchain": { + "block_size": 10, + "block_time": 10, + "difficulty_target": 100 + } +}