Python: MTTF in PFH umrechnen mit UliEngineering
English
Deutsch
Du kannst leicht MTTF (Mean Time To Failure) in PFH (Probability of Failure per Hour) mit der UliEngineering-Python-Bibliothek umrechnen:
MTTF_to_PFH.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# 1.000.000 Stunden in PFH umrechnen
pfh = MTTF_to_PFH("1000000h")
print(f"1.000.000 h = {pfh:.2e} PFH")
# 100.000 Stunden in PFH umrechnen
pfh = MTTF_to_PFH("100000h")
print(f"100.000 h = {pfh:.2e} PFH")Beispielausgabe
MTTF_to_PFH_output.txt
1.000.000 h = 1.00e-06 PFH
100.000 h = 1.00e-05 PFHPFH ist die Ausfallwahrscheinlichkeit pro Stunde. Die Umrechnung verwendet die Formel: $PFH = \frac{1}{MTTF}$.
Verwandte Beiträge
- How to convert FIT to MTTF in Python using UliEngineering
- How to convert PFH to MTTF in Python using UliEngineering
- How to convert MTTFd 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