METER POINT ADMINISTRATION NUMBER

A 'Meter Point Administration Number' also known as 'MPAN', 'Supply Number' or 'S-Number' is a 21 digit reference, used in Great Britain to uniquely identify electricity supply points, such as individual domestic residences; the gas equivalent is the Meter Point Reference Number. [1] The system was introduced following privatisation in order to provide a competitive environment for the new private electricity companies; the system means that consumers are able to easily switch their supplier as well as administration being simplified. Although the name suggests that an MPAN refers to a particular meter, an MPAN can have several meters associated with it,[2] or indeed none. A supply receiving power from the National Grid will have an Import MPAN and microgeneration projects, feeding back into the grid are given Export MPANs.

Contents
Structure
Profile Types
Meter Time Switch Code (MTC)
Line Loss Factor (LLF)
Distributor ID
Core
Check Digit
MPAN State
Export MPANs
Metered Supply Point
Unmetered Supplies
Meter Point Administration System
See Also
References

Structure


An MPAN is commonly separated into two sections, the core and the supplementary data. The core is the final 13 digits and is the unique identifier. The supplementary data gives you information about the type of supply, and the power connection - line loss factor etc. [3] The supplementary data is the responsibility of the supplier.
It is commonly depicted on electricity bills thus (the boxes on the top and bottom line are generally unaligned):[4]
centre

The core data is on the second line, the supplementary data on the first. [3]
Profile Types

The first two digits of a full MPAN reflect its profile type. These range from 00 to 08 and are broadly separated into two categories, Half-Hourly (HH) and Non-Half-Hourly (NHH). [6] These terms are a reference to the availability capacity of the supply in kVA. An 00 profile is half-hourly [6] and this means that in a particular half-hour period it can use 100 kVA or more. Energy Glossary Utilyx The supply must consume more than 100 kVA for at least half-hour in at least three quarters of a year. If the supply consecutively draws this much energy, the installation of a Half-Hourly meter is mandatory. All of this data is recorded by the meter and will be collected usually be either an onsite download, or via a telephone line. [6]
The other profiles are non-half-hourly and generally, though not always, use less than 100 kWh in a half-hour period.
Domestic supplies will 'always' be either 01 or 02 profile types. [6]

★ '00' - Half-hourly supply

★ '01' - Domestic, Single rate

★ '02' - Domestic, Day / Night split, also referred to as Economy 7.

★ '03' - Commercial, Single rate

★ '03' - Commercial Day / Evening & Weekend

★ '04' - Commercial, Day / Night

★ '04' - Commercial, Day / Night / Evening & Weekend

★ '05' - Commercial Maximum Demand - Poor Load Factor (0-20% Load)

★ '06' - Commercial Maximum Demand - Medium Load Factor (20-30% Load)

★ '07' - Commercial Maximum Demand - Good Load Factor (30-40% Load)

★ '08' - Commercial Maximum Demand - Excellent Load Factor (>40% Load)
[10]





Supply Capacity by Profile Class
Profile Supply Capacity Meter Phase
03 - 04 0 - 23kVA 1 Phase Meter
24 - 40 kVA 3 Phase Meter
05 - 08 40 - 70kVA 3 Phase MD Meter
70 - 125kVA 3 Phase CT Meter

Meter Time Switch Code (MTC)

The Meter Time Switch Code is a three digit number that reflects the various registers a meter may have, whether it be a Single Rate, Day Night split, or even a Seasonal Time of Day. 0 - 399 are allocated to electricity suppliers, 400 - 499 are reserved and currently unused, 500 - 509 are the 10 most common codes in use, 510 - 799 are allocated to individual energy suppliers, and 800 - 999 are codes commonly used throughout the industry. CIDA MTC Definitions MRASCo . Specific definitions of MTCs can be found on the MRASCo documention page.
Line Loss Factor (LLF)

Line Loss Factor codes are used to calculate the related DUoS charges for the MPAN. The figure reflects both the amount of transmission infrastructure used to supply the point and the amount of energy lost through heat etc.4
Distributor ID

Map of DNO licence areas

The whole of Great Britain is split up into many areas where one single company the Distribution Network Operator has the license to distribute electricity in that area. [11] They effectively carry electricity from the National Grid to the exit point (each has a unique MPAN and a possibility of several meters) where the customers are. The owner of the distribution network charges electricity suppliers for carrying the electricity in their network. They regions are based geographically on the old, nationalised electricity board areas. [12]
'ID' 'Name' 'Operator' 'Phone Number' 'MPAS Operator ID'
'10' Eastern England EDF Energy Networks 0870 196 3082 EELC
'11' East Midlands Electricity Central Networks 0845 603 0618 EMEB
'12' London Electricity EDF Energy Networks 0845 600 0102 LOND
'13' Merseyside and Northern Wales ScottishPower 0845 270 9107 MANW
'14' West Midlands Central Networks 0845 603 0618 MIDE
'15' North Eastern England CE Electric UK 0845 330 0889 NEEB
'16' North Western England United Utilities 0870 751 0093 NORW
'17' Northern Scotland SSC Power Distribution 0845 744 4555 HYDE
'18' Southern Scotland ScottishPower 0845 270 9107 SPOW
'19' South Eastern England EDF Energy Networks 0845 601 5467 SEEB
'20' Southern England SSC Power Distribution 0845 744 4555 SOUT
'21' Southern Wales Western Power Distribution 0845 601 5972 SWAE
'22' South Western England Western Power Distribution 0845 601 5972 SWEB
'23' Yorkshire CE Electric UK 0845 330 0889 YELG

In addition to the Distribution Network Operators noted above who are responsible for a specific geographic area we also have what are known as Independent Distribution Network Operators (IDNO). IDNOs will own and operate electricity distribution networks which will predominately be network extensions connected to the existing distribution network, e.g. to serve new housing developments.
'ID' 'Name' 'Licensee'
'24' Energetics Global Utilities Connections (Electric) Ltd
'25' Laing Energy Laing Energy
'26' Envoy Independent Power Networks
[13]
Core

The MPAN core is the final 13 digits of the MPAN, and uniquely identifies a supply. It consists of the 2 digit Distributor ID followed by 8 digits followed by 2 digits then a single check digit.[14]
Check Digit

The final digit in the MPAN is the check digit validates the previous 12 (the core) using a modulus 11 test. The check digit is calculated thus:

★ Multiply the first digit by 3

★ Multiply the second digit by the next prime number (5)

★ Repeat this for each digit (missing 11 out on the list of prime numbers for the purposes of this algorithm.)

★ Add up all these products.

★ The check digit is the sum modulo 11 modulo 10. 14
The algorithm in Java is:

int checkDigit(String toCheck) {
int[] primes = {3, 5, 7, 13, 17, 19, 23, 29, 31, 37, 41, 43};
int sum = 0;
for (int i = 0; i < primes.length; i++) {
sum += Character.getNumericValue(toCheck.charAt(i))
★ primes[i];
}
return sum % 11 % 10;
}

In Pascal / Delphi:

function CheckDigit(MPANCore : array of Byte): Integer;
const
Primes : array [0..11] of Byte = (3, 5, 7, 13, 17, 19, 23, 29, 31, 37, 41, 43);
var
i : integer;
begin
Result := 0;
for i := 0 to 11 do
Result := Result + (MPANCore[i]
★ Primes[i]);
Result := Result mod 11 mod 10;
end;

MPAN State


The supply identified by the MPAN can exist in one of three states: disconnected, de-energised, live.

★ Disconnected: The service cable has been removed.

★ De-energised: The service cable is in place, but the fuse has been removed. The meter remains connected to the DNO, but no electricity can be used.

★ Live: Both the supply cable and the fuse are in place. The supply is fully operational.
These terms are by no means standardised. For example, a disconnected supply might be referred to as a 'dead' supply.

Export MPANs


The vast majority of MPANs are used where energy is being consumed; Import MPANs are issued for this purpose. However since 2003, the system has been available for Microgeneration projects with a capacity of 50 kVA or below for energy to be fed back into the grid. A meter can have both an Import and an Export MPAN associated with it, however, an MPAN may only be Import or Export, in the case where a meter does both, two MPANs will be issued.
The uptake was slow with the first Export MPAN being issued in June 2005; often microgeneration is not recorded with MPAS and not assigned an MPAN. This was partially due to Export MPANs requiring a costly Half-Hourly compliant meter to be installed.

Metered Supply Point


The Metered Supply Point (MSP) is the point at which the meter measuring a customer's consumption is located. It is thus also the point at which the Distribution Network Operator's supply cable terminates, and the customer's wires begin. In order to firmly establish a supply's MSP, the MPAN needs to be associated with a meter serial number.
Although it is common for an MPAN to be associated with one meter id, the two identifiers do exist in a many-to-many relationship. For example, one meter could be associated with both an import and an export MPAN, or one MPAN could be measured by three separate meters.
The link between the meter serial number(s) and the MPAN is held in the MPAS system.

Unmetered Supplies


It is possible for a supply to be unassociated with a meter. For a DNO to agree to an unmetered supply, its consumption must be absolutely predictable. To that end, it must have a constant wattage, and must either be continuously consuming, or be equipped with a pre-set time switch.
Such unmetered supplies are otherwise identical to all other supplies, except for the fact that it is the customer's responsibility to maintain an accurate and up-to-date inventory of unmetered supplies, and to inform the DNO of changes to the consumption.

Meter Point Administration System


The Meter Point Administration System (MPAS) holds the following information for each MPAN:

Supplier

★ Data Collector for Settlements (DCS)

★ Data Collector for Energy Management (DCE)

★ Meter Operator (MOP)

★ Customer

Meter serial number(s)

★ Address of the supply

★ Associated MPANs

MPAN state

See Also



Mains electricity

Distribution Network Operator

Electrical power industry

References


1. Meters, Metering and Meter Numbers! Energy Services Online Limited
2. Settlement of Microgeneration Export Exelon
3.
4. MPAN (Meter Point Administration Number) Energy Linx
5.
6.
7.
8.
9.
10. Energy Trends "Snapshot" DTI
11. MPAN Request (Meter Point Administration Number Request EnergyLinx
12.
13. "Notice under section 11 of the Electricity Act 1989" Ofgem
14. Special Open Meeting Minutes Arizona Corporation Commission


This article provided by Wikipedia. To edit the contents of this article, click here for original source.

psst.. try this: add to faves