-
Notifications
You must be signed in to change notification settings - Fork 0
Würth Reliability data
For the reliability data from Würth Electronics, there exists a PDF document, which describes the reliability of components for various temperatures and different stress levels.
The data from this PDF-document can be stored and used from a database. The conversion from the PDF into the database is rather simple.
The database consists of two tables.
-
the lookuptable
CREATE TABLE MatchCodeMapping (matchcode varchar(32), FITtable decimal(3,1), FITcurve char, SIGMAtable decimal(3,1), SIGMAcurve char) -
the datatable
CREATE TABLE "reliability_data" ("table" DECIMAL(3,1) NOT NULL ,"curve" CHAR NOT NULL ,"temperature" FLOAT NOT NULL ,"FIT" FLOAT,"date" DATETIME DEFAULT (CURRENT_TIMESTAMP) )
The data is stored in these tables as shown below:
-
Lookup data: "WE-CBA","5.1","C","6.1","O"
-
Data "5.1","A","5.69","0.75125","2016-12-01"