Můžete snadno převést FIT (počet poruch za čas) na MTTFd (průměrná doba do poruchy ve dnech) pomocí knihovny UliEngineering v Pythonu:
Σ
TechOverflow calculators:
You can enter values with SI suffixes like 12.2m (equivalent to 0.012) or 14k (14000) or 32u (0.000032).
The results are calculated while you type and shown directly below the calculator, so there is no need to press return or click on a Calculate button.
You can enter values with SI suffixes like 12.2m (equivalent to 0.012) or 14k (14000) or 32u (0.000032).
The results are calculated while you type and shown directly below the calculator, so there is no need to press return or click on a Calculate button.
FIT
⚠
FIT_to_MTTFd.py
from UliEngineering.Reliability.Conversion import *
from UliEngineering.EngineerIO import *
# Převod 100 FIT na MTTFd
mttfd = FIT_to_MTTFd(100)
print(f"100 FIT = {format_value(mttfd, 'd')}")
# Převod 1000 FIT na MTTFd
mttfd = FIT_to_MTTFd(1000)
print(f"1000 FIT = {format_value(mttfd, 'd')}")Příklad výstupu
FIT_to_MTTFd_output.txt
100 FIT = 4.17e+04 d
1000 FIT = 4.17e+03 dMTTFd je průměrná doba do poruchy vyjádřená ve dnech. Převod používá vzorec: $MTTFd = \frac{10^9}{FIT \cdot 24 \cdot 60 \cdot 60}$ dnů.
Související příspěvky
Podívejte se na podobné články podle kategorie:
Calculators Reliability Python
Pokud vám tento článek pomohl, zvažte, zda mi nekoupíte kávu nebo nepřispějete přes PayPal na podporu výzkumu a publikování nových článků na TechOverflow