Class ABGT<T>
java.lang.Object
org.jreliability.importancemeasures.ABGT<T>
- Type Parameters:
T- The type of the variables of theBDDof the system
- All Implemented Interfaces:
ImportanceMeasure,TimeDependentImportanceMeasure<T>
The
ABGT class calculates the ABGT importance for coherent and non-coherent systems
proposed by [ABGT17].
[ABGT17] ( https://doi.org/10.1016/j.ress.2016.12.013 )-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final CriticalityCalculator<T> protected final org.apache.commons.collections15.Transformer<T, ReliabilityFunction> -
Constructor Summary
ConstructorsConstructorDescriptionABGT(BDD<T> bdd, org.apache.commons.collections15.Transformer<T, ReliabilityFunction> transformer) -
Method Summary
-
Field Details
-
bdd
-
transformer
-
bddTTRF
-
critCalc
-
-
Constructor Details
-
ABGT
public ABGT(BDD<T> bdd, org.apache.commons.collections15.Transformer<T, ReliabilityFunction> transformer) - Parameters:
bdd- TheBDDrepresenting the system structure functiontransformer- TheTransformerused to get theReliabilityFunctionof variables present in theBDD
-
-
Method Details
-
calculate
Calculates the ABGT importances for all components at the specified time. Uses equation 15 and 23 of [ABGT17] to calculate the importance from the failure and repairCriticalityBDDsof the components.- Specified by:
calculatein interfaceTimeDependentImportanceMeasure<T>- Parameters:
time- Time t at which the ABGT importance of all components is calculated. Must be greater than 0, otherwise an IllegalArgumentException is thrown.- Returns:
- results Map of components and their respective ABGT importance at time t.
-