I am trying to add a commercial GaAs FET model (ATF34143) in LTSpice XVII for simulation. The model is provided on this website (http://www.hp.woodshot.com/hprfhelp/design/SPICE/fets.htm#ATF34). Unfortunately the model is not working and I'm currently trying to debug it step by step. At the moment I'm defining a new model with the following lines and I'm giving it as value to a MESFET.
.MODEL BATF34143 NMF (level=2, Vto=-0.95, Beta=0.24, Lambda=0.09, Alpha=4,
+ B=0.8, Tnom=27, Vbi=0.7, Delta=0.2, Cgs=0.8 pF,
+ Cgd=0.16 pF, Rd=0.25, Rg=1, Rs=0.125, Cds=0.04 pF,
+ Is=1 nA, P=0.65)
.ENDS
After lunching the simulation the results are completely wrong and the output log reads:
Error on line 6 : .model batf34143 nmf (level=2, vto=-0.95, beta=0.24, lambda=0.09, alpha=4, b=0.8, tnom=27, vbi=0.7, delta=0.2, cgs=0.8 pf, cgd=0.16 pf, rd=0.25, rg=1, rs=0.125, cds=0.04 pf, is=1 na, p=0.65)
* Unrecognized parameter "tnom" -- ignored
* Unrecognized parameter "vbi" -- ignored
* Unrecognized parameter "delta" -- ignored
* Unrecognized parameter "pf" -- ignored
* Unrecognized parameter "pf" -- ignored
* Unrecognized parameter "rg" -- ignored
* Unrecognized parameter "cds" -- ignored
* Unrecognized parameter "pf" -- ignored
* Unrecognized parameter "na" -- ignored
* Unrecognized parameter "p" -- ignored
Digging around I have found out that this is probably a problem of the model spice is using to simulate my MESFET. By changing the "level" parameter it should be possible to access more advanced models, specifically the Statz model, where the inserted parameters should be recognized. However changing this level value doesn't produce any effect at all. Does anyone have any idea what I'm doing wrong or has any idea on how to make the whole model (with subcircuits) to work?