Spaces:
Build error
Build error
File size: 1,778 Bytes
aec628e |
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 |
import pandas as pd
import numpy as np
import datetime
def simulate_data(n=10, faults=True):
today = datetime.date.today()
poles = [f"Pole_{i+1:03}" for i in range(n)]
data = []
for pole in poles:
solar = round(np.random.uniform(3.0, 7.5), 2)
wind = round(np.random.uniform(0.5, 2.0), 2)
required = round(np.random.uniform(1.0, 1.5), 2)
total = solar + wind
cam = np.random.choice(['Online', 'Offline'], p=[0.85, 0.15]) if faults else "Online"
tilt = round(np.random.uniform(0, 12), 1)
vib = round(np.random.uniform(0.1, 2.5), 2)
sufficient = "Yes" if total >= required else "No"
anomaly = []
if faults:
if solar < 4.0:
anomaly.append("LowSolarOutput")
if wind < 0.7:
anomaly.append("LowWindOutput")
if tilt > 10:
anomaly.append("PoleTiltRisk")
if vib > 2.0:
anomaly.append("VibrationAlert")
if cam == "Offline":
anomaly.append("CameraOffline")
if sufficient == "No":
anomaly.append("PowerInsufficient")
alert = "Green"
if len(anomaly) == 1:
alert = "Yellow"
elif len(anomaly) > 1:
alert = "Red"
data.append({
"PoleID": pole,
"Date": today,
"SolarGen(kWh)": solar,
"WindGen(kWh)": wind,
"PowerRequired(kWh)": required,
"PowerSufficient": sufficient,
"CameraStatus": cam,
"Tilt(°)": tilt,
"Vibration(g)": vib,
"Anomalies": ";".join(anomaly) if anomaly else "None",
"AlertLevel": alert
})
return pd.DataFrame(data) |