Cómo convertir MTTFd a FIT en Python usando UliEngineering

Puedes convertir fácilmente MTTFd (Tiempo Medio Hasta Fallo en días) a FIT (Fallos En Tiempo) usando la librería Python UliEngineering:

MTTFd_to_FIT.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *

# Convertir 41.667 días a FIT
fit = MTTFd_to_FIT("41667d")
print(f"41.667 d = {fit:.0f} FIT")

# Convertir 4.167 días a FIT
fit = MTTFd_to_FIT("4167d")
print(f"4.167 d = {fit:.0f} FIT")

Ejemplo de salida

MTTFd_to_FIT_output.txt
41.667 d = 100 FIT
4.167 d = 1000 FIT

FIT representa fallos por mil millones de horas. La conversión usa la fórmula: $FIT = \frac{10^9}{MTTFd \cdot 24 \cdot 60 \cdot 60}$.

Entradas relacionadas


Echa un vistazo a artículos similares por categoría: Reliability Python