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
)
DataFrame. Future probability of failure along with future health score
String. Specify if the asset is located outdoor or indoor.
Numeric. Specify the altitude location for
the asset measured in meters from sea level.altitude_m
is used to derive the altitude factor. See page 111,
table 23 in CNAIM (2021). A setting of "Default"
will set the altitude factor to 1 independent of asset_type
.
Numeric. Specify the distance from the
coast measured in kilometers. distance_from_coast_km
is used
to derive the distance from coast factor See page 110,
table 22 in CNAIM (2021). A setting of "Default"
will set the
distance from coast factor to 1 independent of asset_type
.
Integer. Specify the corrosion index category, 1-5.
Numeric. The current age in years of the conductor.
Named list observed_conditions_input
Named list observed_conditions_input
conductor_samp = c("Low","Medium/Normal","High","Default")
.
See page 161, table 199 and 201 in CNAIM (2021).
Numeric. reliability_factor
shall have a value between 0.6 and 1.5. A setting of "Default"
sets the reliability_factor
to 1.
See section 6.14 on page 73 in CNAIM (2021).
Numeric. k_value = 0.0069
by default. This number is
given in a percentage. The default value is accordingly to the CNAIM standard
on p. 110.
Numeric. c_value = 1.087
by default.
The default value is accordingly to the CNAIM standard see page 110
Numeric. normal_expected_life = 60
by default.
The default value is accordingly to the CNAIM standard on page 107.
Numeric. The last year of simulating probability of failure. Default is 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)
Run the code above in your browser using DataLab