File size: 5,481 Bytes
201a226
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from fpdf import FPDF

# --- Appliance power ratings (in watts) ---
appliance_power = {
    "Fan": 75,
    "LED Light": 15,
    "Refrigerator": 150,
    "TV": 100,
    "Air Conditioner": 1000,
    "Washing Machine": 500,
    "Computer": 200
}

st.set_page_config(page_title="Solar Energy Planner", layout="wide")

st.title("โ˜€๏ธ Solar Energy Consumption & Planning App")

# --- Sidebar: User Inputs ---
st.sidebar.header("๐Ÿ”Œ Appliance Load Input")

appliance_data = []
for appliance, watt in appliance_power.items():
    qty = st.sidebar.number_input(f"{appliance} Quantity", 0, 20, 0, key=f"{appliance}_qty")
    hours = st.sidebar.number_input(f"{appliance} Daily Hours", 0, 24, 0, key=f"{appliance}_hours")
    if qty > 0 and hours > 0:
        appliance_data.append({
            "Appliance": appliance,
            "Qty": qty,
            "Hours": hours,
            "Watt": watt,
            "Daily kWh": round(qty * hours * watt / 1000, 2)
        })

# Default values
total_daily_kwh = 0
total_monthly_kwh = 0
num_panels = 0

# --- Show appliance usage table ---
if appliance_data:
    st.subheader("๐Ÿงฎ Appliance-wise Energy Consumption")
    df = pd.DataFrame(appliance_data)
    df["Monthly kWh"] = df["Daily kWh"] * 30
    st.dataframe(df, use_container_width=True)

    total_daily_kwh = df["Daily kWh"].sum()
    total_monthly_kwh = df["Monthly kWh"].sum()

    st.metric("๐Ÿ”‹ Total Daily Consumption (kWh)", round(total_daily_kwh, 2))
    st.metric("๐Ÿ“… Total Monthly Consumption (kWh)", round(total_monthly_kwh, 2))
else:
    st.info("Please enter appliance details in the sidebar to start.")

# --- Solar Panel Calculator ---
st.subheader("โ˜€๏ธ Solar Panel Requirement Calculator")
avg_sunlight_hours = st.number_input("Average Sunlight Hours/Day", 1.0, 12.0, 5.5)
panel_watt = st.number_input("Panel Wattage (W)", 100, 600, 300)

if total_daily_kwh > 0:
    kwh_per_panel = round((panel_watt * avg_sunlight_hours) / 1000, 2)
    num_panels = int(np.ceil(total_daily_kwh / kwh_per_panel))
    st.success(f"You need approximately **{num_panels}** panels of {panel_watt}W to cover {round(total_daily_kwh, 2)} kWh/day.")
    st.caption(f"Each panel generates approx. {kwh_per_panel} kWh/day.")

# --- Tilt Angle Calculator ---
st.subheader("๐Ÿ“ Recommended Tilt Angle")
latitude = st.number_input("Enter Latitude of Your Location", -90.0, 90.0, 30.0)
tilt_year = round(latitude * 0.9, 1)
tilt_summer = round(latitude * 0.7, 1)
tilt_winter = round(latitude * 1.1, 1)

st.markdown(f"""
- ๐Ÿ“Œ **Year-round Tilt Angle**: `{tilt_year}ยฐ`  
- ๐ŸŒž **Summer Tilt**: `{tilt_summer}ยฐ`  
- โ„๏ธ **Winter Tilt**: `{tilt_winter}ยฐ`
""")

# --- Graphs: Weekly and Monthly Consumption ---
if total_daily_kwh > 0:
    st.subheader("๐Ÿ“Š Energy Consumption Overview")

    week_days = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
    weekly_kwh = [round(total_daily_kwh + np.random.uniform(-0.3, 0.3), 2) for _ in range(7)]

    fig1, ax1 = plt.subplots()
    ax1.bar(week_days, weekly_kwh, color='skyblue')
    ax1.set_ylabel("kWh")
    ax1.set_title("Weekly Consumption")
    st.pyplot(fig1)

    months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
              "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
    monthly_kwh = [round(total_daily_kwh * 30 + np.random.uniform(-5, 5), 2) for _ in range(12)]

    fig2, ax2 = plt.subplots()
    ax2.plot(months, monthly_kwh, marker='o', color='green')
    ax2.set_ylabel("kWh")
    ax2.set_title("Monthly Consumption")
    st.pyplot(fig2)

# --- Roof Area Estimator ---
st.subheader("๐Ÿ  Roof Area & Panel Capacity")
roof_area = st.number_input("Enter Available Roof Area (sq. ft)", 0, 1000, 200)
panel_area = 18  # Average panel size (sq. ft)
max_panels_fit = int(roof_area / panel_area)
max_capacity_kw = round((max_panels_fit * panel_watt) / 1000, 2)

st.markdown(f"""
- Max panels installable: `{max_panels_fit}`
- Max capacity: `{max_capacity_kw} kW`
""")

# --- Battery Estimator ---
st.subheader("๐Ÿ”‹ Battery Backup Estimator")
if total_daily_kwh > 0:
    backup_hours = st.slider("Backup Hours Required", 1, 24, 6)
    avg_load_kw = total_daily_kwh / 24
    battery_size_kwh = round(avg_load_kw * backup_hours, 2)
    battery_ah_12v = round((battery_size_kwh * 1000) / 12, 0)

    st.markdown(f"""
    - Required Battery Size: **{battery_size_kwh} kWh**
    - Battery (12V): **{battery_ah_12v} Ah**
    """)
else:
    st.info("Add appliance details first to calculate battery backup.")

# --- Cost and ROI Estimator ---
st.subheader("๐Ÿ’ฐ Cost & ROI Estimator")
unit_cost = st.number_input("Grid Cost per Unit (kWh)", 5.0, 50.0, 20.0)
panel_cost = st.number_input("Cost per Panel (PKR)", 10000, 100000, 40000)
installation_cost = st.number_input("Installation Cost (PKR)", 0, 100000, 20000)

if num_panels > 0:
    total_cost = int(num_panels) * panel_cost + installation_cost
    monthly_saving = round(total_daily_kwh * 30 * unit_cost, 0)
    roi_months = round(total_cost / monthly_saving, 1)

    st.markdown(f"""
    - ๐Ÿ’ธ Total System Cost: **PKR {total_cost:,}**
    - ๐Ÿ’ต Estimated Monthly Savings: **PKR {monthly_saving:,}**
    - ๐Ÿ“ˆ ROI / Break-even in: **{roi_months} months**
    """)
else:
    st.info("Add appliances and sunlight hours to calculate panel requirements.")

# --- Footer ---
st.markdown("---")
st.caption("Developed with โค๏ธ using Streamlit | Ready for Hugging Face Deployment")