pof_future_building {CNAIM} | R Documentation |
Future Probability of Failure for Primary Substation Building and Secondary Substation Building.
Description
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.
Usage
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
)
Arguments
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. |
Value
DataFrame. Future probability of failure along with future health score
Examples
# 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)