Main Content

inductance

Calculate inductance

Since R2021b

Description

inductance(object,frequency) calculates and plots the inductance of an inductor over the specified frequency.

example

l = inductance(object,frequency) calculates the inductance of an inductor over the specified frequency.

Examples

collapse all

Create a hexagonal spiral inductor with default properties.

inductor = spiralInductor(SpiralShape='Hexagon');
show(inductor)

Figure contains an axes object. The axes object with title spiralInductor element, xlabel x (mm), ylabel y (mm) contains 10 objects of type patch, surface. These objects represent Copper, feed, RTDuriod.

Calculate the inductance of the inductor at 600 MHz.

inductance(inductor,600e6)

Figure contains an axes object. The axes object with title Inductance, xlabel Frequency(GHz), ylabel Inductance(nH) contains a line object which displays its values using only markers.

l = inductance(inductor,600e6)
l = 
4.0503e-08

Input Arguments

collapse all

Spiral inductor, specified as an spiralInductor object.

Data Types: char | string

Frequency to calculate inductance, specified as a nonnegative scalar or vector in hertz.

Data Types: double

Output Arguments

collapse all

Inductance of the inductor, returned as a scalar or vector in henries.

Data Types: double

Version History

Introduced in R2021b

See Also