Python: PFH in MTTF umrechnen mit UliEngineering
Du kannst leicht PFH (Probability of Failure per Hour) in MTTF (Mean Time To Failure) mit der UliEngineering-Python-Bibliothek umrechnen:
PFH_to_MTTF.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# 1e-6 PFH in MTTF umrechnen
mttf = PFH_to_MTTF(1e-6)
print(f"1e-6 PFH = {format_value(mttf, 'h')}")
# 1e-5 PFH in MTTF umrechnen
mttf = PFH_to_MTTF(1e-5)
print(f"1e-5 PFH = {format_value(mttf, 'h')}")Beispielausgabe
PFH_to_MTTF_output.txt
1e-6 PFH = 1.00e+06 h
1e-5 PFH = 1.00e+05 hPFH ist die Ausfallwahrscheinlichkeit pro Stunde. Die Umrechnung verwendet die Formel: $MTTF = \frac{1}{PFH}$ Stunden.
Verwandte Beiträge
- How to convert FIT to MTTF in Python using UliEngineering
- How to convert MTTF to PFH in Python using UliEngineering
- How to convert PFHd to FIT 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