Python: MTTF in FIT umrechnen mit UliEngineering
English
Deutsch
Du kannst leicht MTTF (Mean Time To Failure) in FIT (Failures In Time) mit der UliEngineering-Python-Bibliothek umrechnen:
MTTF_to_FIT.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# 1.000.000 Stunden in FIT umrechnen
fit = MTTF_to_FIT("1000000h")
print(f"1.000.000 h = {fit:.0f} FIT")
# 100.000 Stunden in FIT umrechnen
fit = MTTF_to_FIT("100000h")
print(f"100.000 h = {fit:.0f} FIT")Beispielausgabe
MTTF_to_FIT_output.txt
1.000.000 h = 100 FIT
100.000 h = 1000 FITFIT repräsentiert Ausfälle pro Milliarde Stunden. Die Umrechnung verwendet die Formel: $FIT = \frac{10^9}{MTTF}$.
Verwandte Beiträge
- How to convert FIT to MTTF in Python using UliEngineering
- How to convert MTTFd to FIT in Python using UliEngineering
- How to convert MTTF to PFH 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