This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I am using TI-TINA9, and I am getting an UNDEFINED MODEL when attempting to add an NXP BFG403W. The SPICE listing provided by NXP passes the 'compile' test from IMPORT PSPICE Netlist. It also does NOT share the NXP-peculiar L=, C=, R= syntax mentioned as being used in other NXP models, as mentioned in another similar post.
The error message shows up after either selecting a device type (the BFG403W is an NPN BJT) or allowing TINA to make it a 'yellow box' three-terminal device, and attempting to assign the base, emitter, and collector to the numerical pins on the package. I will past in a copy of the SPICE subckt file below.
The only thing that I can think of that is giving the program difficulties is that the BJT is packaged in a four-pin package with two emitters, but the initial lines of the SPICE file identifies only three terminals (.subckt BFG403W 1 2 3). Later in the SPICE model, it does 'mention' 4 pins (Q1 4 5 6 6 NPN). There are no dual emitter models in the TINA DDB that I can find.
Do I need to create a new 'device' to put in the DDB, or is this some other problem?
I'm pretty much at wit's end. Every combination I try results in the error message. The model is listed below. Thanks and cheers.
* Filename: BFG403W_SPICE.PRM
.subckt BFG403W 1 2 3
L1 2 5 1.1E-09
L2 1 4 1.1E-09
L3 3 6 0.25E-09
Ccb 4 5 2.0E-15
Cbe 5 6 80.0E-15
Cce 4 6 80.0E-15
Cbpb 5 7 1.45E-13
Cbpc 4 8 1.45E-13
Rsb1 6 7 25
Rsb2 6 8 19
Q1 4 5 6 6 NPN
.MODEL BFG403W NPN
+ IS = 5.554E-18
+ BF = 145
+ NF = 0.9934
+ VAF = 31.12
+ IKF = 35.75E-03
+ ISE = 3.535E-14
+ NE = 3
+ BR = 11.37
+ NR = 0.985
+ VAR = 1.874
+ IKR = 14.3E-03
+ ISC = 5.708E-17
+ NC = 1.546
+ RB = 122.38
+ IRB = 0
+ RBM = 52.45
+ RE = 1.511
+ RC = 15.119
+ CJE = 3.661E-14
+ VJE = 0.9
+ MJE = 0.3456
+ CJC = 1.621E-14
+ VJC = 0.5569
+ MJC = 0.2079
+ CJS = 7.859E-14
+ VJS = 0.4183
+ MJS = 0.2391
+ XCJC = 0.5
+ TR = 0.0
+ TF = 4.122E-12
+ XTF = 68.2
+ VTF = 2.004
+ ITF = 0.1796
+ PTF = 0
+ FC = 0.5501
+ EG = 1.11
+ XTI = 3
+ XTB = 1.5
.ENDS
John,
I noticed a couple of things. First, the device package has two emitter connections, but does not have two separate emitters. Second, the BJT model being used is a 3 terminal device model. Finally, the statement where the Q is specified is incorrect. I have corrected the netlist:
Q1 4 5 6 BFG403W
I removed the second 6 (an NPN is a three terminal device) and the model was not NPN, it was the BFG403W, which is an NPN device.
Here is the .TSM file. I did not test the device, but it should have imported correctly. The syntax checker probably should have flagged the Q statement with 4 terminals and the missing model named NPN, but I am not sure it checks that in the importer.
Only changing the model definition to BFG403W from NPN will suffice
it can have 4 pins (4th pin = substrate ) below is general spice syntax for BJT
Suresh,
Good point. Probably should keep the second 6 in the Q placement statement. Not surre how much that will effect the simulation, but it might.
Thanks very much, Britt. Making those changes seemed to work, and I was able to compile it and add that model into TINA. John...