Python: MTTFd in FIT umrechnen mit UliEngineering
English
Deutsch
Du kannst leicht MTTFd (Mean Time To Failure in Tagen) in FIT (Failures In Time) mit der UliEngineering-Python-Bibliothek umrechnen:
MTTFd_to_FIT.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# 41.667 Tage in FIT umrechnen
fit = MTTFd_to_FIT("41667d")
print(f"41.667 d = {fit:.0f} FIT")
# 4.167 Tage in FIT umrechnen
fit = MTTFd_to_FIT("4167d")
print(f"4.167 d = {fit:.0f} FIT")Beispielausgabe
MTTFd_to_FIT_output.txt
41.667 d = 100 FIT
4.167 d = 1000 FITFIT repräsentiert Ausfälle pro Milliarde Stunden. Die Umrechnung verwendet die Formel: $FIT = \frac{10^9}{MTTFd \cdot 24 \cdot 60 \cdot 60}$.
Verwandte Beiträge
- How to convert MTTF to FIT in Python using UliEngineering
- How to convert FIT to MTTFd in Python using UliEngineering
- How to convert B10d to MTTFd in Python using 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