Title: | Common Network Asset Indices Methodology (CNAIM) |
---|---|
Description: | Implementation of the CNAIM standard in R. Contains a series of algorithms which determine the probability of failure, consequences of failure and monetary risk associated with electricity distribution companies' assets such as transformers and cables. Results are visualized in an easy-to-understand risk matrix. |
Authors: | Emil Larsen [aut], Kalle Hansen [aut], Kenneth Rosenorn [aut], Peter Larsen [aut], Utiligize ApS [cph], Mohsin Vindhani [aut, cre] |
Maintainer: | Mohsin Vindhani <[email protected]> |
License: | MIT + file LICENSE |
Version: | 2.1.4 |
Built: | 2025-03-22 05:30:27 UTC |
Source: | https://github.com/utiligize/cnaim |
This function calculates the initial ageing rate for an electric network asset. See section 6.1.5 on page 36 in CNAIM (2021).
beta_1(expected_life_years)
beta_1(expected_life_years)
expected_life_years |
Numeric. The output returned by the
function |
Numeric. Initial ageing rate for an electric network asset.
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
beta_1(expected_life_years = 10)
beta_1(expected_life_years = 10)
This function calculates the forecast Ageing Rate for an electric network asset. See section 6.1.8 on page 38 in CNAIM (2021).
beta_2(current_health_score, age)
beta_2(current_health_score, age)
current_health_score |
Numeric. The output returned by the
function |
age |
Numeric. Age of the asset. |
Numeric. Forecast ageing rate for an electric network asset.
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
beta_2(current_health_score = 1, age = 25)
beta_2(current_health_score = 1, age = 25)
This function calculates consequences of failure (cf.section 7, page 75, CNAIM, 2021).
cof(financial_cof, safety_cof, environmental_cof, network_cof)
cof(financial_cof, safety_cof, environmental_cof, network_cof)
financial_cof |
Numeric. Financial consequences of failure. |
safety_cof |
Numeric. Safety consequences of failure. |
environmental_cof |
Numeric. Environmental consequences of failure. |
network_cof |
Numeric. Network cost of failure. |
Numeric. Consequences of failure.
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
This function calculates consequences of failure for a 6.6/11 kV transformer (cf.section 7, page 75, CNAIM, 2021).
cof_transformer_04_10kv( kva, type, type_risk, location_risk, prox_water, bunded, no_customers, kva_per_customer, gb_ref_given = NULL )
cof_transformer_04_10kv( kva, type, type_risk, location_risk, prox_water, bunded, no_customers, kva_per_customer, gb_ref_given = NULL )
kva |
Numeric. The rated transformer capacity measured in kVA
for a 6.6/11 kV transformer. Rated capacity is used to derive the
type financial factor. For a general description of type financial factor see
section 7.3.3.1 on page 80 in CNAIM (2021). A setting of |
type |
String. Relates to the accessibility of the transformer
Options: |
type_risk |
String. Risk that the asset presents to the
public by its characteristics and particular situation. Options:
|
location_risk |
String. Proximity to areas that may affect its
likelihood of trespass or interference. Options:
|
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Consequences of failure for a 0.4/10 kV transformer.
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
# Consequences of failure for a 0.4/10 kV transformer cof_transformer_04_10kv(kva = 500, type = "Type C", type_risk = "High", location_risk = "High", prox_water = 50, bunded = "No", no_customers = 500, kva_per_customer = 1)
# Consequences of failure for a 0.4/10 kV transformer cof_transformer_04_10kv(kva = 500, type = "Type C", type_risk = "High", location_risk = "High", prox_water = 50, bunded = "No", no_customers = 500, kva_per_customer = 1)
This function calculates consequences of failure for a 6.6/11 kV transformer (cf.section 7, page 75, CNAIM, 2021).
cof_transformer_11kv( kva, type, type_risk, location_risk, prox_water, bunded, no_customers, kva_per_customer, gb_ref_given = NULL )
cof_transformer_11kv( kva, type, type_risk, location_risk, prox_water, bunded, no_customers, kva_per_customer, gb_ref_given = NULL )
kva |
Numeric. The rated transformer capacity measured in kVA
for a 6.6/11 kV transformer. Rated capacity is used to derive the
type financial factor. For a general description of type financial factor see
section 7.3.3.1 on page 80 in CNAIM (2021). A setting of |
type |
String. Relates to the accessibility of the transformer
Options: |
type_risk |
String. Risk that the asset presents to the
public by its characteristics and particular situation. Options:
|
location_risk |
String. Proximity to areas that may affect its
likelihood of trespass or interference. Options:
|
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Consequences of failure for a 6.6/11 kV transformer.
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
# Consequences of failure for a 6.6/11 kV transformer cof_transformer_11kv(kva = 500, type = "Type C", type_risk = "High", location_risk = "High", prox_water = 50, bunded = "No", no_customers = 500, kva_per_customer = 1)
# Consequences of failure for a 6.6/11 kV transformer cof_transformer_11kv(kva = 500, type = "Type C", type_risk = "High", location_risk = "High", prox_water = 50, bunded = "No", no_customers = 500, kva_per_customer = 1)
This function calculates the current health score for a given electric network asset (cf. CNAIM, 2021. Page 23, section 4.3.2).
current_health( initial_health_score, health_score_factor, health_score_cap = "Default", health_score_collar = "Default", reliability_factor = "Default" )
current_health( initial_health_score, health_score_factor, health_score_cap = "Default", health_score_collar = "Default", reliability_factor = "Default" )
initial_health_score |
Numeric. The output from the function
|
health_score_factor |
Numeric. E.g. output from the function
|
health_score_cap |
Numeric. Specifies the maximum value of current
health score. The cap is used in situations where a good result from a
condition inspection or measurement implies that the health score should
be no more than the specified value. The cap is derived as the minimum
of the observed condition cap and the measured condition cap.
Measured and observed condition caps are found in lookup tables depending
in the asset category, when determine the observed and measured
condition factors. A setting of |
health_score_collar |
Numeric. Specifies the minimum value of
Current Health Score.
The collar is used in situations where a poor result from a condition
inspection or measurement implies that the health score should be at
least the specified value.
The collar is derived as the minimum of the observed condition collar
and the measured condition collar. Measured and observed condition
collars are found in lookup tables depending in the asset category,
when determine the observed and measured condition factors.
A setting of |
reliability_factor |
Numeric. |
Numeric. The Current health score.
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
current_health(initial_health_score = 0.5, health_score_factor = 0.33, health_score_cap = 10, health_score_collar = 0.5, reliability_factor = 1)
current_health(initial_health_score = 0.5, health_score_factor = 0.33, health_score_cap = 10, health_score_collar = 0.5, reliability_factor = 1)
This function calculates the DGA test modifier for 33/10kV, 66/10kV and 132kV transformers. See e.g. section 6.12 on page 65 in CNAIM (2017).
dga_test_modifier( 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", gb_ref_given = NULL )
dga_test_modifier( 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", gb_ref_given = NULL )
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 |
gb_ref_given |
optional parameter to use custom reference values |
Data table.
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
# DGA test modifier dga_test_modifier(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")
# DGA test modifier dga_test_modifier(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")
This function calculates the duty factor for under all types of
cables depending on the maximum
percentage utilisation under normal operating conditions.
The duty factor is used in the deriviation of the expected life of an asset.
See e.g. expected_life()
. For more general information about
the derivation of the duty factor see section 6.6 on page 51 in CNAIM (2021)
duty_factor_cables( utilisation_pct = "Default", operating_voltage_pct = "Default", voltage_level = "EHV", gb_ref_given = NULL )
duty_factor_cables( utilisation_pct = "Default", operating_voltage_pct = "Default", voltage_level = "EHV", gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
voltage_level |
String. Specify the voltage level. Options:
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Duty factor for cables.
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
duty_factor_cables(utilisation_pct = "Default", operating_voltage_pct = "Default", voltage_level = "EHV")
duty_factor_cables(utilisation_pct = "Default", operating_voltage_pct = "Default", voltage_level = "EHV")
This function calculates the duty factor for 6.6/11kV and 20kV
transformers depending on the maximum percentage utilisation under normal
operating conditions.
The duty factor is used in the deriviation of the expected life of an asset.
See e.g. expected_life()
. For more general information about
the derivation of the duty factor see section 6.6 on page 51 in CNAIM (2021)
duty_factor_transformer_11_20kv( utilisation_pct = "Default", gb_ref_given = NULL )
duty_factor_transformer_11_20kv( utilisation_pct = "Default", gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Duty factor for 6.6/11kV or 20kV transformer.
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
duty_factor_transformer_11_20kv(utilisation_pct = 95)
duty_factor_transformer_11_20kv(utilisation_pct = 95)
This function calculates the duty factor for
33/10kV and 66/10kV transformers depending on the maximum
percentage utilisation under normal operating conditions. And the tapchanger
depending on the average number of daily taps.
The duty factor is used in the derivation of the expected life of an asset.
See e.g. expected_life
(). For more general information about
the derivation of the duty factor see section 6.6 on page 51 in CNAIM (2021)
duty_factor_transformer_33_66kv( utilisation_pct = "Default", no_taps = "Default", gb_ref_given = NULL )
duty_factor_transformer_33_66kv( utilisation_pct = "Default", no_taps = "Default", gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
no_taps |
Numeric. Average number of daily taps (tapchanger). |
gb_ref_given |
optional parameter to use custom reference values |
Data table. Duty factor for the transformer and for the tapcharger
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
duty_factor_transformer_33_66kv(utilisation_pct = 95, no_taps = 25)
duty_factor_transformer_33_66kv(utilisation_pct = 95, no_taps = 25)
This function calculates environmental consequences of failure
for all type of transformers.
(cf. section 7.5, page 84, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().
e_cof_tf( asset_type_tf, rated_capacity = "Default", prox_water = "Default", bunded = "Default", gb_ref_given = NULL )
e_cof_tf( asset_type_tf, rated_capacity = "Default", prox_water = "Default", bunded = "Default", gb_ref_given = NULL )
asset_type_tf |
String. Transformer types.
Options:
|
rated_capacity |
Numeric. The rated capacity for a transformer. For type
|
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial cost of failure for a 10kV transformer.
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
# Environmental consequences of failure for a 6.6/11 kV transformer e_cof_tf(asset_type_tf = "6.6/11kV Transformer (GM)", rated_capacity = 750, prox_water = 100, bunded = "Yes")
# Environmental consequences of failure for a 6.6/11 kV transformer e_cof_tf(asset_type_tf = "6.6/11kV Transformer (GM)", rated_capacity = 750, prox_water = 100, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for 0.4kV board
Outputted in DKK
environmental_cof_board_04kv(gb_ref_given = NULL)
environmental_cof_board_04kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_board_04kv()
environmental_cof_board_04kv()
This function calculates environmental consequences of failure
Outputted in DKK
hv_asset_category = c("10kV UG Cable (Oil)",
"10kV UG Cable (Non Pressurised)", "0.4kV UG Cable (Non Pressurised)"
.
environmental_cof_cables_04_10kv( hv_asset_category, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_cables_04_10kv( hv_asset_category, prox_water, bunded, gb_ref_given = NULL )
hv_asset_category |
String The type of HV asset category
A setting of |
prox_water |
Numeric. Specify the proximity to a water course in meters. |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)", prox_water = 95, bunded = "Yes")
environmental_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV switchgear
ehv_asset_category = c("30kV UG Cable (Gas)", "60kV UG Cable (Gas)",
"30kV UG Cable (Non Pressurised)", "60kV UG Cable (Non Pressurised)",
"30kV UG Cable (Oil)", "60kV UG Cable (Oil)")
. The default setting is
ehv_asset_category = "60kV UG Cable (Gas)"
.
environmental_cof_cables_60_30kv( ehv_asset_category, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_cables_60_30kv( ehv_asset_category, prox_water, bunded, gb_ref_given = NULL )
ehv_asset_category |
Asset category for the analysis |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)", prox_water = 95, bunded = "Yes")
environmental_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV switchgear
environmental_cof_ehv_cables( ehv_asset_category, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_ehv_cables( ehv_asset_category, prox_water, bunded, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV cable distribution asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)", prox_water = 95, bunded = "Yes")
environmental_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV switchgear
environmental_cof_ehv_fittings(ehv_asset_category, gb_ref_given = NULL)
environmental_cof_ehv_fittings(ehv_asset_category, gb_ref_given = NULL)
ehv_asset_category |
String The type of EHV asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_ehv_fittings(ehv_asset_category = "33kV Fittings")
environmental_cof_ehv_fittings(ehv_asset_category = "33kV Fittings")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV switchgear
environmental_cof_ehv_switchgear( ehv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_ehv_switchgear( ehv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV swicthgear & 132kV CB
Options: |
type_env_factor |
String The type environment factor of EHV asset category |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric.
Financial consequences of failure for HV switchgear
environmental_cof_hv_switchgear_distribution( hv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_hv_switchgear_distribution( hv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
hv_asset_category |
String The type of HV switchgear distribution asset category
Options: |
type_env_factor |
String The type environment factor of HV asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for HV switchgear
environmental_cof_hv_switchgear_primary( hv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_hv_switchgear_primary( hv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
hv_asset_category |
String The type of HV asset category
Options: |
type_env_factor |
String The type environment factor of HV asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV switchgear
environmental_cof_lv_switchgear_and_other( lv_asset_category, gb_ref_given = NULL )
environmental_cof_lv_switchgear_and_other( lv_asset_category, gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)")
environmental_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV UGB
environmental_cof_lv_ugb(lv_asset_category, gb_ref_given = NULL)
environmental_cof_lv_ugb(lv_asset_category, gb_ref_given = NULL)
lv_asset_category |
String The type of LV asset category
Option: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Environmental consequences of failure for LV UGB
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
environmental_cof_lv_ugb(lv_asset_category = "LV UGB")
environmental_cof_lv_ugb(lv_asset_category = "LV UGB")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#'
environmental_cof_ohl_cond(ohl_cond_asset_category, gb_ref_given = NULL)
environmental_cof_ohl_cond(ohl_cond_asset_category, gb_ref_given = NULL)
ohl_cond_asset_category |
String The type of Pole asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV switchgear
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
environmental_cof_ohl_cond(ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor")
environmental_cof_ohl_cond(ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor")
This function calculates environmental consequences of failure Outputted in DKK
environmental_cof_ohl_cond_50kv(gb_ref_given = NULL)
environmental_cof_ohl_cond_50kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_ohl_cond_50kv()
environmental_cof_ohl_cond_50kv()
This function calculates environmental consequences of failure
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().
environmental_cof_ohl_fittings_50kv(gb_ref_given = NULL)
environmental_cof_ohl_fittings_50kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 50kv fittings Outputted in DKK.
environmental_cof_ohl_fittings_50kv()
environmental_cof_ohl_fittings_50kv()
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().
environmental_cof_pillar_04kv(gb_ref_given = NULL)
environmental_cof_pillar_04kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV pillar Outputted in DKK.
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
environmental_cof_pillar_04kv()
environmental_cof_pillar_04kv()
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().
environmental_cof_poles(pole_asset_category, gb_ref_given = NULL)
environmental_cof_poles(pole_asset_category, gb_ref_given = NULL)
pole_asset_category |
String The type of pole asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Poles
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
environmental_cof_poles(pole_asset_category = "33kV Pole")
environmental_cof_poles(pole_asset_category = "33kV Pole")
This function calculates environmental consequences of failure
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric.
Financial consequences of failure for Poles OHL support 50kV
Outputted in DKK.
environmental_cof_poles_ohl_support_50kv(gb_ref_given = NULL)
environmental_cof_poles_ohl_support_50kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_poles_ohl_support_50kv()
environmental_cof_poles_ohl_support_50kv()
This function calculates environmental consequences of failure.
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
Financial consequences of failure for relay
environmental_cof_relay( type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_relay( type_env_factor, prox_water, bunded, gb_ref_given = NULL )
type_env_factor |
String The type environment factor of HV asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_relay( type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_relay( type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure Outputted in DKK
environmental_cof_serviceline(prox_water, bunded, gb_ref_given = NULL)
environmental_cof_serviceline(prox_water, bunded, gb_ref_given = NULL)
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_serviceline(prox_water = 95, bunded = "Yes")
environmental_cof_serviceline(prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().
environmental_cof_sub_cables(sub_cable_asset_category, gb_ref_given = NULL)
environmental_cof_sub_cables(sub_cable_asset_category, gb_ref_given = NULL)
sub_cable_asset_category |
String The type of Submarine cable asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for sub cables
DNO Common Network Asset Indices Methodology (CNAIM), Health & Criticality - Version 2.1, 2017: https://www.ofgem.gov.uk/sites/default/files/docs/2021/04/dno_common_network_asset_indices_methodology_v2.1_final_01-04-2021.pdf
environmental_cof_sub_cables(sub_cable_asset_category = "HV Sub Cable")
environmental_cof_sub_cables(sub_cable_asset_category = "HV Sub Cable")
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric.
Financial consequences of failure for 10kV submarine cables
Outputted in DKK.
environmental_cof_submarine_10kv(gb_ref_given = NULL)
environmental_cof_submarine_10kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_submarine_10kv()
environmental_cof_submarine_10kv()
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric.
Financial consequences of failure for 30kV and 60kV submarine cables
Outputted in DKK.
environmental_cof_submarine_30_60kv(gb_ref_given = NULL)
environmental_cof_submarine_30_60kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
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
environmental_cof_submarine_30_60kv()
environmental_cof_submarine_30_60kv()
This function calculates environmental consequences of failure
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().#'
Outputted in DKK.
environmental_cof_switchgear_30_60kv( ehv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_switchgear_30_60kv( ehv_asset_category, type_env_factor, prox_water, bunded, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV asset category
Options: |
type_env_factor |
String The type environment factor of 30kV and 60kV switchgear
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 30kV and 60kV switchgear
environmental_cof_switchgear_30_60kv(ehv_asset_category = "30kV", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_switchgear_30_60kv(ehv_asset_category = "30kV", type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
environmental_cof_switchgear_primary_10kv( type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_switchgear_primary_10kv( type_env_factor, prox_water, bunded, gb_ref_given = NULL )
type_env_factor |
String The type environment factor of HV asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 10kV switchgear
environmental_cof_switchgear_primary_10kv( type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_switchgear_primary_10kv( type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure.
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
Financial consequences of failure for 10 kV switchgear secondary
environmental_cof_switchgear_secondary_10kv( type_env_factor, prox_water, bunded, gb_ref_given = NULL )
environmental_cof_switchgear_secondary_10kv( type_env_factor, prox_water, bunded, gb_ref_given = NULL )
type_env_factor |
String The type environment factor of HV asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_switchgear_secondary_10kv( type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
environmental_cof_switchgear_secondary_10kv( type_env_factor = "Oil", prox_water = 95, bunded = "Yes")
This function calculates environmental consequences of failure
Environmental consequences of failure is used in
the derivation of consequences of failure see cof
().
environmental_cof_tower_ohl_support_50kv(gb_ref_given = NULL)
environmental_cof_tower_ohl_support_50kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for tower ohl support 50 kV Outputted in DKK.
environmental_cof_tower_ohl_support_50kv()
environmental_cof_tower_ohl_support_50kv()
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().
environmental_cof_towers(tower_asset_category, gb_ref_given = NULL)
environmental_cof_towers(tower_asset_category, gb_ref_given = NULL)
tower_asset_category |
String The type of tower asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for towers
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
environmental_cof_towers(tower_asset_category = "33kV Tower")
environmental_cof_towers(tower_asset_category = "33kV Tower")
This function calculates environmental consequences of failure Outputted in DKK.
environmental_cof_transformer_30_60kv( tf_asset_category, prox_water, bunded, size_kva_mva = NULL, gb_ref_given = NULL )
environmental_cof_transformer_30_60kv( tf_asset_category, prox_water, bunded, size_kva_mva = NULL, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
size_kva_mva |
Numeric The MVA KVA rating for the transformer |
gb_ref_given |
optional parameter to use custom reference values |
environmental_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", prox_water = 95, bunded = "Yes", size_kva_mva = 20)
environmental_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", prox_water = 95, bunded = "Yes", size_kva_mva = 20)
This function calculates environmental consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Environmental consequences
of failure is used in
the derivation of consequences of failure see cof
().#' @return Numeric. Financial consequences of failure for LV switchgear
environmental_cof_transformers( tf_asset_category, prox_water, bunded, size_kva_mva = NULL, size_conversion = NULL, gb_ref_given = NULL )
environmental_cof_transformers( tf_asset_category, prox_water, bunded, size_kva_mva = NULL, size_conversion = NULL, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer asset category
Options: |
prox_water |
Numeric. Specify the proximity to a water course in meters.
A setting of |
bunded |
String. Options: |
size_kva_mva |
Numeric The MVA KVA rating for the transformer |
size_conversion |
String The size conversion for the transformer |
gb_ref_given |
optional parameter to use custom reference values |
DNO Common Network Asset Indices Methodology (CNAIM), Health & Criticality - Version 1.1, 2017: https://www.ofgem.gov.uk/sites/default/files/docs/2021/04/dno_common_network_asset_indices_methodology_v2.1_final_01-04-2021.pdf
environmental_cof_transformers(tf_asset_category = "33kV Transformer (GM)", prox_water = 95, bunded = "Yes", size_kva_mva = 20, size_conversion = "33/20kV")
environmental_cof_transformers(tf_asset_category = "33kV Transformer (GM)", prox_water = 95, bunded = "Yes", size_kva_mva = 20, size_conversion = "33/20kV")
This function calculates the expected life of an electric network asset measured in years when it would be expected to first observe significant deterioration. The expected life is derived based on the assets normal expected life, duty factor and location factor. See section 6.1.4 on page 36 in CNAIM (2021).
expected_life(normal_expected_life, duty_factor, location_factor)
expected_life(normal_expected_life, duty_factor, location_factor)
normal_expected_life |
Numeric. The number of years a new asset is expected to normally last. I.e. technical life time. See page 107, table 20 in CNAIM (2021). |
duty_factor |
Numeric. E.g. the output returned by the function
|
location_factor |
Numeric. The output returned by the function
|
Numeric. Expected life.
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
# An asset e.g. a transformer with an expcted life of 50 years expected_life(normal_expected_life = 50, duty_factor = 1, location_factor = 1)
# An asset e.g. a transformer with an expcted life of 50 years expected_life(normal_expected_life = 50, duty_factor = 1, location_factor = 1)
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
f_cof_transformer_11kv(kva = "Default", type = "Default", gb_ref_given = NULL)
f_cof_transformer_11kv(kva = "Default", type = "Default", gb_ref_given = NULL)
kva |
Numeric. The rated transformer capacity measured in kVA
for a 6.6/11 kV transformer. Rated capacity is used to derive the
type financial factor. For a general description of type financial factor see
section 7.3.3.1 on page 80 in CNAIM (2021). A setting of |
type |
String. Relates to the accessibility of the transformer
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for a 6.6/11 kV transformer.
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
# Financial consequences of failure for a 6.6/11 kV transformer f_cof_transformer_11kv(kva = 700, type = "Default")
# Financial consequences of failure for a 6.6/11 kV transformer f_cof_transformer_11kv(kva = 700, type = "Default")
This function calculates the FFA test modifier based on the levels of furfuraldehyde in the transformer oil. This function applies for 33/10kV, 66/10kV and 132kV transformers. See e.g. section 6.13 on page 71 in CNAIM (2021).
ffa_test_modifier(furfuraldehyde = "Default", gb_ref_given = NULL)
ffa_test_modifier(furfuraldehyde = "Default", gb_ref_given = NULL)
furfuraldehyde |
Numeric. Refers to the furfuraldehyde level in the
transformer oil. furfuraldehyde levels are measured in ppm.
A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Data table.
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
# FFA test modifier ffa_test_modifier(furfuraldehyde = 50)
# FFA test modifier ffa_test_modifier(furfuraldehyde = 50)
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in (DKK).
financial_cof_board_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria, gb_ref_given = NULL )
financial_cof_board_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria, gb_ref_given = NULL )
type_financial_factor_criteria |
String Type Financial factor criteria for 0.4kV board
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for 0.4kV board
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV board
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
financial_cof_board_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria = "Type A")
financial_cof_board_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria = "Type A")
This function calculates financial consequences of failure Outputted in DKK
financial_cof_cables_04_10kv(hv_asset_category, gb_ref_given = NULL)
financial_cof_cables_04_10kv(hv_asset_category, gb_ref_given = NULL)
hv_asset_category |
String The type of HV asset category
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV and 10kV UG cables
financial_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)")
financial_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
ehv_asset_category = c("30kV UG Cable (Gas)", "60kV UG Cable (Gas)",
"30kV UG Cable (Non Pressurised)", "60kV UG Cable (Non Pressurised)",
"30kV UG Cable (Oil)", "60kV UG Cable (Oil)")
. The default setting is
ehv_asset_category = "60kV UG Cable (Gas)"
.
financial_cof_cables_60_30kv(ehv_asset_category, gb_ref_given = NULL)
financial_cof_cables_60_30kv(ehv_asset_category, gb_ref_given = NULL)
ehv_asset_category |
Asset category for the analysis |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV switchgear
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
financial_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)")
financial_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_ehv_cables(ehv_asset_category, gb_ref_given = NULL)
financial_cof_ehv_cables(ehv_asset_category, gb_ref_given = NULL)
ehv_asset_category |
String The type of EHV cable distribution asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV switchgear
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
financial_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)")
financial_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_ehv_fittings( ehv_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_ehv_fittings( ehv_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV asset category
Options: |
type_financial_factor_criteria |
String. Type Financial factor criteria for EHV fittings
|
access_factor_criteria |
String. Asses Financial factor criteria for EHV fittings
setting (cf. table 221, page 180, CNAIM, 2021).
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV fittings
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
financial_cof_ehv_fittings(ehv_asset_category = "33kV Fittings", type_financial_factor_criteria = "Tension", access_factor_criteria = "Type A")
financial_cof_ehv_fittings(ehv_asset_category = "33kV Fittings", type_financial_factor_criteria = "Tension", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_ehv_switchgear( ehv_asset_category, access_factor_criteria, gb_ref_given = NULL )
financial_cof_ehv_switchgear( ehv_asset_category, access_factor_criteria, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV swicthgear & 132kV CB
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for EHV swicthgear & 132kV CB
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV swicthgear & 132kV CB
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
financial_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", access_factor_criteria = "Type A")
financial_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_hv_switchgear_distribution( hv_asset_category, access_factor_criteria, gb_ref_given = NULL )
financial_cof_hv_switchgear_distribution( hv_asset_category, access_factor_criteria, gb_ref_given = NULL )
hv_asset_category |
String The type of HV switchgear distribution asset category
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for HV switchgear
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV switchgear
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
financial_cof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", access_factor_criteria = "Type A")
financial_cof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_hv_switchgear_primary( hv_asset_category, access_factor_criteria, gb_ref_given = NULL )
financial_cof_hv_switchgear_primary( hv_asset_category, access_factor_criteria, gb_ref_given = NULL )
hv_asset_category |
String The type of HV switchgear distribution asset category
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for HV switchgear
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for HV switchgear primary
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
financial_cof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", access_factor_criteria = "Type A")
financial_cof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_lv_switchgear_and_other( lv_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_lv_switchgear_and_other( lv_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category
Options: |
type_financial_factor_criteria |
String Type Financial factor criteria for LV switchgear
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for LV switchgear
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV switchgear
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
financial_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)", type_financial_factor_criteria = "Asbestos clad", access_factor_criteria = "Type A")
financial_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)", type_financial_factor_criteria = "Asbestos clad", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_lv_ugb(lv_asset_category, gb_ref_given = NULL)
financial_cof_lv_ugb(lv_asset_category, gb_ref_given = NULL)
lv_asset_category |
String The type of LV asset category
Option: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV UGB
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
financial_cof_lv_ugb(lv_asset_category = "LV UGB")
financial_cof_lv_ugb(lv_asset_category = "LV UGB")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_ohl_cond( ohl_cond_asset_category, access_factor_criteria, gb_ref_given = NULL )
financial_cof_ohl_cond( ohl_cond_asset_category, access_factor_criteria, gb_ref_given = NULL )
ohl_cond_asset_category |
String The type of Pole asset category
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for Pole
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Poles
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
financial_cof_ohl_cond( ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor", access_factor_criteria = "Type A")
financial_cof_ohl_cond( ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor", access_factor_criteria = "Type A")
This function calculates financial consequences of failure Outputted in DKK
financial_cof_ohl_cond_50kv(access_factor_criteria, gb_ref_given = NULL)
financial_cof_ohl_cond_50kv(access_factor_criteria, gb_ref_given = NULL)
access_factor_criteria |
String. Asses Financial factor criteria for
Overhead Line Conductors.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Overhead Line Conductors
financial_cof_ohl_cond_50kv( access_factor_criteria = "Type A")
financial_cof_ohl_cond_50kv( access_factor_criteria = "Type A")
This function calculates financial consequences of failure.
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK
financial_cof_ohl_fittings_50kv( type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_ohl_fittings_50kv( type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
type_financial_factor_criteria |
String. Type Financial factor criteria for EHV fittings
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for EHV fittings
setting. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV fittings
financial_cof_ohl_fittings_50kv( type_financial_factor_criteria = "Tension", access_factor_criteria = "Type A")
financial_cof_ohl_fittings_50kv( type_financial_factor_criteria = "Tension", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_pillar_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria, gb_ref_given = NULL )
financial_cof_pillar_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria, gb_ref_given = NULL )
type_financial_factor_criteria |
String Type Financial factor criteria for 0.4kV Pillar
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for 0.4kV Pillar
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV Pillar
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
financial_cof_pillar_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria = "Type A")
financial_cof_pillar_04kv( type_financial_factor_criteria = "Asbestos clad", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_poles( pole_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_poles( pole_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
pole_asset_category |
String The type of pole asset category
Options: |
type_financial_factor_criteria |
String. Type Financial factor criteria for Pole
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for Pole
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Poles
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
financial_cof_poles(pole_asset_category = "33kV Pole", type_financial_factor_criteria = "Small footprint steel masts", access_factor_criteria = "Type A")
financial_cof_poles(pole_asset_category = "33kV Pole", type_financial_factor_criteria = "Small footprint steel masts", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_poles_ohl_support_50kv( pole_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_poles_ohl_support_50kv( pole_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
pole_asset_category |
String The type of Pole asset category |
type_financial_factor_criteria |
String. Type Financial factor criteria for Pole
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for Pole
setting.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Poles
financial_cof_poles_ohl_support_50kv( type_financial_factor_criteria = "Small footprint steel masts", access_factor_criteria = "Type A")
financial_cof_poles_ohl_support_50kv( type_financial_factor_criteria = "Small footprint steel masts", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_relay(access_factor_criteria, gb_ref_given = NULL)
financial_cof_relay(access_factor_criteria, gb_ref_given = NULL)
access_factor_criteria |
String. Asses Financial factor criteria for relay
setting. Options: |
gb_ref_given |
optional parameter to use custom reference values |
financial_cof_relay(access_factor_criteria = "Type A")
financial_cof_relay(access_factor_criteria = "Type A")
This function calculates financial consequences of failure Outputted in DKK
financial_cof_serviceline(gb_ref_given = NULL)
financial_cof_serviceline(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for service line
financial_cof_serviceline()
financial_cof_serviceline()
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_sub_cables(sub_cable_asset_category, gb_ref_given = NULL)
financial_cof_sub_cables(sub_cable_asset_category, gb_ref_given = NULL)
sub_cable_asset_category |
String The type of Submarine cable asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Sub cables
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
financial_cof_sub_cables(sub_cable_asset_category = "HV Sub Cable")
financial_cof_sub_cables(sub_cable_asset_category = "HV Sub Cable")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_submarine_cables_10kv(gb_ref_given = NULL)
financial_cof_submarine_cables_10kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 10kV submarine cables
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
financial_cof_submarine_cables_10kv()
financial_cof_submarine_cables_10kv()
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_submarine_cables_30_60kv(gb_ref_given = NULL)
financial_cof_submarine_cables_30_60kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 30kV and 60kV submarine cables
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
financial_cof_submarine_cables_30_60kv()
financial_cof_submarine_cables_30_60kv()
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_switchgear_30_60kv( ehv_asset_category, access_factor_criteria, gb_ref_given = NULL )
financial_cof_switchgear_30_60kv( ehv_asset_category, access_factor_criteria, gb_ref_given = NULL )
ehv_asset_category |
String The type of 30kV and 60kV switchgear
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for 30kV and 60kV switchgear
setting. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 30kV and 60kV switchgear
financial_cof_switchgear_30_60kv(ehv_asset_category = "30kV", access_factor_criteria = "Type A")
financial_cof_switchgear_30_60kv(ehv_asset_category = "30kV", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_switchgear_primary_10kv( access_factor_criteria, gb_ref_given = NULL )
financial_cof_switchgear_primary_10kv( access_factor_criteria, gb_ref_given = NULL )
access_factor_criteria |
String. Asses Financial factor criteria for 10KV switchgear
setting. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for HV switchgear primary
financial_cof_switchgear_primary_10kv(access_factor_criteria = "Type A")
financial_cof_switchgear_primary_10kv(access_factor_criteria = "Type A")
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_switchgear_secondary_10kv( access_factor_criteria, gb_ref_given = NULL )
financial_cof_switchgear_secondary_10kv( access_factor_criteria, gb_ref_given = NULL )
access_factor_criteria |
String. Asses Financial factor criteria
for 10 kV Swicthgear Secondary setting.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
financial_cof_switchgear_secondary_10kv( access_factor_criteria = "Type A")
financial_cof_switchgear_secondary_10kv( access_factor_criteria = "Type A")
This function calculates financial consequences of failure
Financial consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
financial_cof_tower_ohl_support_50kv( type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_tower_ohl_support_50kv( type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
type_financial_factor_criteria |
String The type financial factor for Tower
Options: |
access_factor_criteria |
String. Asses Financial factor criteria for Tower
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for tower ohl support 50 kV
financial_cof_tower_ohl_support_50kv( type_financial_factor_criteria = "Suspension", access_factor_criteria = "Type A")
financial_cof_tower_ohl_support_50kv( type_financial_factor_criteria = "Suspension", access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_towers( tower_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
financial_cof_towers( tower_asset_category, type_financial_factor_criteria, access_factor_criteria, gb_ref_given = NULL )
tower_asset_category |
String The type of tower asset category
Options: |
type_financial_factor_criteria |
String The type financial factor for Tower
|
access_factor_criteria |
String. Asses Financial factor criteria for Tower
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Poles
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
financial_cof_towers(tower_asset_category = "33kV Tower", type_financial_factor_criteria = "Suspension", access_factor_criteria = "Type A")
financial_cof_towers(tower_asset_category = "33kV Tower", type_financial_factor_criteria = "Suspension", access_factor_criteria = "Type A")
This function calculates financial consequences of failure Outputted in DKK.
financial_cof_transformer_30_60kv( tf_asset_category, type_financial_factor_kva_mva = NULL, access_factor_criteria, gb_ref_given = NULL )
financial_cof_transformer_30_60kv( tf_asset_category, type_financial_factor_kva_mva = NULL, access_factor_criteria, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer asset category
Options: |
type_financial_factor_kva_mva |
Numeric The type financial factor kVA MVA for Transformer |
access_factor_criteria |
String. Asses Financial factor criteria for Transformer
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Transformer
financial_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", type_financial_factor_kva_mva = 20, access_factor_criteria = "Type A")
financial_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", type_financial_factor_kva_mva = 20, access_factor_criteria = "Type A")
This function calculates financial consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Financial consequences
of failure is used in
the derivation of consequences of failure see cof
().
financial_cof_transformers( tf_asset_category, type_financial_factor_size = NULL, type_financial_factor_kva_mva = NULL, access_factor_criteria, gb_ref_given = NULL )
financial_cof_transformers( tf_asset_category, type_financial_factor_size = NULL, type_financial_factor_kva_mva = NULL, access_factor_criteria, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer asset category
Options: |
type_financial_factor_size |
String The type financial factor size for Transformer |
type_financial_factor_kva_mva |
Numeric The type financial factor kVA MVA for Transformer |
access_factor_criteria |
String. Asses Financial factor criteria for Transformer setting (cf. table 221, page 180, CNAIM, 2021). |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for Transformer
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
financial_cof_transformers(tf_asset_category = "33kV Transformer (GM)", type_financial_factor_size = "33/20kV, CMR equivalent", type_financial_factor_kva_mva = 20, access_factor_criteria = "Type A")
financial_cof_transformers(tf_asset_category = "33kV Transformer (GM)", type_financial_factor_size = "33/20kV, CMR equivalent", type_financial_factor_kva_mva = 20, access_factor_criteria = "Type A")
This function calculates the health score
factor for all asset categories exclusive the assets EHV
and 132kV transformers. For EHV and 132kV transformers see
mmi
(). The function combines observed and measured
condition factors using the simplified maximum and
multiple increment (MMI) technique to
construct the health score factor (cf. CNAIM, 2021, page 56, table 9).
health_score_excl_ehv_132kv_tf( observed_condition_factor, measured_condition_factor )
health_score_excl_ehv_132kv_tf( observed_condition_factor, measured_condition_factor )
observed_condition_factor |
Numeric. |
measured_condition_factor |
Numeric. |
Numeric. Health score factor.
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
# An asset with an observed condition factor of 1 and a measured condition # factor of 0.33 health_score_excl_ehv_132kv_tf(observed_condition_factor = 1, measured_condition_factor = 0.33)
# An asset with an observed condition factor of 1 and a measured condition # factor of 0.33 health_score_excl_ehv_132kv_tf(observed_condition_factor = 1, measured_condition_factor = 0.33)
Calculating the initial health score for a given asset. See section 6.1.6 on page 36 in CNAIM (2021).
initial_health(b1, age)
initial_health(b1, age)
b1 |
Numeric. The output returned by the function
|
age |
Numeric. The crurrent age of the asset. |
Numeric. Initial health for an electric network asset.
DNO Common Network Asset Indices Methodology (CNAIM), Healh & 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
# 6.6/ 11 kv transformer age 10 years and an initial age rate of 0.05 initial_health(b1 = 0.05, age = 10)
# 6.6/ 11 kv transformer age 10 years and an initial age rate of 0.05 initial_health(b1 = 0.05, age = 10)
This function calculates the location factor for
an electric network asset based in the specific location of the asset.
See section 6.4 on page 46 in CNAIM (2021). For calculating the location
factor for submarine cables please see the function
location_factor_sub()
. Note the location factor for all other
cables are always equal to 1 hence the function will return a location
factor of 1 for other cables than submarine cables.
location_factor( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", asset_type = "6.6/11kV Transformer (GM)", sub_division = NULL, gb_ref_given = NULL )
location_factor( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", asset_type = "6.6/11kV Transformer (GM)", sub_division = NULL, gb_ref_given = NULL )
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.
|
asset_type |
String.
A sting that refers to the specific asset category.
For LV UGB and non-submarine cables a location factor of 1 is assigned.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sub division in the asset category |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Location factor
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
# Location factor for a 6.6/11 kV Transformer with default values location_factor(placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", asset_type = "6.6/11kV Transformer (GM)")
# Location factor for a 6.6/11 kV Transformer with default values location_factor(placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", asset_type = "6.6/11kV Transformer (GM)")
This function calculates the location factor for
submarine cables based in the specific location of the cable.
See section 6.5 on page 48 in CNAIM (2021). For calculating the location
factor for all other network assets please see the function
location_factor()
.
location_factor_sub( topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", gb_ref_given = NULL )
location_factor_sub( topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", gb_ref_given = NULL )
topography |
String. Describe the topography around the submarine cable.
Options:
|
situation |
String. Descibes how the submarine cable af fixed to the
sea floor.
Options:
|
wind_wave |
Numeric.
Options:
|
intensity |
String. Combined wave and current energy factor.
Options:
|
landlocked |
String. Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Location factor
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
# Location factor for a non-landlocked submarine cable location_factor_sub(topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no")
# Location factor for a non-landlocked submarine cable location_factor_sub(topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no")
This function manipulates the data structure before inputting into javascript D3 risk matrix visualization
matrix_adjusted_circles(risk_data_matrix, dots_vector, dot_radius)
matrix_adjusted_circles(risk_data_matrix, dots_vector, dot_radius)
risk_data_matrix |
Long format matrix data. |
dots_vector |
Coordinates of the dots. |
dot_radius |
Radius of the dots. |
Long format matrix data. circles for D3 matrix visualization adjusted
This function manipulates the data structure before inputting into javascript D3 risk matrix visualization
matrix_adjusted_intervals(risk_data_matrix, x_intervals, y_intervals)
matrix_adjusted_intervals(risk_data_matrix, x_intervals, y_intervals)
risk_data_matrix |
Long format matrix data. |
x_intervals |
An array of x spacing in percent (sum to 100) |
y_intervals |
An array of y spacing in percent (sum to 100) |
Long format matrix data. intervals for matrix D3 visualization adjusted
This function returns a combined factor using a maximum and
multiple increment (MMI) technique
(cf. CNAIM, 2021. page 54, section 6.7.2). The function can be used
to derive the health score factor for EHV and 132kV transformers.
For deriviation of the health score factor for all other assets see
health_score_excl_ehv_132kv_tf
.
To derive the health score factor for EHV and 132kV transformers one needs
to use mmi
() to derive the health score factor for
the main transformer and for the tapchanger respectively.
The constants factor_divider_1
, factor_divider_2
and max_no_combined_factors
are all available in the lookup
table 10 and 11 on page 57 and 58 in CNAIM (2021).
For an in dept description see also section 6.8 on page 57 in CNAIM (2021).
The mmi
() can also be used in the derivation of observed and measured
condition factors for all assets, using measured and observed
input factors.
The constants factor_divider_1
, factor_divider_2
and
max_no_combined_factors
can be found in table 13 on page 63
(observed condition factors) and in table 15 on page 67
(measured condition factors).
mmi(factors, factor_divider_1, factor_divider_2, max_no_combined_factors)
mmi(factors, factor_divider_1, factor_divider_2, max_no_combined_factors)
factors |
Numeric vector. Factors to me combined. |
factor_divider_1 |
Numeric. Constant that specifies the degree to which additional “good” or “bad” factors are able further drive the combined factor. |
factor_divider_2 |
Numeric. Constant that specifies the degree to which additional “good” or “bad” factors are able further drive the combined factor. |
max_no_combined_factors |
Numeric. Specifies how many factors are able to simultaneously affect the combined factor. |
Numeric. Combined factor.
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
mmi(factors = c(1, 1.5), factor_divider_1 = 1.5, factor_divider_2 = 1.5, max_no_combined_factors = 1)
mmi(factors = c(1, 1.5), factor_divider_1 = 1.5, factor_divider_2 = 1.5, max_no_combined_factors = 1)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
n_cof_excl_ehv_132kv_tf( asset_type_ncf, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
n_cof_excl_ehv_132kv_tf( asset_type_ncf, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
asset_type_ncf |
String.
|
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
# Network cost of failure for a 6.6/11 kV transformer with 750 customers # and 51 kVA per customer. n_cof_excl_ehv_132kv_tf(asset_type_ncf = "6.6/11kV Transformer (GM)", no_customers = 750, kva_per_customer = 51)
# Network cost of failure for a 6.6/11 kV transformer with 750 customers # and 51 kVA per customer. n_cof_excl_ehv_132kv_tf(asset_type_ncf = "6.6/11kV Transformer (GM)", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for 0.4kV board
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
Outputted in DKK
is used in the derivation of consequences of failure see cof
().
network_cof_board_04kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_board_04kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_board_04kv(no_customers = 750, kva_per_customer = 51)
network_cof_board_04kv(no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
0.4kV and 10kV UG cables, outputted in DKK
hv_asset_category = c("10kV UG Cable (Oil)",
"10kV UG Cable (Non Pressurised)", "0.4kV UG Cable (Non Pressurised)"
.
network_cof_cables_04_10kv( hv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_cables_04_10kv( hv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
hv_asset_category |
String The type of HV asset category |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)", actual_load_mva = 15)
network_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
ehv_asset_category = c("30kV UG Cable (Gas)", "60kV UG Cable (Gas)",
"30kV UG Cable (Non Pressurised)", "60kV UG Cable (Non Pressurised)",
"30kV UG Cable (Oil)", "60kV UG Cable (Oil)")
. The default setting is
ehv_asset_category = "60kV UG Cable (Gas)"
.
network_cof_cables_60_30kv( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_cables_60_30kv( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
ehv_asset_category |
Asset category for the analysis |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)", actual_load_mva = 15)
network_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_ehv_cables( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_ehv_cables( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV cable distribution asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)", actual_load_mva = 15)
network_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)", actual_load_mva = 15)
This function calculates network cost of failure for
EHV fittings
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_ehv_fittings( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_ehv_fittings( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_ehv_fittings(ehv_asset_category = "33kV Fittings", actual_load_mva = 15)
network_cof_ehv_fittings(ehv_asset_category = "33kV Fittings", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_ehv_pole( pole_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_ehv_pole( pole_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
pole_asset_category |
String The type of pole asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_ehv_pole(pole_asset_category = "33kV Pole", actual_load_mva = 15)
network_cof_ehv_pole(pole_asset_category = "33kV Pole", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_ehv_sub_cable( sub_cable_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_ehv_sub_cable( sub_cable_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
sub_cable_asset_category |
String The type of Submarine cable asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_ehv_sub_cable(sub_cable_asset_category = "EHV Sub Cable", actual_load_mva = 15, secure = TRUE)
network_cof_ehv_sub_cable(sub_cable_asset_category = "EHV Sub Cable", actual_load_mva = 15, secure = TRUE)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_ehv_switchgear( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_ehv_switchgear( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV swicthgear & 132kV CB
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", actual_load_mva = 15)
network_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", actual_load_mva = 15)
This function calculates network cost of failure for Poles
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_hv_lv_poles( pole_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_hv_lv_poles( pole_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
pole_asset_category |
String The type of pole asset category
Options: |
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_hv_lv_poles(pole_asset_category = "20kV Poles", no_customers = 750, kva_per_customer = 51)
network_cof_hv_lv_poles(pole_asset_category = "20kV Poles", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
Sub cables
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_hv_sub_cables( sub_cable_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_hv_sub_cables( sub_cable_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
sub_cable_asset_category |
String The type of Submarine cable asset category
Option: |
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_hv_sub_cables(sub_cable_asset_category = "HV Sub Cable", no_customers = 750, kva_per_customer = 51)
network_cof_hv_sub_cables(sub_cable_asset_category = "HV Sub Cable", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_hv_switchgear_distribution( hv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_hv_switchgear_distribution( hv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
hv_asset_category |
String The type of HV switchgear distribution asset category
Options: |
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_hv_switchgear_distribution(hv_asset_category = "LV Board (WM)", no_customers = 750, kva_per_customer = 51)
network_cof_hv_switchgear_distribution(hv_asset_category = "LV Board (WM)", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_hv_switchgear_primary( hv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_hv_switchgear_primary( hv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
hv_asset_category |
String The type of HV asset category
Options: |
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_hv_switchgear_primary(hv_asset_category = "6.6/11kV CB (GM) Secondary", no_customers = 750, kva_per_customer = 51)
network_cof_hv_switchgear_primary(hv_asset_category = "6.6/11kV CB (GM) Secondary", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_lv_switchgear_and_other( lv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_lv_switchgear_and_other( lv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category
Options: |
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)", no_customers = 750, kva_per_customer = 51)
network_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_lv_ugb( lv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_lv_ugb( lv_asset_category, no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category
Option: |
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_lv_ugb(lv_asset_category = "LV UGB", no_customers = 750, kva_per_customer = 51)
network_cof_lv_ugb(lv_asset_category = "LV UGB", no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_ohl_cond( ohl_cond_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_ohl_cond( ohl_cond_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
ohl_cond_asset_category |
String The type of Pole asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_ohl_cond(ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor", actual_load_mva = 15)
network_cof_ohl_cond(ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor", actual_load_mva = 15)
This function calculates network cost of failure Outputted in DKK
network_cof_ohl_cond_50kv(actual_load_mva, secure = T, gb_ref_given = NULL)
network_cof_ohl_cond_50kv(actual_load_mva, secure = T, gb_ref_given = NULL)
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_ohl_cond_50kv( actual_load_mva = 15)
network_cof_ohl_cond_50kv( actual_load_mva = 15)
This function calculates network cost of failure for
50kV fittings
Network cost of failure is used in the derivation of consequences of failure.
cof
().
Outputted in DKK.
network_cof_ohl_fittings_50kv(actual_load_mva, secure = T, gb_ref_given = NULL)
network_cof_ohl_fittings_50kv(actual_load_mva, secure = T, gb_ref_given = NULL)
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_ohl_fittings_50kv( actual_load_mva = 15)
network_cof_ohl_fittings_50kv( actual_load_mva = 15)
This function calculates network cost of failure for 0.4kV Pillar
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_pillar_04kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_pillar_04kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_pillar_04kv(no_customers = 750, kva_per_customer = 51)
network_cof_pillar_04kv(no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
Network cost of failure is used in the derivation
of consequences of failure see cof
().
Outputted in DKK.
network_cof_poles_ohl_support_50kv( pole_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_poles_ohl_support_50kv( pole_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
pole_asset_category |
String The type of Pole asset category |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_poles_ohl_support_50kv( actual_load_mva = 15)
network_cof_poles_ohl_support_50kv( actual_load_mva = 15)
This function calculates network cost of failure for Relays
Network cost of failure
is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_relay( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_relay( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_relay( no_customers = 100, kva_per_customer = 40)
network_cof_relay( no_customers = 100, kva_per_customer = 40)
This function calculates network cost of failure for service line, outputted in DKK
network_cof_serviceline(actual_load_mva, secure = T, gb_ref_given = NULL)
network_cof_serviceline(actual_load_mva, secure = T, gb_ref_given = NULL)
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_serviceline(actual_load_mva = 0.5)
network_cof_serviceline(actual_load_mva = 0.5)
This function calculates network cost of failure for
Sub cables
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_submarine_cables_10kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_submarine_cables_10kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_submarine_cables_10kv( no_customers = 250, kva_per_customer = 51)
network_cof_submarine_cables_10kv( no_customers = 250, kva_per_customer = 51)
This function calculates network cost of failure for
Sub cables
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_submarine_cables_30_60kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_submarine_cables_30_60kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_submarine_cables_30_60kv( no_customers = 250, kva_per_customer = 51)
network_cof_submarine_cables_30_60kv( no_customers = 250, kva_per_customer = 51)
This function calculates network cost of failure for
30kV and 60kV switchgear.
Network cost of failureis used in the derivation
of consequences of failure see cof
().
Outputted in DKK.
network_cof_switchgear_30_60kv( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_switchgear_30_60kv( ehv_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
ehv_asset_category |
String The type of 30kV and 60kV switchgear category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_switchgear_30_60kv(ehv_asset_category = "30kV", actual_load_mva = 15)
network_cof_switchgear_30_60kv(ehv_asset_category = "30kV", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
Network cost of failure is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_switchgear_primary_10kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_switchgear_primary_10kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The numner of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_switchgear_primary_10kv( no_customers = 750, kva_per_customer = 51)
network_cof_switchgear_primary_10kv( no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
10kV Switchgear Secondary
Network cost of failure
is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_switchgear_secondary_10kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
network_cof_switchgear_secondary_10kv( no_customers, kva_per_customer = "Default", gb_ref_given = NULL )
no_customers |
Numeric. The number of customers fed by an individual asset. |
kva_per_customer |
Numeric. If the asset have an exceptionally high
demand per customer type in kVA per customer. A setting of |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_switchgear_secondary_10kv( no_customers = 750, kva_per_customer = 51)
network_cof_switchgear_secondary_10kv( no_customers = 750, kva_per_customer = 51)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_tower( tower_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_tower( tower_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
tower_asset_category |
String The type of tower asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_tower(tower_asset_category = "33kV Tower", actual_load_mva = 15)
network_cof_tower(tower_asset_category = "33kV Tower", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
Network cost of failure
is used in the derivation of consequences of failure see cof
().
Outputted in DKK.
network_cof_tower_ohl_support_50kv( actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_tower_ohl_support_50kv( actual_load_mva, secure = T, gb_ref_given = NULL )
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_tower_ohl_support_50kv( actual_load_mva = 15)
network_cof_tower_ohl_support_50kv( actual_load_mva = 15)
This function calculates network cost of failure for Outputted in DKK.
network_cof_transformer_30_60kv( tf_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_transformer_30_60kv( tf_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
tf_asset_category |
String The type of Tower
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
network_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", actual_load_mva = 15)
network_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", actual_load_mva = 15)
This function calculates network cost of failure for
all asset categories exclusive the assets EHV and 132kV transformers.
(cf. section 7.6, page 87, CNAIM, 2021). Network cost of failure
is used in the derivation of consequences of failure see cof
().
network_cof_transformers( tf_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
network_cof_transformers( tf_asset_category, actual_load_mva, secure = T, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer asset category
Options: |
actual_load_mva |
Numeric. The actual load on the asset |
secure |
Boolean If the asset is in a secure network or not |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Network cost of failure.
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
network_cof_transformers(tf_asset_category = "33kV Transformer (GM)", actual_load_mva = 15)
network_cof_transformers(tf_asset_category = "33kV Transformer (GM)", actual_load_mva = 15)
This function calculates the oil test modifier for 33/10kV, 66/10kV and 132kV transformers and tapchangers. See e.g. section 6.11 on page 68 in CNAIM (2021).
oil_test_modifier( moisture = "Default", acidity = "Default", bd_strength = "Default", transformer_type_all = "20kV Transformer (GM)", gb_ref_given = NULL )
oil_test_modifier( moisture = "Default", acidity = "Default", bd_strength = "Default", transformer_type_all = "20kV Transformer (GM)", gb_ref_given = NULL )
moisture |
Numeric. Refers to the moisture level in the
transformer oil. Moisture levels are measured in ppm.
A setting of |
acidity |
Numeric. Refers to the acidity level in the
transformer oil. Acidity levels are measured in (mgKOH/g).
A setting of |
bd_strength |
Numeric. Refers to the breakdown strength.
Breakdown strength is measured in kV.
A setting of |
transformer_type_all |
String. A sting that refers to the specific
transformer type.
Options:
|
gb_ref_given |
optional parameter to use custom reference values |
Data table.
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
# Oil test modifier oil_test_modifier(moisture = 15, acidity = 0.15, bd_strength = 30, transformer_type_all = "20kV Transformer (GM)")
# Oil test modifier oil_test_modifier(moisture = 15, acidity = 0.15, bd_strength = 30, transformer_type_all = "20kV Transformer (GM)")
This function is plotting the probability of failure for an electric network asset in a percentage.
plot_pof(pof_function = "Default")
plot_pof(pof_function = "Default")
pof_function |
String. Choosing an pof function, Options:
|
# probability of failure curve
# probability of failure curve
This function calculates the current annual probability of failure per kilometer 132kV Switchgear 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).
pof_132kv_cb( cb_asset_category = "132kV CB (Air Insulated Busbars)(ID) (GM)", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_132kv_cb( cb_asset_category = "132kV CB (Air Insulated Busbars)(ID) (GM)", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
cb_asset_category |
String The type of 132kV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
The number of operations for duty factor |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for EHV Swicthgear pof_132kv_cb( cb_asset_category = "132kV CB (Air Insulated Busbars)(ID) (GM)", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default"), "support_structure" = list("Condition Criteria: Observed Condition" = "Default"), "air_systems" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test/ Gas Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default")
# Current annual probability of failure for EHV Swicthgear pof_132kv_cb( cb_asset_category = "132kV CB (Air Insulated Busbars)(ID) (GM)", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default"), "support_structure" = list("Condition Criteria: Observed Condition" = "Default"), "air_systems" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test/ Gas Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default")
This function calculates the current annual probability of failure for 0.4kV Board The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function. A sting that refers to the specific asset category.
pof_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60, gb_ref_given = NULL )
pof_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for 0.4kV board pof_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_cond" = list("Condition Criteria: Observed Condition" = "Default"), "compound_leaks" = list("Condition Criteria: Observed Condition" = "Default"), "internal_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60)
# Current annual probability of failure for 0.4kV board pof_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_cond" = list("Condition Criteria: Observed Condition" = "Default"), "compound_leaks" = list("Condition Criteria: Observed Condition" = "Default"), "internal_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60)
This function calculates the current annual probability of failure for primary substation building and secondary substation building. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_building( substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default", gb_ref_given = NULL )
pof_building( substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default", gb_ref_given = NULL )
substation_type |
String. A sting that refers to the specific
substation type.
Options:
|
material_type |
String. A sting that refers to the specific
material_type.
Options:
|
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the building. |
temperature_reading |
String. Indicating the criticality.
Options:
|
coolers_radiator |
String. Indicating the observed condition of the
coolers/radiators. Options:
|
kiosk |
String. Indicating the observed condition of the
kiosk. Options:
|
cable_boxes |
String. Indicating the observed condition of the
cable boxes. Options:
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life_building |
Numeric.
|
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
pof_building(substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 43, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default")
pof_building(substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 43, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default")
This function calculates the current annual probability of failure per kilometer for a 0.4kV Pex non Pressurised cables. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_cables_04kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, gb_ref_given = NULL )
pof_cables_04kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for 0.4kV non pressurised pex cable, 50 years old pof_cables_04kv_pex( utilisation_pct = 80, operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80)
# Current annual probability of failure for 0.4kV non pressurised pex cable, 50 years old pof_cables_04kv_pex( utilisation_pct = 80, operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80)
This function calculates the current annual probability of failure per kilometer for a Oil non Preesurised cables. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.24, c_value = 1.087, normal_expected_life = 80, gb_ref_given = NULL )
pof_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.24, c_value = 1.087, normal_expected_life = 80, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for 10kV oil cable, 50 years old pof_cables_10kv_oil( utilisation_pct = 80, operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.24, c_value = 1.087, normal_expected_life = 80)
# Current annual probability of failure for 10kV oil cable, 50 years old pof_cables_10kv_oil( utilisation_pct = 80, operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.24, c_value = 1.087, normal_expected_life = 80)
This function calculates the current annual probability of failure per kilometer for a 10kV PEX non Pressurised cables. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, gb_ref_given = NULL )
pof_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for 10kV pex cable, 50 years old pof_cables_10kv_pex( utilisation_pct = 80, operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80)
# Current annual probability of failure for 10kV pex cable, 50 years old pof_cables_10kv_pex( utilisation_pct = 80, operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80)
This function calculates the current annual probability of failure per kilometer for a 132kV cables. 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).
pof_cables_132kv( cable_type = "132kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, gb_ref_given = NULL )
pof_cables_132kv( cable_type = "132kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, gb_ref_given = NULL )
cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sheath and conductor is
made of. Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
leakage |
String. Only applied for oil and gas pressurised cables.
Options:
|
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for # "132kV UG Cable (Non Pressurised)", 50 years old pof_cables_132kV_non <- pof_cables_132kv(cable_type = "132kV UG Cable (Non Pressurised)", sub_division = "Lead sheath - Copper conductor", utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 50) * 100 paste0(sprintf("Probability of failure %.4f", pof_cables_132kV_non), " percent per annum")
# Current annual probability of failure for # "132kV UG Cable (Non Pressurised)", 50 years old pof_cables_132kV_non <- pof_cables_132kv(cable_type = "132kV UG Cable (Non Pressurised)", sub_division = "Lead sheath - Copper conductor", utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 50) * 100 paste0(sprintf("Probability of failure %.4f", pof_cables_132kV_non), " percent per annum")
This function calculates the current annual probability of failure per kilometer for a 30-60kV cables. 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).
pof_cables_60_30kv( cable_type = "60kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, gb_ref_given = NULL )
pof_cables_60_30kv( cable_type = "60kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, gb_ref_given = NULL )
cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sheath and conductor is
made of. Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
leakage |
String. Only applied for oil and gas pressurised cables.
Options:
|
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for # "60kV UG Cable (Non Pressurised)", 50 years old pof_cables_60_30kv(cable_type = "66kV UG Cable (Non Pressurised)", sub_division = "Lead sheath - Copper conductor", utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 50)
# Current annual probability of failure for # "60kV UG Cable (Non Pressurised)", 50 years old pof_cables_60_30kv(cable_type = "66kV UG Cable (Non Pressurised)", sub_division = "Lead sheath - Copper conductor", utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 50)
This function calculates the current annual probability of failure per kilometer for a 33-66kV cables. 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).
pof_cables_66_33kv( cable_type = "66kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, gb_ref_given = NULL )
pof_cables_66_33kv( cable_type = "66kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, gb_ref_given = NULL )
cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sheath and conductor is
made of. Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
leakage |
String. Only applied for oil and gas pressurised cables.
Options:
|
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for # "66kV UG Cable (Non Pressurised)", 50 years old pof_cables_66_33kv(cable_type = "66kV UG Cable (Non Pressurised)", sub_division = "Lead sheath - Copper conductor", utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 50)
# Current annual probability of failure for # "66kV UG Cable (Non Pressurised)", 50 years old pof_cables_66_33kv(cable_type = "66kV UG Cable (Non Pressurised)", sub_division = "Lead sheath - Copper conductor", utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 50)
This function calculates the current annual probability of failure per kilometer EHV Fittings 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).
pof_ehv_fittings( ehv_asset_category = "33kV Fittings", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_ehv_fittings( ehv_asset_category = "33kV Fittings", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for EHV Swicthgear pof_ehv_fittings( ehv_asset_category = "33kV Fittings", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("insulator_elec_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulator_mech_cond" = list("Condition Criteria: Observed Condition" = "Default"), "conductor_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default"), "tower_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("thermal_imaging" = list("Condition Criteria: Thermal Imaging Result" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Result" = "Default")), reliability_factor = "Default")
# Current annual probability of failure for EHV Swicthgear pof_ehv_fittings( ehv_asset_category = "33kV Fittings", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("insulator_elec_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulator_mech_cond" = list("Condition Criteria: Observed Condition" = "Default"), "conductor_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default"), "tower_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("thermal_imaging" = list("Condition Criteria: Thermal Imaging Result" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Result" = "Default")), reliability_factor = "Default")
This function calculates the current annual probability of failure per kilometer EHV Switchgear 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).
pof_ehv_switchgear( ehv_asset_category = "33kV RMU", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_ehv_switchgear( ehv_asset_category = "33kV RMU", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
The number of operations for duty factor |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for EHV Swicthgear pof_ehv_switchgear( ehv_asset_category = "33kV RMU", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default"), "support_structure" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default")
# Current annual probability of failure for EHV Swicthgear pof_ehv_switchgear( ehv_asset_category = "33kV RMU", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default"), "support_structure" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default")
This function calculates the future annual probability of failure per kilometer 0.4kV board. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 0.4kV board pof_future_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_cond" = list("Condition Criteria: Observed Condition" = "Default"), "compound_leaks" = list("Condition Criteria: Observed Condition" = "Default"), "internal_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
# Future annual probability of failure for 0.4kV board pof_future_board_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_cond" = list("Condition Criteria: Observed Condition" = "Default"), "compound_leaks" = list("Condition Criteria: Observed Condition" = "Default"), "internal_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default", k_value = 0.0069, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
This function calculates the future annual probability of failure for primary substation building and secondary substation building. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_building( substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_building( substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default", simulation_end_year = 100, gb_ref_given = NULL )
substation_type |
String. A sting that refers to the specific
substation type.
Options:
|
material_type |
String. A sting that refers to the specific
material_type.
Options:
|
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the building. |
temperature_reading |
String. Indicating the criticality.
Options:
|
coolers_radiator |
String. Indicating the observed condition of the
coolers/radiators. Options:
|
kiosk |
String. Indicating the observed condition of the
kiosk. Options:
|
cable_boxes |
String. Indicating the observed condition of the
cable boxes. Options:
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life_building |
Numeric.
|
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future probability of failure for a Secondary substation Building pof_future_building(substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 1, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default", simulation_end_year = 100)
# Future probability of failure for a Secondary substation Building pof_future_building(substation_type = "Secondary", material_type = "Wood", placement = "Outdoor", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 1, temperature_reading = "Default", coolers_radiator = "Default", kiosk = "Default", cable_boxes = "Default", reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life_building = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 0.4kV PEX non Pressurised cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_cables_04kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_cables_04kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for 0.4kV cable pex, 50 years old pof_future_cables_04kv_pex( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100)
# future annual probability of failure for 0.4kV cable pex, 50 years old pof_future_cables_04kv_pex( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100)
This function calculates the future #' annual probability of failure per kilometer for a 10kV Oil non Preesurised cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.24, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.24, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for 10kV oil cable, 50 years old pof_future_cables_10kv_oil( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.24, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100)
# future annual probability of failure for 10kV oil cable, 50 years old pof_future_cables_10kv_oil( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.24, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100)
This function calculates the future #' annual probability of failure per kilometer for a 10kV PEX non Pressurised cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for 10kV cable pex, 50 years old pof_future_cables_10kv_pex( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100)
# future annual probability of failure for 10kV cable pex, 50 years old pof_future_cables_10kv_pex( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0658, c_value = 1.087, normal_expected_life = 80, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 132kV cables. 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).
pof_future_cables_132kv( cable_type = "132kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_cables_132kv( cable_type = "132kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, simulation_end_year = 100, gb_ref_given = NULL )
cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sheath and conductor is
made of. Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
leakage |
String. Only applied for oil and gas pressurised cables.
Options:
|
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Future probability of failure for 132kV UG Cable (Non Pressurised) pof_future_cables_132kv(cable_type = "132kV UG Cable (Non Pressurised)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = 75, operating_voltage_pct = 50, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 1, simulation_end_year = 100)
# Future probability of failure for 132kV UG Cable (Non Pressurised) pof_future_cables_132kv(cable_type = "132kV UG Cable (Non Pressurised)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = 75, operating_voltage_pct = 50, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 1, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 30-60kV cables. 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).
pof_future_cables_60_30kv( cable_type = "60kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_cables_60_30kv( cable_type = "60kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, simulation_end_year = 100, gb_ref_given = NULL )
cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sheath and conductor is
made of. Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
leakage |
String. Only applied for oil and gas pressurised cables.
Options:
|
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Future probability of failure for 60kV UG Cable (Non Pressurised) pof_future_cables_60_30kv(cable_type = "60kV UG Cable (Non Pressurised)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = 75, operating_voltage_pct = 50, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 1, simulation_end_year = 100)
# Future probability of failure for 60kV UG Cable (Non Pressurised) pof_future_cables_60_30kv(cable_type = "60kV UG Cable (Non Pressurised)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = 75, operating_voltage_pct = 50, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 1, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 33-66kV cables. 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).
pof_future_cables_66_33kv( cable_type = "66kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, simulation_end_year = 100 )
pof_future_cables_66_33kv( cable_type = "66kV UG Cable (Gas)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age, simulation_end_year = 100 )
cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the sheath and conductor is
made of. Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
leakage |
String. Only applied for oil and gas pressurised cables.
Options:
|
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the cable. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
DataFrame. Future probability of failure per annum per kilometre for 33-66kV cables along with future health score
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
# Future probability of failure for 66kV UG Cable (Non Pressurised) pof_future_cables_66_33kv(cable_type = "66kV UG Cable (Non Pressurised)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = 75, operating_voltage_pct = 50, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 1, simulation_end_year = 100)
# Future probability of failure for 66kV UG Cable (Non Pressurised) pof_future_cables_66_33kv(cable_type = "66kV UG Cable (Non Pressurised)", sub_division = "Aluminium sheath - Aluminium conductor", utilisation_pct = 75, operating_voltage_pct = 50, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", leakage = "Default", reliability_factor = "Default", age = 1, simulation_end_year = 100)
This function calculates the future annual probability of failure meters. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for meter pof_future_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 1, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25, simulation_end_year = 100)
# future annual probability of failure for meter pof_future_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 1, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer 33-132kV OHL conductors. 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).
pof_future_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", simulation_end_year = 100, gb_ref_given = NULL )
ohl_conductor |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the conductor is
made of. Options:
|
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 |
Numeric. The current age in years of the conductor. |
conductor_samp |
String. Conductor sampling. Options:
|
corr_mon_survey |
String. Corrosion monitoring survey. Options:
|
visual_cond |
String. Visual condition. Options:
|
midspan_joints |
Integer. Number of midspan joints on the conductor. A span includes all conductors in that span. See page 146, table 141 and 143 in CNAIM (2021). |
reliability_factor |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Future annual probability of failure for 66kV OHL (Tower Line) Conductor pof_future_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", simulation_end_year = 100)
# Future annual probability of failure for 66kV OHL (Tower Line) Conductor pof_future_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer 50kV OHL conductors. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_ohl_cond_50kv( sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", k_value = 0.008, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_ohl_cond_50kv( sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", k_value = 0.008, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100, gb_ref_given = NULL )
sub_division |
String. Refers to material the conductor is
made of. Options:
|
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 |
Numeric. The current age in years of the conductor. |
conductor_samp |
String. Conductor sampling. Options:
|
corr_mon_survey |
String. Corrosion monitoring survey. Options:
|
visual_cond |
String. Visual condition. Options:
|
midspan_joints |
Integer. Number of midspan joints on the conductor. A span includes all conductors in that span. See page 146, table 141 and 143 in CNAIM (2021). |
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 50kV OHL (Tower Line) Conductor pof_future_ohl_cond_50kv( sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", k_value = 0.0080, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100)
# Future annual probability of failure for 50kV OHL (Tower Line) Conductor pof_future_ohl_cond_50kv( sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", k_value = 0.0080, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 50 kV fittings. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_ohl_fittings_50kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0096, c_value = 1.087, normal_expected_life = 40, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_ohl_fittings_50kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0096, c_value = 1.087, normal_expected_life = 40, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100.code |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 50kV fittings pof_future_ohl_fittings_50kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("insulator_elec_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulator_mech_cond" = list("Condition Criteria: Observed Condition" = "Default"), "conductor_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default"), "tower_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("thermal_imaging" = list("Condition Criteria: Thermal Imaging Result" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Result" = "Default")), reliability_factor = "Default", k_value = 0.0096, c_value = 1.087, normal_expected_life = 40, simulation_end_year = 100)
# Future annual probability of failure for 50kV fittings pof_future_ohl_fittings_50kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("insulator_elec_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulator_mech_cond" = list("Condition Criteria: Observed Condition" = "Default"), "conductor_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default"), "tower_fitting_cond" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("thermal_imaging" = list("Condition Criteria: Thermal Imaging Result" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Result" = "Default")), reliability_factor = "Default", k_value = 0.0096, c_value = 1.087, normal_expected_life = 40, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer 0.4kV Pillar. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_pillar_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0046, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_pillar_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0046, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 0.4kV Pillar pof_future_pillar_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_cond" = list("Condition Criteria: Observed Condition" = "Default"), "compound_leaks" = list("Condition Criteria: Observed Condition" = "Default"), "internal_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default", k_value = 0.0046, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
# Future annual probability of failure for 0.4kV Pillar pof_future_pillar_04kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_cond" = list("Condition Criteria: Observed Condition" = "Default"), "compound_leaks" = list("Condition Criteria: Observed Condition" = "Default"), "internal_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default", k_value = 0.0046, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a poles. 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).
pof_future_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, pole_decay = "default", observed_condition_inputs, reliability_factor = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, pole_decay = "default", observed_condition_inputs, reliability_factor = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pole_asset_category |
String The type of asset category |
sub_division |
String. Refers to material the pole is made of. |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
pole_decay |
Numeric Pole Decay |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
Numeric array. Future probability of failure per annum per kilometre for poles.
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
# Future annual probability of failure for HV Poles pof_future_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("visual_pole_cond" = list("Condition Criteria: Pole Top Rot Present?" = "Default"), "pole_leaning" = list("Condition Criteria: Pole Leaning?" = "Default"), "bird_animal_damage" = list("Condition Criteria: Bird/Animal Damage?" = "Default"), "top_rot" = list("Condition Criteria: Pole Top Rot Present?" = "Default")), pole_decay = "Default", reliability_factor = "Default", simulation_end_year = 100)
# Future annual probability of failure for HV Poles pof_future_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("visual_pole_cond" = list("Condition Criteria: Pole Top Rot Present?" = "Default"), "pole_leaning" = list("Condition Criteria: Pole Leaning?" = "Default"), "bird_animal_damage" = list("Condition Criteria: Bird/Animal Damage?" = "Default"), "top_rot" = list("Condition Criteria: Pole Top Rot Present?" = "Default")), pole_decay = "Default", reliability_factor = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a Poles OHL support 50 kV. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_poles_ohl_support_50kv( sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0285, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_poles_ohl_support_50kv( sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0285, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100, gb_ref_given = NULL )
sub_division |
String Sub Division |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for Poles OHL support 50 kV pof_future_poles_ohl_support_50kv( sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("visual_pole_cond" = list("Condition Criteria: Pole Top Rot Present?" = "Default"), "pole_leaning" = list("Condition Criteria: Pole Leaning?" = "Default"), "bird_animal_damage" = list("Condition Criteria: Bird/Animal Damage?" = "Default"), "top_rot" = list("Condition Criteria: Pole Top Rot Present?" = "Default")), measured_condition_inputs = list("pole_decay" = list("Condition Criteria: Degree of Decay/Deterioration" = "Default")), reliability_factor = "Default", k_value = 0.0285, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100)
# Future annual probability of failure for Poles OHL support 50 kV pof_future_poles_ohl_support_50kv( sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("visual_pole_cond" = list("Condition Criteria: Pole Top Rot Present?" = "Default"), "pole_leaning" = list("Condition Criteria: Pole Leaning?" = "Default"), "bird_animal_damage" = list("Condition Criteria: Bird/Animal Damage?" = "Default"), "top_rot" = list("Condition Criteria: Pole Top Rot Present?" = "Default")), measured_condition_inputs = list("pole_decay" = list("Condition Criteria: Degree of Decay/Deterioration" = "Default")), reliability_factor = "Default", k_value = 0.0285, c_value = 1.087, normal_expected_life = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure relay. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_relay( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 30, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_relay( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 30, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for relay pof_future_relay( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 30, simulation_end_year = 100)
# future annual probability of failure for relay pof_future_relay( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 30, simulation_end_year = 100)
This function calculates the future annual probability of failure RTU. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_rtu( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 20, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_rtu( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 20, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for RTU pof_future_rtu( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 1, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 20, simulation_end_year = 100)
# future annual probability of failure for RTU pof_future_rtu( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 1, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 20, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a service line The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_serviceline( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0329, c_value = 1.087, normal_expected_life = 75, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_serviceline( utilisation_pct = "Default", operating_voltage_pct = "Default", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age, k_value = 0.0329, c_value = 1.087, normal_expected_life = 75, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric Utilisation Percentage |
operating_voltage_pct |
Numeric Operating Voltage Percentage |
sheath_test |
String Sheath Test |
partial_discharge |
String Partial Discharge |
fault_hist |
String Fault Histogram |
reliability_factor |
Numeric. |
age |
Numeric. The current age in years of the conductor. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# future annual probability of failure for service line, 50 years old pof_future_serviceline( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0329, c_value = 1.087, normal_expected_life = 75, simulation_end_year = 100)
# future annual probability of failure for service line, 50 years old pof_future_serviceline( utilisation_pct = 80, operating_voltage_pct = 60, sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", reliability_factor = "Default", age = 50, k_value = 0.0329, c_value = 1.087, normal_expected_life = 75, simulation_end_year = 100)
This function calculates the Future annual probability of failure per kilometer for submarine cables. 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).
pof_future_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", simulation_end_year = 100, gb_ref_given = NULL )
sub_cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
topography |
String. Describe the topography around the submarine cable.
Options:
|
situation |
Situation of the cable |
wind_wave |
Numeric.
Options:
|
intensity |
String. Combined wave and current energy factor.
Options:
|
landlocked |
String. Options: |
sheath_test |
String. Indicating the state of the sheath. Options:
|
partial_discharge |
String. Indicating the level of partial discharge.
Options:
|
fault_hist |
Numeric. The calculated fault rate for the cable per annum
per kilometer. A setting of |
condition_armour |
String. Indicating the external condition of the
submarine cables armour. Options:
|
age |
Numeric. The current age in years of the cable. |
reliability_factor |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Current annual probability of failure for 1 km EHV Sub Cable pof_future_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", simulation_end_year = 100)
# Current annual probability of failure for 1 km EHV Sub Cable pof_future_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 10kV Oil submarine cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_submarine_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 2.0944, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_submarine_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 2.0944, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
topography |
String Topography |
sitution |
String Situation |
wind_wave |
String Wind Wave |
intensity |
String Intensity |
landlocked |
String Land Locked |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
condition_armour |
String Condition Armour |
age |
Numeric. The current age in years of the cable. |
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 1 km 10kV Oil Sub Cable pof_future_submarine_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
# Future annual probability of failure for 1 km 10kV Oil Sub Cable pof_future_submarine_cables_10kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 10kV non pressurised submarine cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_submarine_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100 )
pof_future_submarine_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100 )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
topography |
String Topography |
sitution |
String Situation |
wind_wave |
String Wind Wave |
intensity |
String Intensity |
landlocked |
String Land Locked |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
condition_armour |
String Condition Armour |
age |
Numeric. The current age in years of the cable. |
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 1 km 10kV non pressurised Sub Cable pof_future_submarine_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
# Future annual probability of failure for 1 km 10kV non pressurised Sub Cable pof_future_submarine_cables_10kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 30kV and 60kV oil submarine cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_submarine_cables_30_60kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 2.0944, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_submarine_cables_30_60kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 2.0944, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
topography |
String Topography |
sitution |
String Situation |
wind_wave |
String Wind Wave |
intensity |
String Intensity |
landlocked |
String Land Locked |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
condition_armour |
String Condition Armour |
age |
Numeric. The current age in years of the cable. |
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
pof_future_submarine_cables_30_60kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
pof_future_submarine_cables_30_60kv_oil( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
This function calculates the future annual probability of failure per kilometer for a 30kV and 60kV Non Pressurised submarine cables The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_submarine_cables_30_60kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_submarine_cables_30_60kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
topography |
String Topography |
sitution |
String Situation |
wind_wave |
String Wind Wave |
intensity |
String Intensity |
landlocked |
String Land Locked |
sheath_test |
String. Only applied for non pressurised cables.
Indicating the state of the sheath. Options:
|
partial_discharge |
String. Only applied for non pressurised cables.
Indicating the level of partial discharge. Options:
|
fault_hist |
Numeric. Only applied for non pressurised cables.
The calculated fault rate for the cable in the period per kilometer.
A setting of |
condition_armour |
String Condition Armour |
age |
Numeric. The current age in years of the cable. |
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
pof_future_submarine_cables_30_60kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
pof_future_submarine_cables_30_60kv_pex( utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", sitution = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default", k_value = 0.0202, c_value = 1.087, normal_expected_life = 60, simulation_end_year = 100)
This function calculates the future annual probability of failure 30kV and 60kV switchgear. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_switchgear_30_60kv( asset_type = "30kV", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_switchgear_30_60kv( asset_type = "30kV", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
asset_type |
String Asset Type |
placement |
String Placement |
number_of_operations |
String Number of Operations |
altitude_m |
String Altitude |
distance_from_coast_km |
String Distance from coast |
corrosion_category_index |
String Corrosion Category Index |
age |
Numeric Age |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input |
reliability_factor |
String Reliability Factor |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Current probability of failure per annum.
# Future annual probability of failure for 30kV and 60kV Swicthgear pof_future_switchgear_30_60kv( asset_type = "30kV", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default"), "support_structure" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
# Future annual probability of failure for 30kV and 60kV Swicthgear pof_future_switchgear_30_60kv( asset_type = "30kV", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default"), "support_structure" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default", k_value = "Default", c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
This function calculates the future annual probability of failure 10kV switchgear Primary. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_switchgear_primary_10kv( placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_switchgear_primary_10kv( placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
The number of operations for duty factor |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference value |
DataFrame. Future probability of failure along with future health score
# Future annual probability of failure for 10 kV Switchgear (GM) Primary pof_future_switchgear_primary_10kv( number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
# Future annual probability of failure for 10 kV Switchgear (GM) Primary pof_future_switchgear_primary_10kv( number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
This function calculates the future annual probability of failure 10kV switchgear secondary. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_switchgear_secondary_10kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_switchgear_secondary_10kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
pof_future_switchgear_secondary_10kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
pof_future_switchgear_secondary_10kv( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
This function calculates the future annual probability of failure for 0.4/10kV Transformers. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_transformer_04_10kv( utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
pof_future_transformer_04_10kv( utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100, gb_ref_given = NULL )
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
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 |
Numeric. The current age in years. |
partial_discharge |
String. Indicating the |
temperature_reading |
String. Indicating the criticality.
Options for |
observed_condition |
String. Indicating the observed condition of the
transformer. Options for |
reliability_factor |
Numeric. |
moisture |
Numeric. the amount of moisture given in (ppm) See page 162, table 203 in CNAIM (2021). |
acidity |
String Acidity |
bd_strength |
Numeric. the amount of breakdown strength given in (kV) See page 162, table 205 in CNAIM (2021). |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
pof_future_transformer_04_10kv(utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 20, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
pof_future_transformer_04_10kv(utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 20, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55, simulation_end_year = 100)
This function calculates the future annual probability of failure for 6.6/11kV and 20kV 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).
pof_future_transformer_11_20kv( hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_transformer_11_20kv( hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default", simulation_end_year = 100, gb_ref_given = NULL )
hv_transformer_type |
String. Refers to the high voltage transformer
type the calculation is done for. Options: |
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
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 |
Numeric. The current age in years. |
partial_discharge |
String. Indicating the |
temperature_reading |
String. Indicating the criticality.
Options for |
observed_condition |
String. Indicating the observed condition of the
transformer. Options for |
reliability_factor |
Numeric. |
moisture |
Numeric. the amount of moisture given in (ppm) See page 162, table 203 in CNAIM (2021). |
oil_acidity |
Oil Acidity
level of partial discharge. Options for |
bd_strength |
Numeric. the amount of breakdown strength given in (kV) See page 162, table 205 in CNAIM (2021). |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Future probability of a 6.6/11 kV transformer future_pof_transformer <- pof_future_transformer_11_20kv(hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 20, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default", simulation_end_year = 100)
# Future probability of a 6.6/11 kV transformer future_pof_transformer <- pof_future_transformer_11_20kv(hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 20, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default", simulation_end_year = 100)
This function calculates the future annual probability of failure for 132kV 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).
pof_future_transformer_132kv( transformer_type = "132kV 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", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_transformer_132kv( transformer_type = "132kV 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", simulation_end_year = 100, gb_ref_given = NULL )
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. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Future probability of failure for a 66/10kV transformer pof_future_transformer_132kv(transformer_type = "132kV 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", simulation_end_year = 100)
# Future probability of failure for a 66/10kV transformer pof_future_transformer_132kv(transformer_type = "132kV 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", simulation_end_year = 100)
This function calculates the future annual probability of failure for 30/10kV and 60/10kV transformers. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_future_transformer_30_60kv( transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_transformer_30_60kv( transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default", simulation_end_year = 100, gb_ref_given = NULL )
transformer_type |
String. A sting that refers to the specific
asset category.
Options:
|
year_of_manufacture |
Numeric. Normal expected life depends on the year for manufacture. |
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. |
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. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life_tf |
Numeric. |
normal_expected_life_tc |
Numeric. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
# Future probability of failure for a 60/10kV transformer pof_future_transformer_30_60kv(transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default", simulation_end_year = 100)
# Future probability of failure for a 60/10kV transformer pof_future_transformer_30_60kv(transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default", simulation_end_year = 100)
This function calculates the future 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).
pof_future_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, 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", simulation_end_year = 100, gb_ref_given = NULL )
pof_future_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, 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", simulation_end_year = 100, gb_ref_given = NULL )
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. |
simulation_end_year |
Numeric. The last year of simulating probability of failure. Default is 100. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame. Future probability of failure along with future health score
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
# Future probability of failure for a 66/10kV transformer pof_future_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", simulation_end_year = 100)
# Future probability of failure for a 66/10kV transformer pof_future_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", simulation_end_year = 100)
This function calculates the current annual probability of failure per kilometer HV Switchgear Distribution 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).
pof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
hv_asset_category |
String The type of LV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for HV Swicthgear distribution pof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default")
# Current annual probability of failure for HV Swicthgear distribution pof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default")
This function calculates the current annual probability of failure per kilometer HV Switchgear Primary 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).
pof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
hv_asset_category |
String The type of HV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
The number of operations for duty factor |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for HV Swicthgear Primary pof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs =list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default")
# Current annual probability of failure for HV Swicthgear Primary pof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs =list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default")
This function calculates the current annual probability of failure for LV switchgear and others 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).
pof_lv_switchgear_and_other( lv_asset_category = "LV Circuit Breaker", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_lv_switchgear_and_other( lv_asset_category = "LV Circuit Breaker", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
pof_lv_switchgear_and_other( lv_asset_category = "LV Circuit Breaker", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("operational_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default")
pof_lv_switchgear_and_other( lv_asset_category = "LV Circuit Breaker", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("operational_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default")
This function calculates the current annual probability of failure for LV UGB 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).
pof_lv_ugb( lv_asset_category = "LV UGB", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_lv_ugb( lv_asset_category = "LV UGB", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
pof_lv_ugb( lv_asset_category = "LV UGB", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("steel_cover_and_pit_condition" = list("Condition Criteria: Observed Condition" = "Default"), "water_moisture" = list("Condition Criteria: Observed Condition" = "Default"), "bell_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation_cond" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default")
pof_lv_ugb( lv_asset_category = "LV UGB", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("steel_cover_and_pit_condition" = list("Condition Criteria: Observed Condition" = "Default"), "water_moisture" = list("Condition Criteria: Observed Condition" = "Default"), "bell_cond" = list("Condition Criteria: Observed Condition" = "Default"), "insulation_cond" = list("Condition Criteria: Observed Condition" = "Default"), "signs_heating" = list("Condition Criteria: Observed Condition" = "Default"), "phase_barriers" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("opsal_adequacy" = list("Condition Criteria: Operational Adequacy" = "Default")), reliability_factor = "Default")
This function calculates the current annual probability of failure meter The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25, gb_ref_given = NULL )
pof_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for meter pof_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25)
# Current annual probability of failure for meter pof_meter( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.128, c_value = 1.087, normal_expected_life = 25)
This function calculates the current annual probability of failure per kilometer 33-132kV OHL conductors. 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).
pof_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", gb_ref_given = NULL )
pof_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default", gb_ref_given = NULL )
ohl_conductor |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
sub_division |
String. Refers to material the conductor is
made of. Options:
|
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 |
Numeric. The current age in years of the conductor. |
conductor_samp |
String. Conductor sampling. Options:
|
corr_mon_survey |
String. Corrosion monitoring survey. Options:
|
visual_cond |
String. Visual condition. Options:
|
midspan_joints |
Integer. Number of midspan joints on the conductor. A span includes all conductors in that span. See page 146, table 141 and 143 in CNAIM (2021). |
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for 66kV OHL (Tower Line) Conductor pof_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default")
# Current annual probability of failure for 66kV OHL (Tower Line) Conductor pof_ohl_cond_132_66_33kv( ohl_conductor = "66kV OHL (Tower Line) Conductor", sub_division = "Cu", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, conductor_samp = "Default", corr_mon_survey = "Default", visual_cond = "Default", midspan_joints = "Default", reliability_factor = "Default")
This function calculates the current annual probability of failure per kilometer Poles 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).
pof_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pof_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", gb_ref_given = NULL )
pole_asset_category |
String The type of asset category |
sub_division |
String. Refers to material the pole is made of. |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for HV Poles pof_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("visual_pole_cond" = list("Condition Criteria: Pole Top Rot Present?" = "Default"), "pole_leaning" = list("Condition Criteria: Pole Leaning?" = "Default"), "bird_animal_damage" = list("Condition Criteria: Bird/Animal Damage?" = "Default"), "top_rot" = list("Condition Criteria: Pole Top Rot Present?" = "Default")), measured_condition_inputs = list("pole_decay" = list("Condition Criteria: Degree of Decay/Deterioration" = "Default")), reliability_factor = "Default")
# Current annual probability of failure for HV Poles pof_poles( pole_asset_category = "20kV Poles", sub_division = "Wood", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("visual_pole_cond" = list("Condition Criteria: Pole Top Rot Present?" = "Default"), "pole_leaning" = list("Condition Criteria: Pole Leaning?" = "Default"), "bird_animal_damage" = list("Condition Criteria: Bird/Animal Damage?" = "Default"), "top_rot" = list("Condition Criteria: Pole Top Rot Present?" = "Default")), measured_condition_inputs = list("pole_decay" = list("Condition Criteria: Degree of Decay/Deterioration" = "Default")), reliability_factor = "Default")
This function calculates the current annual probability of failure per kilometer for submarine cables. 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).
pof_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", gb_ref_given = NULL )
pof_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age, reliability_factor = "Default", gb_ref_given = NULL )
sub_cable_type |
String.
A sting that refers to the specific asset category.
See See page 17, table 1 in CNAIM (2021).
Options:
|
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
operating_voltage_pct |
Numeric. The ratio in percent of operating/design voltage. |
topography |
String. Describe the topography around the submarine cable.
Options:
|
situation |
Situation of the cable |
wind_wave |
Numeric.
Options:
|
intensity |
String. Combined wave and current energy factor.
Options:
|
landlocked |
String. Options: |
sheath_test |
String. Indicating the state of the sheath. Options:
|
partial_discharge |
String. Indicating the level of partial discharge.
Options:
|
fault_hist |
Numeric. The calculated fault rate for the cable per annum
per kilometer. A setting of |
condition_armour |
String. Indicating the external condition of the
submarine cables armour. Options:
|
age |
Numeric. The current age in years of the cable. |
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for 1 km EHV Sub Cable pof_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default" )
# Current annual probability of failure for 1 km EHV Sub Cable pof_submarine_cables( sub_cable_type = "EHV Sub Cable", utilisation_pct = "Default", operating_voltage_pct = "Default", topography = "Default", situation = "Default", wind_wave = "Default", intensity = "Default", landlocked = "no", sheath_test = "Default", partial_discharge = "Default", fault_hist = "Default", condition_armour = "Default", age = 10, reliability_factor = "Default" )
This function calculates the current annual probability of failure 10 kV Switchgear (GM) Primary The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_switchgear_primary_10kv( placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55, gb_ref_given = NULL )
pof_switchgear_primary_10kv( placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
The number of operations for duty factor |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for 10 kV Switchgear (GM) Primary pof_switchgear_primary_10kv( number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55)
# Current annual probability of failure for 10 kV Switchgear (GM) Primary pof_switchgear_primary_10kv( number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default"), "ir_test" = list("Condition Criteria: IR Test Results" = "Default" )), reliability_factor = "Default", k_value = 0.0052, c_value = 1.087, normal_expected_life = 55)
This function calculates the current annual probability of failure 10kV Switchgear secondary The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_switchgear_secondary_10kV( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55, gb_ref_given = NULL )
pof_switchgear_secondary_10kV( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, measured_condition_inputs, observed_condition_inputs, reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55, gb_ref_given = NULL )
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years of the conductor. |
measured_condition_inputs |
Named list observed_conditions_input |
observed_condition_inputs |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for 10kV Swicthgear secondary pof_switchgear_secondary_10kV( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55)
# Current annual probability of failure for 10kV Swicthgear secondary pof_switchgear_secondary_10kV( placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, observed_condition_inputs = list("external_condition" = list("Condition Criteria: Observed Condition" = "Default"), "oil_gas" = list("Condition Criteria: Observed Condition" = "Default"), "thermo_assment" = list("Condition Criteria: Observed Condition" = "Default"), "internal_condition" = list("Condition Criteria: Observed Condition" = "Default"), "indoor_env" = list("Condition Criteria: Observed Condition" = "Default")), measured_condition_inputs = list("partial_discharge" = list("Condition Criteria: Partial Discharge Test Results" = "Default"), "ductor_test" = list("Condition Criteria: Ductor Test Results" = "Default"), "oil_test" = list("Condition Criteria: Oil Test Results" = "Default"), "temp_reading" = list("Condition Criteria: Temperature Readings" = "Default"), "trip_test" = list("Condition Criteria: Trip Timing Test Result" = "Default")), reliability_factor = "Default", k_value = 0.0067, c_value = 1.087, normal_expected_life = 55)
This function calculates the current annual probability of failure per kilometer EHV for Towers OHL support 50kV The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_tower_ohl_support_50kv( foundation_type = "Foundation - Fully Encased Concrete", paint_type = "Paint System - Paint", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, observed_condition_inputs_steelwork, observed_condition_inputs_paint, observed_condition_inputs_foundation, reliability_factor = "Default", k_value = 0.0545, c_value = 1.087, normal_expected_life = "Default", gb_ref_given = NULL )
pof_tower_ohl_support_50kv( foundation_type = "Foundation - Fully Encased Concrete", paint_type = "Paint System - Paint", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, observed_condition_inputs_steelwork, observed_condition_inputs_paint, observed_condition_inputs_foundation, reliability_factor = "Default", k_value = 0.0545, c_value = 1.087, normal_expected_life = "Default", gb_ref_given = NULL )
foundation_type |
String. Foundation type of the tower
|
paint_type |
String. Paint type of the tower
|
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
Numeric Number of operations for the tower |
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 |
Numeric. The current age in years of the conductor. |
observed_condition_inputs_steelwork |
Named list observed_conditions_input |
observed_condition_inputs_paint |
Named list observed_conditions_input |
observed_condition_inputs_foundation |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current annual probability of failure for Towers pof_tower_ohl_support_50kv( number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, paint_type = "Paint System - Galvanising", foundation_type = "Foundation - Earth Grillage", observed_condition_inputs_steelwork = list("tower_legs" = list("Condition Criteria: Observed Condition" = "Default"), "tower_bracings" = list("Condition Criteria: Observed Condition" = "Default"), "tower_crossarms" = list("Condition Criteria: Observed Condition" = "Default"), "tower_peak" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_paint = list("paintwork_cond" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_foundation = list("foundation_cond" = list("Condition Criteria: Observed Condition" = "Default")), reliability_factor = "Default", k_value = 0.0545, c_value = 1.087, normal_expected_life = "Default")
# Current annual probability of failure for Towers pof_tower_ohl_support_50kv( number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, paint_type = "Paint System - Galvanising", foundation_type = "Foundation - Earth Grillage", observed_condition_inputs_steelwork = list("tower_legs" = list("Condition Criteria: Observed Condition" = "Default"), "tower_bracings" = list("Condition Criteria: Observed Condition" = "Default"), "tower_crossarms" = list("Condition Criteria: Observed Condition" = "Default"), "tower_peak" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_paint = list("paintwork_cond" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_foundation = list("foundation_cond" = list("Condition Criteria: Observed Condition" = "Default")), reliability_factor = "Default", k_value = 0.0545, c_value = 1.087, normal_expected_life = "Default")
This function calculates the current annual probability of failure per kilometer EHV Switchgear 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).
pof_towers( tower_asset_category = "33kV Tower", foundation_type = "Foundation - Fully Encased Concrete", paint_type = "Paint System - Paint", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, observed_condition_inputs_steelwork, observed_condition_inputs_paint, observed_condition_inputs_foundation, reliability_factor = "Default", gb_ref_given = NULL )
pof_towers( tower_asset_category = "33kV Tower", foundation_type = "Foundation - Fully Encased Concrete", paint_type = "Paint System - Paint", placement = "Default", number_of_operations = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, observed_condition_inputs_steelwork, observed_condition_inputs_paint, observed_condition_inputs_foundation, reliability_factor = "Default", gb_ref_given = NULL )
tower_asset_category |
String The type of Tower asset category |
foundation_type |
String Foundation type of the tower |
paint_type |
String Paint type of the tower |
placement |
String. Specify if the asset is located outdoor or indoor. |
number_of_operations |
Numeric Number of operations for the tower |
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 |
Numeric. The current age in years of the conductor. |
observed_condition_inputs_steelwork |
Named list observed_conditions_input |
observed_condition_inputs_paint |
Named list observed_conditions_input |
observed_condition_inputs_foundation |
Named list observed_conditions_input
|
reliability_factor |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current annual probability of failure for Towers pof_towers( tower_asset_category = "33kV Tower", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, paint_type = "Paint System - Galvanising", foundation_type = "Foundation - Earth Grillage", observed_condition_inputs_steelwork = list("tower_legs" = list("Condition Criteria: Observed Condition" = "Default"), "tower_bracings" = list("Condition Criteria: Observed Condition" = "Default"), "tower_crossarms" = list("Condition Criteria: Observed Condition" = "Default"), "tower_peak" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_paint = list("paintwork_cond" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_foundation = list("foundation_cond" = list("Condition Criteria: Observed Condition" = "Default")), reliability_factor = "Default")
# Current annual probability of failure for Towers pof_towers( tower_asset_category = "33kV Tower", number_of_operations = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, paint_type = "Paint System - Galvanising", foundation_type = "Foundation - Earth Grillage", observed_condition_inputs_steelwork = list("tower_legs" = list("Condition Criteria: Observed Condition" = "Default"), "tower_bracings" = list("Condition Criteria: Observed Condition" = "Default"), "tower_crossarms" = list("Condition Criteria: Observed Condition" = "Default"), "tower_peak" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_paint = list("paintwork_cond" = list("Condition Criteria: Observed Condition" = "Default")), observed_condition_inputs_foundation = list("foundation_cond" = list("Condition Criteria: Observed Condition" = "Default")), reliability_factor = "Default")
This function calculates the current annual probability of failure for 0.4/10kV Transformers. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_transformer_04_10kv( utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55, gb_ref_given = NULL )
pof_transformer_04_10kv( utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55, gb_ref_given = NULL )
utilisation_pct |
Numeric Utilisation percentage |
placement |
String. Specify if the asset is located outdoor or indoor. |
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 |
Numeric. The current age in years. |
partial_discharge |
String. Indicating the
level of partial discharge. Options for |
temperature_reading |
String. Indicating the criticality.
Options for |
observed_condition |
String. Indicating the observed condition of the
transformer. Options for |
reliability_factor |
Numeric. |
moisture |
Numeric. the amount of moisture given in (ppm) |
acidity |
Oil Acidity |
bd_strength |
Numeric. the amount of breakdown strength given in (kV) |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current probability of failure for 0.4/10kV Transformers pof_transformer_04_10kv(utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55)
# Current probability of failure for 0.4/10kV Transformers pof_transformer_04_10kv(utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", acidity = "Default", bd_strength = "Default", k_value = 0.0077, c_value = 1.087, normal_expected_life = 55)
This function calculates the current annual probability of failure for 6.6/11kV and 20kV 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).
pof_transformer_11_20kv( hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default", gb_ref_given = NULL )
pof_transformer_11_20kv( hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default", gb_ref_given = NULL )
hv_transformer_type |
String. Refers to the high voltage transformer
type the calculation is done for. Options: |
utilisation_pct |
Numeric. The max percentage of utilisation under normal operating conditions. |
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 |
Numeric. The current age in years. |
partial_discharge |
String. Indicating the |
temperature_reading |
String. Indicating the criticality.
Options for |
observed_condition |
String. Indicating the observed condition of the
transformer. Options for |
reliability_factor |
Numeric. |
moisture |
Numeric. the amount of moisture given in (ppm) See page 162, table 203 in CNAIM (2021). |
oil_acidity |
Oil Acidity
level of partial discharge. Options for |
bd_strength |
Numeric. the amount of breakdown strength given in (kV) See page 162, table 205 in CNAIM (2021). |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current probability of failure for a 6.6/11 kV transformer pof_transformer_11_20kv(hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default")
# Current probability of failure for a 6.6/11 kV transformer pof_transformer_11_20kv(hv_transformer_type = "6.6/11kV Transformer (GM)", utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", age = 10, partial_discharge = "Default", temperature_reading = "Default", observed_condition = "Default", reliability_factor = "Default", moisture = "Default", oil_acidity = "Default", bd_strength = "Default")
This function calculates the current annual probability of failure for 132kv 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).
pof_transformer_132kv( transformer_type = "132kV 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", gb_ref_given = NULL )
pof_transformer_132kv( transformer_type = "132kV 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", gb_ref_given = NULL )
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. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# Current probability of failure for a 132kV transformer pof_transformer_132kv(transformer_type = "132kV 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")
# Current probability of failure for a 132kV transformer pof_transformer_132kv(transformer_type = "132kV 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")
This function calculates the current annual probability of failure for 30/10kV and 60/10kV transformers. The function is a cubic curve that is based on the first three terms of the Taylor series for an exponential function.
pof_transformer_30_60kv( transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default", gb_ref_given = NULL )
pof_transformer_30_60kv( transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default", gb_ref_given = NULL )
transformer_type |
String. A sting that refers to the specific
asset category.
Options:
|
year_of_manufacture |
Numeric. Normal expected life depends on the year for manufacture. |
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. |
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. |
k_value |
Numeric. |
c_value |
Numeric. |
normal_expected_life_tf |
Numeric. |
normal_expected_life_tc |
Numeric. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
# Current probability of failure for a 60/10kV transformer pof_transformer_30_60kv(transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default")
# Current probability of failure for a 60/10kV transformer pof_transformer_30_60kv(transformer_type = "60kV 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", k_value = 0.454, c_value = 1.087, normal_expected_life_tf = "Default", normal_expected_life_tc = "Default")
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).
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", gb_ref_given = NULL )
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", gb_ref_given = NULL )
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. |
gb_ref_given |
optional parameter to use custom reference values |
DataFrame Current probability of failure per annum per kilometer along with current health score.
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
# 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")
# 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")
This function uses the Weibull model parameters trained by the function train_weibull_model
(), together
with the environmental factors for a specific transformer, and determines the probability of failure at a given age.
predict_weibull_model( age, environmental_factors = data.frame(utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", partial_discharge = "Default", oil_acidity = "Default", temperature_reading = "Default", observed_condition = "Default"), weibull_model_parameters = data.frame(shapes = c(3.597272, 2.528015, 2.273607, 2.10145, 2.048909), scales.intercept = c(100.17922, 45.54622, 73.63507, 29.99655, 31.19306), scales.1 = c(0.0028536801, 0.0014449054, 0.0011716558, -0.0003356626, -0.0017302242), scales.2 = c(-8.202209, -3.856043, -2.818854, -2.388243, -2.940468), scales.3 = c(-0.003023546, -0.001602048, -0.00134834, -0.00198866, -0.003149921), scales.4 = c(-0.040016081, -0.028129483, -0.017586604, -0.009426902, -0.02178312), scales.5 = c(-1.4776137, -0.6794045, -0.6000869, -0.3839049, -0.4445468), scales.6 = c(-0.811395564, 0.015705206, -9.815935489, -0.002548827, -0.085903822), scales.7 = c(-4.4776511, -0.3677058, 0.4590218, -0.6364809, -0.3314029), scales.8 = c(-1.5861982, 0, -0.1398528, -0.1721091, 0), scales.9 = c(-0.7914404, -0.2632199, -1.1882148, 0, 0)) )
predict_weibull_model( age, environmental_factors = data.frame(utilisation_pct = "Default", placement = "Default", altitude_m = "Default", distance_from_coast_km = "Default", corrosion_category_index = "Default", partial_discharge = "Default", oil_acidity = "Default", temperature_reading = "Default", observed_condition = "Default"), weibull_model_parameters = data.frame(shapes = c(3.597272, 2.528015, 2.273607, 2.10145, 2.048909), scales.intercept = c(100.17922, 45.54622, 73.63507, 29.99655, 31.19306), scales.1 = c(0.0028536801, 0.0014449054, 0.0011716558, -0.0003356626, -0.0017302242), scales.2 = c(-8.202209, -3.856043, -2.818854, -2.388243, -2.940468), scales.3 = c(-0.003023546, -0.001602048, -0.00134834, -0.00198866, -0.003149921), scales.4 = c(-0.040016081, -0.028129483, -0.017586604, -0.009426902, -0.02178312), scales.5 = c(-1.4776137, -0.6794045, -0.6000869, -0.3839049, -0.4445468), scales.6 = c(-0.811395564, 0.015705206, -9.815935489, -0.002548827, -0.085903822), scales.7 = c(-4.4776511, -0.3677058, 0.4590218, -0.6364809, -0.3314029), scales.8 = c(-1.5861982, 0, -0.1398528, -0.1721091, 0), scales.9 = c(-0.7914404, -0.2632199, -1.1882148, 0, 0)) )
age |
Numeric. Age of transformer which should be used in the prediction. |
environmental_factors |
Data frame. Must contain the following fields: utilisation_pct: Numeric or "Default", placement: "Indoor", "Outdoor" or "Default", altitude_m: Numeric or "Default", distance_from_coast_km: Numeric or "Default", corrosion_category_index: Numeric or "Default", partial_discharge: "Low", "Medium", "High (Not Confirmed)", "High (Confirmed)" or "Default", oil_acidity: Numeric or "Default", temperature_reading: "Normal", "Moderately High", "Very High" or "Default", observed_condition: "No deterioration", "Superficial/minor deterioration", "Slight Deterioration", "Some deterioration", "Substantial deterioration" or "Default" Default value if environmental_factors is not provided: data frame with value "Default" for all fields |
weibull_model_parameters |
Data frame. The output returned by the function
|
Numeric. Probability of failure at the given age.
https://www.cnaim.io/docs/fault-analysis/
predict_weibull_model(age = 50)
predict_weibull_model(age = 50)
This function calculates the present value of future risk. See section 5.5 on page 32 in CNAIM (2021).
present_value_future_risk(pof, cof, r = 0.035)
present_value_future_risk(pof, cof, r = 0.035)
pof |
A vector of the probability of failure of the asset over years |
cof |
The consequence of failure of the asset |
r |
discount rate |
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
present_value_future_risk(c(0.1, 0.2, 0.5), 100)
present_value_future_risk(c(0.1, 0.2, 0.5), 100)
This function calculates risk matrix coordinates dimensions.
risk_calculation( matrix_dimensions, id, chs, cof, asset_type, hi_bands = NULL, ci_bands = NULL )
risk_calculation( matrix_dimensions, id, chs, cof, asset_type, hi_bands = NULL, ci_bands = NULL )
matrix_dimensions |
A data frame with the dimensions of the desired risk matrix. |
id |
An integer that identifies the asset |
chs |
The Current Health Score (CHS) of the asset |
cof |
The Consequence of Failure of the asset |
asset_type |
The asset type to be calculated for class |
hi_bands |
Specific Health Index (HI) bands for risk matrix. Default values are the same as defined in the CNAIM v2.1 standard |
ci_bands |
Specific Criticality Index (CI) bands for the risk matrix. Default values are the same as defined in the CNAIM v.2.1 standard. |
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
# Calculate risk matrix coordinates for an asset # 1. Make the risk matrix structure matrix_structure <- risk_matrix_structure(5,4,NA) # 2. Calculate risk matrix coordinates risk_calculation(matrix_dimensions = matrix_structure, id = 1, chs = 4, cof = 15000, asset_type = "6.6/11kV Transformer (GM)")
# Calculate risk matrix coordinates for an asset # 1. Make the risk matrix structure matrix_structure <- risk_matrix_structure(5,4,NA) # 2. Calculate risk matrix coordinates risk_calculation(matrix_dimensions = matrix_structure, id = 1, chs = 4, cof = 15000, asset_type = "6.6/11kV Transformer (GM)")
This function makes a D3 visualization of monetary risk with each asset as a point on the grid.
risk_matrix_points_plot(risk_data_matrix, dots_vector, dot_radius)
risk_matrix_points_plot(risk_data_matrix, dots_vector, dot_radius)
risk_data_matrix |
Long format matrix data. |
dots_vector |
Coordinates of the dots. |
dot_radius |
Radius of the dots. |
This function makes a simple matrix structure that can be used as an input to the risk_matrix_points and risk_matrix_summary functions
risk_matrix_structure(cols, rows, value = NA)
risk_matrix_structure(cols, rows, value = NA)
cols |
Number of columns |
rows |
Number of rows |
value |
Default value of each cell |
This function makes a D3 visualization of monetary risk with non-linear x and y intervals.
risk_matrix_summary_plot( risk_data_matrix, x_intervals = rep(20, 5), y_intervals = rep(25, 4) )
risk_matrix_summary_plot( risk_data_matrix, x_intervals = rep(20, 5), y_intervals = rep(25, 4) )
risk_data_matrix |
Long format matrix data. |
x_intervals |
An array of x spacing in percent (sum to 100) |
y_intervals |
An array of y spacing in percent (sum to 100) |
This function calculates safety consequences of failure
for switchgear, transformers and overhead lines
(cf. section 7.4, page 80, CNAIM, 2021). Safety consequences of failure
is used in the derivation of consequences of failure see cof
().
s_cof_swg_tf_ohl( type_risk = "Default", location_risk = "Default", asset_type_scf, gb_ref_given = NULL )
s_cof_swg_tf_ohl( type_risk = "Default", location_risk = "Default", asset_type_scf, gb_ref_given = NULL )
type_risk |
String. Risk that the asset presents to the
public by its characteristics and particular situation. Options:
|
location_risk |
String. Proximity to areas that may affect its
likelihood of trespass or interference. Options:
|
asset_type_scf |
String.
Options:
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for switchgear, transformers and overhead lines.
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
# Safety consequences failure for a 6.6/11 kV transformer s_cof_swg_tf_ohl(type_risk = "Default", location_risk = "Default", asset_type_scf = "6.6/11kV Transformer (GM)")
# Safety consequences failure for a 6.6/11 kV transformer s_cof_swg_tf_ohl(type_risk = "Default", location_risk = "Default", asset_type_scf = "6.6/11kV Transformer (GM)")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
Outputted in (DKK).
safety_cof_board_04kv(location_risk, type_risk, gb_ref_given = NULL)
safety_cof_board_04kv(location_risk, type_risk, gb_ref_given = NULL)
location_risk |
String Type Financial factor criteria for 0.4kV board
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for 0.4kV board
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV board
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
safety_cof_board_04kv( location_risk = "Default", type_risk = "Default")
safety_cof_board_04kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure Outputted in DKK
safety_cof_cables_04_10kv(hv_asset_category, gb_ref_given = NULL)
safety_cof_cables_04_10kv(hv_asset_category, gb_ref_given = NULL)
hv_asset_category |
String The type of HV asset category
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV and 10kV UG cables
safety_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)")
safety_cof_cables_04_10kv(hv_asset_category = "10kV UG Cable (Oil)")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
#' ehv_asset_category = c("30kV UG Cable (Gas)", "60kV UG Cable (Gas)",
"30kV UG Cable (Non Pressurised)", "60kV UG Cable (Non Pressurised)",
"30kV UG Cable (Oil)", "60kV UG Cable (Oil)")
. The default setting is
ehv_asset_category = "60kV UG Cable (Gas)"
.
safety_cof_cables_60_30kv(ehv_asset_category, gb_ref_given = NULL)
safety_cof_cables_60_30kv(ehv_asset_category, gb_ref_given = NULL)
ehv_asset_category |
Asset category for analysis |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 30-60 kV UG cables
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
safety_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)")
safety_cof_cables_60_30kv(ehv_asset_category = "30kV UG Cable (Oil)")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_ehv_cables(ehv_asset_category, gb_ref_given = NULL)
safety_cof_ehv_cables(ehv_asset_category, gb_ref_given = NULL)
ehv_asset_category |
String The type of EHV cable distribution asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EEHV UG cabkes & 132 kV UG cables
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
safety_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)")
safety_cof_ehv_cables(ehv_asset_category = "33kV UG Cable (Oil)")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_ehv_fittings( ehv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_ehv_fittings( ehv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV asset category
Options: |
location_risk |
String Type Financial factor criteria for EHV fittings
(cf. section D1.2.1, page 178, CNAIM, 2021).
|
type_risk |
String. Asses Financial factor criteria for EHV fittings
setting (cf. table 221, page 180, CNAIM, 2021).
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV fittings
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
safety_cof_ehv_fittings(ehv_asset_category = "33kV Fittings", location_risk = "Default", type_risk = "Default")
safety_cof_ehv_fittings(ehv_asset_category = "33kV Fittings", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_ehv_switchgear( ehv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_ehv_switchgear( ehv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
ehv_asset_category |
String The type of EHV swicthgear & 132kV CB
Options: |
location_risk |
String Type Financial factor criteria for EHV swicthgear & 132kV CB
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for EHV swicthgear & 132kV CB
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV swicthgear & 132kV CB
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
safety_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", location_risk = "Default", type_risk = "Default")
safety_cof_ehv_switchgear(ehv_asset_category = "33kV RMU", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safetyr consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_hv_switchgear_distribution( hv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_hv_switchgear_distribution( hv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
hv_asset_category |
String The type of HV switchgear distribution asset category
Options: |
location_risk |
String Type Financial factor criteria for HV switchgear
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for HV switchgear
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV switchgear
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
safety_cof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", location_risk = "Default", type_risk = "Default")
safety_cof_hv_switchgear_distribution( hv_asset_category = "6.6/11kV CB (GM) Secondary", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safetyr consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_hv_switchgear_primary( hv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_hv_switchgear_primary( hv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
hv_asset_category |
String The type of HV asset category
Options: |
location_risk |
String Type Financial factor criteria for HV switchgear
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for HV switchgear
setting (cf. table 218, page 176, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for HV switchgear
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
safety_cof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", location_risk = "Default", type_risk = "Default")
safety_cof_hv_switchgear_primary( hv_asset_category = "6.6/11kV CB (GM) Primary", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safetyr consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_lv_switchgear_and_other( lv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_lv_switchgear_and_other( lv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category
Options: |
location_risk |
String Type Financial factor criteria for LV switchgear
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for LV switchgear
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV switchgear
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
safety_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)", location_risk = "Default", type_risk = "Default")
safety_cof_lv_switchgear_and_other(lv_asset_category = "LV Board (WM)", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_lv_ugb( lv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_lv_ugb( lv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
lv_asset_category |
String The type of LV asset category
Option: |
location_risk |
String Type Financial factor criteria for LV UGB
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for LV UGB
setting (cf. table 221, page 178, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for LV UGB
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
safety_cof_lv_ugb(lv_asset_category = "LV UGB", location_risk = "Default", type_risk = "Default")
safety_cof_lv_ugb(lv_asset_category = "LV UGB", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_ohl_cond( ohl_cond_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_ohl_cond( ohl_cond_asset_category, location_risk, type_risk, gb_ref_given = NULL )
ohl_cond_asset_category |
String The type of Pole asset category
Options: |
location_risk |
String Type Financial factor criteria for Overhead Line Conductors
(cf. section D1.2.1, page 178, CNAIM, 2021).
|
type_risk |
String. Asses Financial factor criteria for Overhead Line Conductors
setting (cf. table 221, page 180, CNAIM, 2021).
|
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Overhead Line Conductors
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
safety_cof_ohl_cond( ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor", location_risk = "Default", type_risk = "Default")
safety_cof_ohl_cond( ohl_cond_asset_category = "33kV OHL (Tower Line) Conductor", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure Outputted in DKK
safety_cof_ohl_cond_50kv(location_risk, type_risk, gb_ref_given = NULL)
safety_cof_ohl_cond_50kv(location_risk, type_risk, gb_ref_given = NULL)
location_risk |
String Type Financial factor criteria for Overhead Line Conductors
Options: |
type_risk |
String. Asses Financial factor criteria for Overhead Line Conductors
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Overhead Line Conductors
safety_cof_ohl_cond_50kv( location_risk = "Default", type_risk = "Default")
safety_cof_ohl_cond_50kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_ohl_fittings_50kv(location_risk, type_risk, gb_ref_given = NULL)
safety_cof_ohl_fittings_50kv(location_risk, type_risk, gb_ref_given = NULL)
location_risk |
String Type Financial factor criteria for 50kV fittings
Options: |
type_risk |
String. Asses Financial factor criteria for 50kV fittings
setting
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for EHV fittings
safety_cof_ohl_fittings_50kv( location_risk = "Default", type_risk = "Default")
safety_cof_ohl_fittings_50kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK
safety_cof_pillar_04kv(location_risk, type_risk, gb_ref_given = NULL)
safety_cof_pillar_04kv(location_risk, type_risk, gb_ref_given = NULL)
location_risk |
String Type Financial factor criteria for 0.4kV Pillar
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for 0.4kV Pillar
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 0.4kV Pillar
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
safety_cof_pillar_04kv( location_risk = "Default", type_risk = "Default")
safety_cof_pillar_04kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_poles( pole_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_poles( pole_asset_category, location_risk, type_risk, gb_ref_given = NULL )
pole_asset_category |
String The type of pole asset category
Options: |
location_risk |
String Type Financial factor criteria for Pole
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for pole
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for poles
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
safety_cof_poles(pole_asset_category = "33kV Pole", location_risk = "Default", type_risk = "Default")
safety_cof_poles(pole_asset_category = "33kV Pole", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_poles_ohl_support_50kv( pole_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_poles_ohl_support_50kv( pole_asset_category, location_risk, type_risk, gb_ref_given = NULL )
pole_asset_category |
String The type of Pole asset category |
location_risk |
String Type Financial factor criteria for Pole
Options: |
type_risk |
String. Asses Financial factor criteria for pole
setting.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for poles
safety_cof_poles_ohl_support_50kv( location_risk = "Default", type_risk = "Default")
safety_cof_poles_ohl_support_50kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure.
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_relay(location_risk, type_risk, gb_ref_given = NULL)
safety_cof_relay(location_risk, type_risk, gb_ref_given = NULL)
location_risk |
String Type Financial factor criteria for 50kV fittings
Options: |
type_risk |
String. Asses Financial factor criteria for 50kV fittings
setting
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for relay
safety_cof_relay( location_risk = "Default", type_risk = "Default")
safety_cof_relay( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure Outputted in DKK
safety_cof_serviceline(gb_ref_given = NULL)
safety_cof_serviceline(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for service line
safety_cof_serviceline()
safety_cof_serviceline()
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_sub_cables(sub_cable_asset_category, gb_ref_given = NULL)
safety_cof_sub_cables(sub_cable_asset_category, gb_ref_given = NULL)
sub_cable_asset_category |
String The type of Submarine cable asset category
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Sub cables
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
safety_cof_sub_cables(sub_cable_asset_category = "HV Sub Cable")
safety_cof_sub_cables(sub_cable_asset_category = "HV Sub Cable")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_submarine_cables_10kv(gb_ref_given = NULL)
safety_cof_submarine_cables_10kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Sub cables
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
safety_cof_submarine_cables_10kv()
safety_cof_submarine_cables_10kv()
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_submarine_cables_30_60kv(gb_ref_given = NULL)
safety_cof_submarine_cables_30_60kv(gb_ref_given = NULL)
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Sub cables
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
safety_cof_submarine_cables_30_60kv()
safety_cof_submarine_cables_30_60kv()
This function calculates safety consequences of failure
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_switchgear_30_60kv( ehv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_switchgear_30_60kv( ehv_asset_category, location_risk, type_risk, gb_ref_given = NULL )
ehv_asset_category |
String The type of 30kV and 60kV switchgear
Options: |
location_risk |
String Type Financial factor criteria for 30kV and 60kV switchgear
Options: |
type_risk |
String. Asses Financial factor criteria for 30kV and 60kV switchgear
setting.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 30kV and 60kV switchgear
safety_cof_switchgear_30_60kv(ehv_asset_category = "30kV", location_risk = "Default", type_risk = "Default")
safety_cof_switchgear_30_60kv(ehv_asset_category = "30kV", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_switchgear_primary_10kv( location_risk, type_risk, gb_ref_given = NULL )
safety_cof_switchgear_primary_10kv( location_risk, type_risk, gb_ref_given = NULL )
location_risk |
String Type Financial factor criteria for 10kV switchgear
Options: |
type_risk |
String. Asses Financial factor criteria for 10kV switchgear
setting.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for HV switchgear
safety_cof_switchgear_primary_10kv( location_risk = "Default", type_risk = "Default")
safety_cof_switchgear_primary_10kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure.
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_switchgear_secondary_10kv( location_risk, type_risk, gb_ref_given = NULL )
safety_cof_switchgear_secondary_10kv( location_risk, type_risk, gb_ref_given = NULL )
location_risk |
String Type Financial factor criteria for 10kV switchgear secondary
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for 10kV switchgear secondary
setting.
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Financial consequences of failure for 10kV switchgear secondary
safety_cof_switchgear_secondary_10kv( location_risk = "Default", type_risk = "Default")
safety_cof_switchgear_secondary_10kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
Safety consequences of failure is used in
the derivation of consequences of failure see cof
().
Outputted in DKK.
safety_cof_tower_ohl_support_50kv( location_risk, type_risk, gb_ref_given = NULL )
safety_cof_tower_ohl_support_50kv( location_risk, type_risk, gb_ref_given = NULL )
location_risk |
String Type Financial factor criteria for tower
Options: |
type_risk |
String. Asses Financial factor criteria for tower
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for tower ohl support 50 kV
safety_cof_tower_ohl_support_50kv( location_risk = "Default", type_risk = "Default")
safety_cof_tower_ohl_support_50kv( location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_towers( tower_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_towers( tower_asset_category, location_risk, type_risk, gb_ref_given = NULL )
tower_asset_category |
String The type of tower asset category
Options: |
location_risk |
String Type Financial factor criteria for tower
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for tower
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for towers
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
safety_cof_towers(tower_asset_category = "33kV Tower", location_risk = "Default", type_risk = "Default")
safety_cof_towers(tower_asset_category = "33kV Tower", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure Outputted in DKK.
safety_cof_transformer_30_60kv( tf_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_transformer_30_60kv( tf_asset_category, location_risk, type_risk, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer
Options: |
location_risk |
String Type Financial factor criteria for Transformer
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for Transformer
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Transformers
safety_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", location_risk = "Default", type_risk = "Default")
safety_cof_transformer_30_60kv(tf_asset_category = "30kV Transformer (GM)", location_risk = "Default", type_risk = "Default")
This function calculates safety consequences of failure
(cf. section 7.3, page 79, CNAIM, 2021). Safety consequences
of failure is used in
the derivation of consequences of failure see cof
().
safety_cof_transformers( tf_asset_category, location_risk, type_risk, gb_ref_given = NULL )
safety_cof_transformers( tf_asset_category, location_risk, type_risk, gb_ref_given = NULL )
tf_asset_category |
String The type of Transformer asset category
Options: |
location_risk |
String Type Financial factor criteria for Transformer
(cf. section D1.2.1, page 178, CNAIM, 2021).
Options: |
type_risk |
String. Asses Financial factor criteria for Transformer
setting (cf. table 221, page 180, CNAIM, 2021).
Options: |
gb_ref_given |
optional parameter to use custom reference values |
Numeric. Safety consequences of failure for Transformers
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
safety_cof_transformers(tf_asset_category = "33kV Transformer (GM)", location_risk = "Default", type_risk = "Default")
safety_cof_transformers(tf_asset_category = "33kV Transformer (GM)", location_risk = "Default", type_risk = "Default")
This function uses transformer fault statistics data to train a Weibull model: Based on the environmental
factors determining a transformer's expected lifetime, the set of all data points is first partitioned into five parts.
Then a multilinear estimate for the expected lifetime of a transformer is trained for each part separately, and the
corresponding Weibull shape and scale parameters for the five parts are estimated. The function returns the shape and scale
parameters needed for the function predict_weibull_model
().
train_weibull_model(transformer_faults_data)
train_weibull_model(transformer_faults_data)
transformer_faults_data |
Data frame. Contains past data on transformer faults, together with environmental factors. Must contain the following fields: utilisation_pct: Numeric or "Default", placement: "Indoor", "Outdoor" or "Default", altitude_m: Numeric or "Default", distance_from_coast_km: Numeric or "Default", corrosion_category_index: Numeric or "Default", partial_discharge: "Low", "Medium", "High (Not Confirmed)", "High (Confirmed)" or "Default", oil_acidity: Numeric or "Default", temperature_reading: "Normal", "Moderately High", "Very High" or "Default", observed_condition: "No deterioration", "Superficial/minor deterioration", "Slight Deterioration", "Some deterioration", "Substantial deterioration" or "Default" age: Numeric |
Data frame. All shape and scale parameters needed for the function predict_weibull_model
().
https://www.cnaim.io/docs/fault-analysis/
train_weibull_model(transformer_faults_data = transformer_11kv_faults)
train_weibull_model(transformer_faults_data = transformer_11kv_faults)
A dataset containing failure statistics for 10,000 6.6/11kV transformers from the CNAIM standard, simulated over 100 years. The variables are as follows:
transformer_11kv_faults
transformer_11kv_faults
A data frame with 103,848 rows and 13 variables:
Utilization of a transformer in %
Is the transformer placed indoors or outdoors?
Altitude above sea level (m)
Distance from salt water (km)
Corrosion zone the asset exists in
Condition converted from TEV %-measurement
Oil acidity (mg KOH/g)
Temperature condition band
Observed condition band
Age of transformer (years)
Probability of failure (current and future) when the transformer failed
Id of transformer that died
Monte carlo result showing if the transformer has died (TRUE)