LTspice – Why Does IC-CAP SPICE Level 3 MOSFET Not Match in LTspice?

circuit analysisltspicespice

I am modeling a transistor in IC-CAP using the spice level 3 simulator. I extracted these parameters and tried importing them as a spice model in LT spice, but the output current is less than half and the curves look different. Any suggestions on what am I missing?
Here is the .model:

.MODEL PlanarFET NMOS (LEVEL=3
+UO=117.8 VTO=2 NFS=0 TOX=30n NSUB=2.44E19 NSS=0 VMAX=48.69K 
+RS=19.77K RD=22.51K RSH=0 CBD=0 CBS=0 CJ=0 MJ=0.5 
+CJSW=0 MJSW=0.33 IS=164.2E-12 PB=0.8 FC=0.5 KAPPA=4.537 XJ=0 LD=0 DELTA=0 THETA=0 ETA=0)

The IC-CAP software is using a level three spice simulation based initially on this model, which the parameters are being fitted as shown below in the screenshot.

M1 1=D 2=G 3=S 4=B MOSMOD L=2u W=10u AD=100p AS=100p PD=104u PS=104u
.MODEL MOSMOD NMOS
+ LEVEL     = 3
+ UO        = 600
+ VTO       = 0
+ NFS       = 0
+ TOX       = 100n
+ NSUB      = 1.00e+15
+ NSS       = 0
+ VMAX      = 1MEG
+ RS        = 0
+ RD        = 0
+ RSH       = 0
+ CBD       = 0
+ CBS       = 0
+ CJ        = 0
+ MJ        = 0.5
+ CJSW      = 0
+ MJSW      = 0.33
+ IS        = 1.0E-14
+ PB        = 0.8
+ FC        = 0.5
+ XJ        = 0
+ LD        = 0
+ DELTA     = 0
+ THETA     = 0
+ ETA       = 0
+ KAPPA     = 0.2

enter image description here

Best Answer

Apparently IC-CAP stopped supporting these older spice models and it seems like there was an internal error with the program. I think it may have had something to do with setting the wrong L and W internally. Making use of pspice in IC-CAP or a newer model seems to work fine.

Thanks for the inputs though!