Class Vaurio<T>

  • Type Parameters:
    T - The type of the variables of the BDD of the system
    All Implemented Interfaces:
    ImportanceMeasure, TimeDependentImportanceMeasure<T>

    public class Vaurio<T>
    extends java.lang.Object
    implements TimeDependentImportanceMeasure<T>
    The Vaurio class calculates the Vaurio Importance for non-coherent systems proposed by [Vau16]. Uses [ABGT17] for an easy representation. [Vau16] ( https://doi.org/10.1016/j.ress.2015.11.007 ) [ABGT17] ( https://doi.org/10.1016/j.ress.2016.12.013 )
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Map<T,​java.lang.Double> calculate​(double time)
      Calculates the Vaurio importances for all components at the specified time.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Vaurio

        public Vaurio​(BDD<T> bdd,
                      org.apache.commons.collections15.Transformer<T,​ReliabilityFunction> transformer)
        Returns a Vaurio calculator for a specific system with its BDD and ReliabilityFunction Transformer.
        Parameters:
        bdd - The BDD representing the system structure function
        transformer - The Transformer used to get the ReliabilityFunction of variables present in the BDD
    • Method Detail

      • calculate

        public java.util.Map<T,​java.lang.Double> calculate​(double time)
        Calculates the Vaurio importances for all components at the specified time. Uses equation 8 of [ABGT17] to calculate the importance from the failure and repair CriticalityValues of the components.
        Specified by:
        calculate in interface TimeDependentImportanceMeasure<T>
        Parameters:
        time - Time t at which the Vaurio importance of all components is calculated. Must be greater than 0, otherwise an IllegalArgumentException is thrown.
        Returns:
        results Map of components and their respective Vaurio importance at time t.