Skip to content

Instantly share code, notes, and snippets.

@nagasudhirpulla
Last active February 18, 2018 08:43
Show Gist options
  • Save nagasudhirpulla/a00432cf420a9acb3496b357462ca3b7 to your computer and use it in GitHub Desktop.
Save nagasudhirpulla/a00432cf420a9acb3496b357462ca3b7 to your computer and use it in GitHub Desktop.
Demand Forecast Prediction Notes

Main Factors

Day of Week, Block of day, Tempurature Dependent load, Special day, load crash/load shedding

Demand Equation

Demand at a block
=
Connected Load * temp * (fTempSun * isSun + fTempMon * isMon + fTempTue * isTue + fTempWed * isWed + fTempThu * isThu + fTempFri * isFri + fTempSat * isSat)
+
Connected Load * (fDemSun * isSun + fDemMon * isMon + fDemTue * isTue + fDemWed * isWed + fDemThu * isThu + fDemFri * isFri + fDemSat * isSat)
+
Connected Load * fConstDem
-
Connected Load * fDiwali * isDiwali
-
Connected Load * fHoli * isHoli
-
Connected Load * fIndDay * isIndDay
-
Connected Load * fDusshera * isDusshera
-
Connected Load * fChristmas * isChristmas
-
Connected Load * fSankranti * isSankranti
-
Load Shedding/Load Crash

Variables to be found out after fitting the data

Connected Load, fTempSun, fTempMon, fTempTue, fTempWed, fTempThu, fTempFri, fTempSat, fDemSun, fDemMon, fDemTue, fDemWed, fDemThu, fDemFri, fDemSat, fConstDem, fDiwali, fHoli, fIndDay, fDusshera, fChristmas, fSankranti

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment