Python: FIT in MTTF umrechnen mit UliEngineering
English
Deutsch
Du kannst leicht FIT (Failures In Time) in MTTF (Mean Time To Failure) mit der UliEngineering-Python-Bibliothek umrechnen:
FIT_to_MTTF.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# 100 FIT in MTTF umrechnen
mttf = FIT_to_MTTF(100)
print(f"100 FIT = {format_value(mttf, 'h')}")
# 1000 FIT in MTTF umrechnen
mttf = FIT_to_MTTF(1000)
print(f"1000 FIT = {format_value(mttf, 'h')}")Beispielausgabe
FIT_to_MTTF_output.txt
100 FIT = 1.00e+06 h
1000 FIT = 1.00e+05 hFIT repräsentiert Ausfälle pro Milliarde Stunden. Die Umrechnung verwendet die Formel: $MTTF = \frac{10^9}{FIT}$ Stunden.
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 PFH to MTTF 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