current_health {CNAIM} | R Documentation |
Current Health score
Description
This function calculates the current health score for a given electric network asset (cf. CNAIM, 2021. Page 23, section 4.3.2).
Usage
current_health(
initial_health_score,
health_score_factor,
health_score_cap = "Default",
health_score_collar = "Default",
reliability_factor = "Default"
)
Arguments
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. |
Value
Numeric. The Current health score.
Source
DNO Common Network Asset Indices Methodology (CNAIM), Health & Criticality - Version 2.1, 2021: https://www.ofgem.gov.uk/sites/default/files/docs/2021/04/dno_common_network_asset_indices_methodology_v2.1_final_01-04-2021.pdf
Examples
current_health(initial_health_score = 0.5,
health_score_factor = 0.33,
health_score_cap = 10,
health_score_collar = 0.5,
reliability_factor = 1)