Multisim and Ultiboard

cancel
Showing results for 
Search instead for 
Did you mean: 

Temperature coefficient of Capacitors

How does the capacitor value change with the operating temperature in Multisim? Is there a way to include the temperature coefficient for the capacitors when I run the analysis at a different operating temperature (say at -40C, +125C)..

0 Kudos
Message 1 of 2
(3,747 Views)

You can use temperature coefficients with capacitors, however, the standard capacitor component does not have a way to specify this parameter. I believe you will need to use the Arbitrary SPICE block.

For example, the following creates a 0.001 F capacitor with some temperature coefficients.

C1 0.001 0 1 cmod
.model cmod c(TC1=0.01 TC2=0.001 TNOM=100)

 

The capacitor obeys the equation <value> * C * (1 + VC1 * V + VC2 * V^2) * ( 1 + TC1 * (T - Tnom) + TC2 * (T - Tnom)^2). T is the operating temperature specified in the analysis options (ANALYSIS > Analysis Options > Use Custom Settings > Customize > Global > Operating Temperature).

 

In the latest update (10.1.1), you can also use PSpice-style temperature parameters. The equation isn't there, but you can have a look at all supported parameters in the Multisim User Manual (Chapter 7 Multisim SPICE Reference > Analog Devices > Capacitor)

Garret
Senior Software Developer
National Instruments
Circuit Design Community and Blog

If someone helped you, let them know. Mark as solved or give a kudo. 🙂
0 Kudos
Message 2 of 2
(3,717 Views)