Python: MTTFd in B10d umrechnen mit UliEngineering
English
Deutsch
Du kannst leicht MTTFd (Mean Time To Failure in Tagen) in B10d (Zeitpunkt, zu dem 10% der Einheiten ausgefallen sind) mit der UliEngineering-Python-Bibliothek umrechnen:
MTTFd_to_B10d.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# MTTFd von 95.000 Tagen in B10d umrechnen
b10d = MTTFd_to_B10d("95000d")
print(f"MTTFd 95.000 d = {format_value(b10d, 'd')}")
# MTTFd von 47.500 Tagen in B10d umrechnen
b10d = MTTFd_to_B10d("47500d")
print(f"MTTFd 47.500 d = {format_value(b10d, 'd')}")Beispielausgabe
MTTFd_to_B10d_output.txt
MTTFd 95.000 d = 1.00e+04 d
MTTFd 47.500 d = 5.00e+03 dB10d ist der Zeitpunkt, zu dem 10% der Einheiten ausgefallen sind. Die Umrechnung verwendet die Weibull-Verteilungsformel: $B10d = MTTFd \times 0,1053605$.
Verwandte Beiträge
- How to convert B10d to MTTFd in Python using UliEngineering
- How to convert FIT to MTTFd 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