I need to automate the netlist extraction and comparison, can FAB 3000 do this?
N
Numerical Support Team
started a topic
about 14 years ago
I need to automate the netlist extraction and comparison, can FAB 3000 do this?
1 Comment
N
Numerical Support Team
said
about 14 years ago
I need to automate the netlist extraction and comparison, can FAB 3000 do this? Yes, FAB 3000 has two options: Using the FAB 3000 Import Matrix file, or write a C Script.
(1) Using the FAB 3000 Import Matrix file:
Note: FAB 3000 has an "import matrix file" which allows anyone to create a sample text file which lets you automatically import gerber/drill files, assign layer colors/types, assign panel, run netlist, and compare nets. Perhaps the matrix file will work fine for you right now; to find out more information about the "FAB Import Matrix", please view the Help Manual: http://www.numericalinnovations.com/help/FAB3000.pdf
(2) Writing a C script. FAB 3000 can interpret scripts written in the C/C++ language. See below for a sample script on how to automate the process.
///////////////////////////////////////////////////////////////// // 1. This script assumes that you have already imported // all layers and definted their layer types. // 2. This script assumes that you have already imported netlist /////////////////////////////////////////////////////////////////
#include "Fab3000.h"
int main () { char buffer[200], sPatternList[100], sFile[250];
Numerical Support Team