pof_transformer_33_66kv {CNAIM} | R Documentation |
Current Probability of Failure for 33/10kV and 66/10kV Transformers
Description
This function calculates the current annual probability of failure for 33/10kV and 66/10kV transformers. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function. For more information about the probability of failure function see section 6 on page 34 in CNAIM (2021).
Usage
pof_transformer_33_66kv(
transformer_type = "66kV Transformer (GM)",
year_of_manufacture,
utilisation_pct = "Default",
no_taps = "Default",
placement = "Default",
altitude_m = "Default",
distance_from_coast_km = "Default",
corrosion_category_index = "Default",
age_tf,
age_tc,
partial_discharge_tf = "Default",
partial_discharge_tc = "Default",
temperature_reading = "Default",
main_tank = "Default",
coolers_radiator = "Default",
bushings = "Default",
kiosk = "Default",
cable_boxes = "Default",
external_tap = "Default",
internal_tap = "Default",
mechnism_cond = "Default",
diverter_contacts = "Default",
diverter_braids = "Default",
moisture = "Default",
acidity = "Default",
bd_strength = "Default",
hydrogen = "Default",
methane = "Default",
ethylene = "Default",
ethane = "Default",
acetylene = "Default",
hydrogen_pre = "Default",
methane_pre = "Default",
ethylene_pre = "Default",
ethane_pre = "Default",
acetylene_pre = "Default",
furfuraldehyde = "Default",
reliability_factor = "Default"
)
Arguments
transformer_type |
String. A sting that refers to the specific
asset category. See See page 17, table 1 in CNAIM (2021).
Options:
|
year_of_manufacture |
Numeric. Normal expected life depends on the year for manufacture, see page 107 table 20 in CNAIM (2021). |
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
no_taps |
Numeric. Average number of daily taps (tapchanger). |
placement |
String. Specify if the asset is located outdoor or indoor.
A setting of |
altitude_m |
Numeric. Specify the altitude location for
the asset measured in meters from sea level. |
distance_from_coast_km |
Numeric. Specify the distance from the
coast measured in kilometers. |
corrosion_category_index |
Integer. Specify the corrosion index category, 1-5. |
age_tf |
Numeric. The current age in years of the transformer. |
age_tc |
Numeric. The current age in years of the tapchanger |
partial_discharge_tf |
String. Indicating the
level of partial discharge in the transformer.
Options:
|
partial_discharge_tc |
String. Indicating the
level of partial discharge in the tapchanger
Options:
|
temperature_reading |
String. Indicating the criticality.
Options:
|
main_tank |
String. Indicating the observed condition of the
main tank. Options:
|
coolers_radiator |
String. Indicating the observed condition of the
coolers/radiators. Options:
|
bushings |
String. Indicating the observed condition of the
bushings. Options:
|
kiosk |
String. Indicating the observed condition of the
kiosk. Options:
|
cable_boxes |
String. Indicating the observed condition of the
cable boxes. Options:
|
external_tap |
String. Indicating the observed external condition of the
tapchanger. Options:
|
internal_tap |
String. Indicating the observed internal condition of the
tapchanger. Options:
|
mechnism_cond |
String. Indicating the observed condition of the
drive mechnism. Options:
|
diverter_contacts |
String. Indicating the observed condition of the
selector and diverter contacts. Options:
|
diverter_braids |
String. Indicating the observed condition of the
selector and diverter braids. Options:
|
moisture |
Numeric. the amount of moisture given in (ppm) See page 162, table 203 in CNAIM (2021). |
acidity |
Numeric. the amount of acidicy given in (mg KOH/g) See page 162, table 204 in CNAIM (2021). |
bd_strength |
Numeric. the amount of breakdown strength given in (kV) See page 162, table 205 in CNAIM (2021). |
hydrogen |
Numeric. Refers to the hydrogen level in the
transformer oil. Hydrogen levels are measured in ppm.
A setting of |
methane |
Numeric. Refers to the methane level in the
transformer oil. Methane levels are measured in ppm.
A setting of |
ethylene |
Numeric. Refers to the ethylene level in the
transformer oil. Ethylene levels are measured in ppm.
A setting of |
ethane |
Numeric. Refers to the ethane level in the
transformer oil. Ethane levels are measured in ppm.
A setting of |
acetylene |
Numeric. Refers to the acetylene level in the
transformer oil. Acetylene levels are measured in ppm.
A setting of |
hydrogen_pre |
Numeric. Previous results.
A setting of |
methane_pre |
Numeric. Previous results.
A setting of |
ethylene_pre |
Numeric. Previous results.
A setting of |
ethane_pre |
Numeric. Previous results.
A setting of |
acetylene_pre |
Numeric. Previous results.
A setting of |
furfuraldehyde |
Numeric. Refers to the furfuraldehyde level in the
transformer oil. furfuraldehyde levels are measured in ppm.
A setting of |
reliability_factor |
Numeric. |
Value
DataFrame Current probability of failure per annum per kilometer along with current health score.
Source
DNO Common Network Asset Indices Methodology (CNAIM), Health & Criticality - Version 2.1, 2021: https://www.ofgem.gov.uk/sites/default/files/docs/2021/04/dno_common_network_asset_indices_methodology_v2.1_final_01-04-2021.pdf
Examples
# Current probability of failure for a 66/10kV transformer
pof_transformer_33_66kv(transformer_type = "66kV Transformer (GM)",
year_of_manufacture = 1980,
utilisation_pct = "Default",
no_taps = "Default",
placement = "Default",
altitude_m = "Default",
distance_from_coast_km = "Default",
corrosion_category_index = "Default",
age_tf = 43,
age_tc = 43,
partial_discharge_tf = "Default",
partial_discharge_tc = "Default",
temperature_reading = "Default",
main_tank = "Default",
coolers_radiator = "Default",
bushings = "Default",
kiosk = "Default",
cable_boxes = "Default",
external_tap = "Default",
internal_tap = "Default",
mechnism_cond = "Default",
diverter_contacts = "Default",
diverter_braids = "Default",
moisture = "Default",
acidity = "Default",
bd_strength = "Default",
hydrogen = "Default",
methane = "Default",
ethylene = "Default",
ethane = "Default",
acetylene = "Default",
hydrogen_pre = "Default",
methane_pre = "Default",
ethylene_pre = "Default",
ethane_pre = "Default",
acetylene_pre = "Default",
furfuraldehyde = "Default",
reliability_factor = "Default")