How to get a temperature related current source in Cadence?

Status
Not open for further replies.

newhand

Member level 1
Joined
Dec 7, 2004
Messages
35
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
332
temperature sweep in cadence

Because the need of simulation,I need to get a current source,
whose value is "I=10mA*exp(T/27)",T=temperature,
so when I do temperature sweep, I can get a changed current source as the expression above.
But I don't know how to cite the parameter "temperature",
can anyone know?
 

I need to do temperature sweep in Cadence too, can anyone help?
 

Little bit late, but maybe it could be still interesting.
Use simply Verilog-A to model this current source, it is really simple:

This code would do it:

`include "constants.vams"
`include "disciplines.vams"

module cs_exptemp(p,n);

inout p,n;
electrical p,n;

parameter real I0 = 10.0e-3;

analog

I(p,n) <+ I0*exp(($temperature-273.15)/27);

endmodule

BR
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…