At its core, Demand Management is about changing when we use electricity rather than how much we use overall.
Instead of allowing high-power appliances to run simultaneously and create massive, unpredictable spikes in power consumption, a smart controller such as The AlphaMon Platform manages these loads sequentially or shifts them to periods when energy production is at its peak.
As the world transitions toward renewable energy, the way we manage electricity must change. In the past, coal and gas power stations simply ramped generation up or down to match human activity. Today, solar and wind resources produce energy based on weather conditions, not consumer demand.
To bridge this gap, we must practice Demand Management—the strategic shifting, shedding, or scaling of electrical loads to match available power resources.
Whether you are trying to slash electricity bills on a grid-connected property or trying to keep the lights on in an isolated off-grid system, intelligent demand management is the key to energy security, component longevity, and financial savings.
Three Core Strategies of Demand Management:
- Peak Shaving: Reducing the maximum power drawn from a source during peak times to avoid high utility capacity charges or inverter overloads.
- Load Shifting: Moving heavy power tasks (like water heating or EV charging) from expensive, low-production hours to cheap, high-production windows.
- Load Shedding: Temporarily disconnecting non-essential appliances when power resources drop critically low to protect system integrity.
Why Grid Stability Depends on It:
For grid-connected users, demand management is no longer optional—it is becoming a financial necessity. Modern electrical grids face a phenomenon known as the “Duck Curve”. During the middle of the day, millions of rooftop solar systems flood the grid with excess electricity, causing market prices to crash [1]. In the evening, solar production drops to zero just as households turn on heating, cooling, and cooking appliances, creating a massive, stressful spike in grid demand.
The Benefits for Grid-Connected Users:
- Preventing Grid Over-voltages: When too many solar systems export power simultaneously, local line voltages spike, causing smart solar inverters to shut down to prevent damage. Activating local loads during peak solar hours keeps voltages stable.
- Avoiding Peak Tariffs: Energy providers punish consumers with high electricity rates during evening peak windows. Shifting heavy loads to the middle of the day or late at night directly slashes operational costs.
- Virtual Power Plant (VPP) Readiness: Properties capable of dynamically dropping or increasing loads can participate in balancing networks, earning automated credits from utility providers for supporting grid stability.
The Off-Grid Equation: A Critical Survival Skill
While grid-tied systems use demand management to save money, off-grid systems use it to survive.
In an isolated power system, you are your own utility provider. If your total load exceeds your battery bank’s maximum discharge rate or your inverter’s surge capacity, the entire system crashes instantly.
Why Off-Grid Users Face Unique Risks:
The Winter Deficiency: During extended cloudy periods or winter months, daily solar generation drops dramatically. Without automated load shedding, an off-grid system can easily drain its batteries past safe thresholds, resulting in a total blackout.
Battery Bank Degradation: Drawing massive currents from lithium or lead-acid batteries heats them up and accelerates chemical degradation. Spreading high-power tasks across the day keeps temperatures cool and extends battery life.
Inverter Thermal Stress: Inverters lose efficiency as they heat up. Running an inverter near its maximum capacity for extended periods reduces its lifespan and increases the risk of unexpected component failure.
The AlphaMon Solution: Your Intelligent Energy Traffic Cop
The AlphaMon is designed to act as the central brain of your energy ecosystem. By constantly reading and analyzing data from power meters, inverters, and environmental sensors, it executes real-time demand management routines using automated expression triggers.
Instead of relying on human intervention, the AlphaMon monitors your system boundaries and takes physical action to protect your energy network and infrastructure.
[ SOLAR ENERGY / GRID FEED ]
│
▼
┌───────────────┐
│ ALPHAMON │◄─── [ Expression Engine ]
└───────┬───────┘
│
┌───────────────┼───────────────┐
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────────┐
│ LOAD 1 │ │ LOAD 2 │ │ GENERATOR │
│ (Relay) │ │ (Modbus) │ │ (Auto-Start) │
└──────────┘ └──────────┘ └──────────────┘
1. Hardwired Relay Load Switching
Using physical relay connections, the AlphaMon directly switches heavy appliances on or off based on logical thresholds, designed by yourself or your installer, customised to your site conditions and energy costs. The thresholds or triggers are defined using simple, math-like expressions that tell the AlphaMon which conditions should be monitored and, if a trigger is detected, what action/s should be taken.
The following sample expression tells the AlphaMon to monitor your local grid voltage and, if it drops below 230.5V AC, to turn on a relay that, for example, might be connected to a backup power source such as a generator.
GPIO:RELAY1 = (DDS6619:Volts < 230.5)
Most expressions take three standard parts:
- The Left Hand Side (LHS) of the expression tells the AlphaMon what action/s should be taken.
- In the example above,
GPIO:RELAY1is the LHS of the expression. - In this instance, the LHS consists of 2 parts;
"GPIO"and"RELAY1". - “GPIO” is the Alias Name of the Device to be switched, namely a General Purpose Input/Output pin on the AlphaMon CPU. The Alias Name is a nickname or shorthand name for the Device.
"RELAY1"is the Alias Name of the exact GPIO pin to be switched on or off. Whilst we could also write “GPIO:39”, the internally assigned Alias “RELAY1” is much easier to remember.
- In the example above,
- The Assignment Operator (=) splits the expression into the LHS and RHS.
- The Assignment Operator tells the AlphaMon, “evaluate the RHS and apply the result to the LHS”.
- Most operators, including the equal sign (=) also have text alternates; in this case “EQ” means the same thing.
- The Right Hand Side (RHS) tells the AlphaMon what should be monitored.
- If we want to switch something on or off we normally want the RHS of our expression to evaluate to True or False, where a value of True means “On” and False means “Off“.
- To produce the True/False output we are using a “Logic Expression”, sometimes called a “Boolean Expression” that has the following parts:
DDS6619:VoltsIn this instance the AlphaMon is connected to an external SinoTimer smart meter with a Model Number of DDS6619. The AlphaMon’s Device Driver File (DDF) has assigned an Alias name of DDS6619 to this device. The DDF has also assigned an Alias of “Volts” to the DDS6619’s Modbus register that stores the current voltage reading.- The “Is Less Than…” operator (<) can also be written as “LT”, if you find that easier to remember.
- 230.5 is a Constant Value in this expression. It is always the same, every time the AlphaMon evaluates this expression.
Sometimes we don’t want the expression to DO anything; rather we just want to see the result. In these cases we don’t need the LHS or the Assignment Operator, so we just draft the RHS. Just like the 3 part expression, the AlphaMon will evaluate the single part expression many times per second and will display the result periodically on the OLDS display so you can manually monitor it.
What does the Sample Expression do?
Depending on how your Renewable Energy system is wired, a simple expression like the one above can do many things.
For example, if Relay1 is connected to an external Solid State Relay (SSR) then, if your local line voltage drops due to excessive loading, the AlphaMon can safely shed non-essential appliances connected to Relay1, before your primary inverter trips on an under-voltage fault.