From cd3e7404bbd70861afbcf0bff4a0b0b82f8c4e0e Mon Sep 17 00:00:00 2001 From: Christopher Schmidt Date: Mon, 29 Apr 2024 15:21:31 -0400 Subject: [PATCH] feat: Update Solar Demo site to use 400W panel defaults. Solar API is moving to 400W panels as default; this change aligns with a change in default panel sizing, so making the default on the demo site match the API output will generate more reasonable behavior. --- src/routes/sections/Sections.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/sections/Sections.svelte b/src/routes/sections/Sections.svelte index aa64889..2794000 100644 --- a/src/routes/sections/Sections.svelte +++ b/src/routes/sections/Sections.svelte @@ -36,7 +36,7 @@ // User settings let monthlyAverageEnergyBillInput = 300; - let panelCapacityWattsInput = 250; + let panelCapacityWattsInput = 400; let energyCostPerKwhInput = 0.31; let dcToAcDerateInput = 0.85;