Main Content

rfckt.lcbandpasspi

Bandpass pi filter

Description

Use the rfckt.lcbandpasspi object to create a bandpass pi filter as a network of inductors and capacitors as shown in this figure.

2-port LC Bandpass pi network

In the diagram, [L1, L2, L3, L4, ...] is the value of the 'L' object property, and [C1, C2, C3, C4, ...] is the value of the 'C' object property.

Note

lcladder is recommended over rfckt.lcbandpasspi because it enables you to:

  • Create a two-port bandpass pi filter.

  • Convert an rffilter object to an LC ladder filter.

  • Build a circuit object with an LC ladder element.

  • Model a two-port bandpass pi filter element in an RF chain created using an rfbudget object or the RF Budget Analyzer app, and then export this element to RF Blockset™ or to rfsystem System object™ for circuit envelope analysis.

(since R2023b)

Creation

Description

example

h = rfckt.lcbandpasspireturns an LC bandpass pi network object whose properties all have their default values.

h = rfckt.lcbandpasspi('Property1',value1,'Property2',value2,...) sets properties using one or more name-value pairs. You can specify multiple name-value pairs. Enclose each property name in a quote

Properties

expand all

Computed S-parameters, noise figure, OIP3, and group delay values, specified as a comma-separated pair consisting of 'AnalyzedResult' and rfdata.data object. The values are computed over the specified frequency range. By default, this property is empty.

Data Types: function_handle

Capacitance value from source to load of all capacitors in the network, specified as a comma separated pair consisting of 'C' and a positive vector in farads. The length of the capacitance vector must be equal to the length of the vector you provide for 'L'. The default value is [0.3579e-10, 0.0118e-10, 0.3579e-10].

Data Types: double

Inductance value from source to load of all inductors in the network, specified as a comma separated pair consisting of 'L' and a positive vector in henries. The length of the inductance vector must be equal to the length of the vector you provide for 'C'. The default value is [0.0144e-7, 0.4395e-7, 0.0144e-7].

Data Types: double

Object name, specified as a comma-separated pair consisting of 'Name' and 1-by-N character array. This is a read-only property.

Data Types: char

Number of ports, specified as a comma-separated pair consisting of 'nport' and a positive integer. This is a read-only property. The default value is 2.

Data Types: double

Object Functions

analyzeAnalyze RFCKT object in frequency domain
calculateCalculate specified parameters for rfckt objects or rfdata objects
circleDraw circles on Smith Chart
extractExtract specified network parameters from rfckt object or data object
listformatList valid formats for specified circuit object parameter
listparamList valid parameters for specified circuit object
loglogPlot specified circuit object parameters using log-log scale
plotPlot circuit object parameters on X-Y plane
plotyyPlot parameters of RF circuit or RF data on X-Y plane with two Y-axes
getopDisplay operating conditions
polarPlot specified object parameters on polar coordinates
semilogxPlot RF circuit object parameters using log scale for x-axis
semilogyPlot RF circuit object parameters using log scale for y-axis
smithPlot circuit object parameters on Smith chart
writeWrite RF data from circuit or data object to file
getz0Calculate characteristic impedance of RFCKT transmission line object
readRead RF data from file to new or existing circuit or data object
restoreRestore data to original frequencies
getopDisplay operating conditions
groupdelayGroup delay of S-parameter object or RF filter object or RF Toolbox circuit object

Examples

collapse all

Create an LC bandpass filter of capacitor values 1e-12 and 4e12 farads, inductor values 2e-9 and 2.5e-9 henries.

filter = rfckt.lcbandpasspi('C',[1e-12 4e-12],'L',[2e-9 2.5e-9])
filter = 
   rfckt.lcbandpasspi with properties:

                 L: [2x1 double]
                 C: [2x1 double]
             nPort: 2
    AnalyzedResult: []
              Name: 'LC Bandpass Pi'

References

[1] Ludwig, R. and P. Bretchko, RF Circuit Design: Theory and Applications, Prentice-Hall, 2000.

[2] Zverev, A.I., Handbook of Filter Synthesis, John Wiley & Sons, 1967.

Version History

Introduced before R2006a