Enter kilowatt hours used in the forms below to determine electricity cost in Albemarle, NC.
This Albemarle Rate Schedule is the one used.
Below is the math used in these forms.
where 'K = Kilowatt Hours'.
Residential Service
if (K <= 500)
{
Cost = K * 0.10199 + 12.07;
}
else
{
Cost = (500 * 0.10199) + ((K - 500) * 0.10876) + 12.07;
}
All Electric Service
if (K <= 500)
{
Cost = K * 0.10199 + 12.07;
}
else
{
Cost = (500 * 0.010199) + ((K - 500) * 0.09992) + 12.07;
}