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.

THS4302 Pspice model simulation problems using hspice

Other Parts Discussed in Thread: THS4302, TINA-TI

I simulate the spice model of wideband fixed-gain amplifier THS4302 with Hspice 2015 provided from TI official website Howerver, there are some error from

THS4302 Pspice Model (Rev. A) as following.

Sbias1 90 91 PD VS- S_TRUE

Srop 3 32 6 4 S_Output

Sron 42 4 6 4 S_Output

In my thought, I think hspice can't identify the description.

Can you provide me how to fix the problem?

The detailed information is:

website:http://www.ti.com/product/THS4302/toolssoftware

title:THS4302 Pspice Model (Rev. A) ]

Spice netlist:
.title ths4302 testbench

.inc './ths4302.lib'
.option post probe
VS+ VS+ gnd dc 2.5
VS- VS- gnd dc -2.5
V_PD PD gnd dc high

*************************
* unity gain topology *
*************************
x1 IN1+ OUTPP VS+ VS- OUTPP PD ths4302
x2 IN2+ OUTNN VS+ VS- OUTNN PD ths4302 

**********************************
* stability and output loading *
**********************************
RISO1 OUTPP OUTP 20
RISO2 OUTNN OUTN 20
COUTP OUTP gnd 100p
COUTN OUTN gnd 100p
 
*****************
* input signal *
*****************
vIN1+ IN1+ gnd pulse(swing_low swing_high 0.1n 0.1n 0.1n 'period/2' period)
vIN2+ IN2+ gnd pulse(swing_high swing_low 0.1n 0.1n 0.1n 'period/2' period)

.param freq=100x
.param period='1/freq'
.param vcom=0.9
.param swing=0.6
.param swing_high = 'vcom+swing/2'
.param swing_low = 'vcom-swing/2'

********************
* simulate setup *
*******************
 .tran 10p 500n
 .probe tran vod=par('v(OUTP)-v(OUTN)')

.end