Maker Pro
Maker Pro

Invalid number

O

Oliver Friedrich

Hallo,

the following line

R_R_B 0 N01640 10k TC1=100u T_MEASURED=25

generates an "Invalid number" error. If I ommit the T_MEASURED=25
statement, everything works fine.

This T_MEASURED is written in the documentation (OrCAD PSPice). Is there
something wrong?


Second thing: How can I pass parameters down to a MODEL description?


Thanks a lot

Oliver Friedrich
 
J

Jim Thompson

Hallo,

the following line

R_R_B 0 N01640 10k TC1=100u T_MEASURED=25

generates an "Invalid number" error. If I ommit the T_MEASURED=25
statement, everything works fine.

This T_MEASURED is written in the documentation (OrCAD PSPice). Is there
something wrong?


Second thing: How can I pass parameters down to a MODEL description?


Thanks a lot

Oliver Friedrich

T_MEASURED=25 goes in the .MODEL statement

Parameters can be passed into .MODEL statements simply by declaring
..param name = value or {expression}

Parameters are only read once... during read-in of the .CIR file and
some global names such as TEMP don't work, you need to do an ABM
evaluation to work around it.

...Jim Thompson
 
Top