Comment convertir MTTFd en FIT en Python avec UliEngineering
Vous pouvez facilement convertir MTTFd (Mean Time To Failure en jours) en FIT (Failures In Time) en utilisant la bibliothèque Python UliEngineering :
MTTFd_to_FIT.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# Convertir 41 667 jours en FIT
fit = MTTFd_to_FIT("41667d")
print(f"41,667 d = {fit:.0f} FIT")
# Convertir 4 167 jours en FIT
fit = MTTFd_to_FIT("4167d")
print(f"4,167 d = {fit:.0f} FIT")Exemple de résultat
MTTFd_to_FIT_output.txt
41,667 d = 100 FIT
4,167 d = 1000 FITLe FIT représente le nombre de défaillances par milliard d’heures. La conversion utilise la formule : $FIT = \frac{10^9}{MTTFd \cdot 24 \cdot 60 \cdot 60}$.
Articles liés
- Comment convertir MTTF en FIT en Python avec UliEngineering
- Comment convertir FIT en MTTFd en Python avec UliEngineering
- Comment convertir B10d en MTTFd en Python avec UliEngineering
Check out similar posts by category:
Reliability, Python
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow