Main Content

rfckt.microstrip

Microstrip transmission line

Description

Use themicrostripclass to represent microstrip transmission lines characterized by line dimensions and optional stub properties.

A microstrip transmission line is shown in cross-section in the following figure. Its physical characteristics include the microstrip width (w), the microstrip thickness (t), the substrate height (d), and the relative permittivity constant (ε).

microstrip transmission line

Creation

Description

example

h = rfckt.microstripreturns a microstrip transmission line object whose properties are set to their default values.

h = rfckt.microstrip(Name,Value)sets properties using one or more name-value pairs. For example,rfckt.microstrip('Thickness',0.0075e-6)creates a microstrip transmission line with thickness of0.0075e-6meters. You can specify multiple name-value pairs. Enclose each property name in a quote. Properties not specified retain their default values.

Properties

expand all

Computed S-parameters, noise figure, OIP3, and group delay values, specified asrfdata.dataobject.AnalyzedResultis a read-only property. For more information refer,Algorithms.

Data Types:function_handle

Relative permittivity of dielectric, specified as a scalar. The relative permittivity is the ratio of permittivity of the dielectric, ε , to the permittivity in free space, ε 0 .

Data Types:double

Dielectric thickness or physical height of the conductor, specified as a scalar in meters.

Data Types:double

Physical length of transmission, specified as a scalar in meters.

Data Types:double

Loss angle tangent of dielectric, specified as a scalar.

Data Types:double

This property is read-only.

Object name, specified as an1-by-Ncharacter array or string scalar.

Data Types:char

数量的端口,指定为一个positive integer.nportt is a read-only property.

Data Types:double

Conductor conductivity, specified as a scalar in Siemens per meter (S/m).

Data Types:double

Type of stub, specified as one of the following values:'NotaStub','Series','Shunt'.

Data Types:double

存根输电线路终止, specified as one of the following values:'NotApplicable','Open','Short'.

Data Types:double

Physical thickness of microstrip, specified as a scalar in meters.

Data Types:double

Physical width of parallel-plate, specified as a scalar in meters.

Data Types:double

Object Functions

analyze Analyze RFCKT object in frequency domain
calculate Calculate specified parameters for rfckt objects or rfdata objects
circle Draw circles on Smith Chart
extract Extract specified network parameters from rfckt object or data object
listformat List valid formats for specified circuit object parameter
listparam List valid parameters for specified circuit object
loglog Plot specified circuit object parameters using log-log scale
plot Plot circuit object parameters on X-Y plane
plotyy Plot parameters of RF circuit or RF data on X-Y plane with two Y-axes
getop Display operating conditions
polar Plot specified object parameters on polar coordinates
semilogx Plot RF circuit object parameters using log scale forx-axis
semilogy Plot RF circuit object parameters using log scale fory-axis
smith Plot circuit object parameters on Smith chart
write Write RF data from circuit or data object to file
getz0 Calculate characteristic impedance of RFCKT transmission line object
read Read RF data from file to new or existing circuit or data object
restore Restore data to original frequencies
getop Display operating conditions
groupdelay Group delay of S-parameter object or RF filter object orRF Toolboxcircuit object

Examples

collapse all

Create a microstrip transmission line usingrfckt.microstrip.

tx1=rfckt.microstrip('Thickness',0.0075e-6)
tx1 = rfckt.microstrip with properties: Width: 6.0000e-04 Height: 6.3500e-04 Thickness: 7.5000e-09 EpsilonR: 9.8000 LossTangent: 0 SigmaCond: Inf LineLength: 0.0100 StubMode: 'NotAStub' Termination: 'NotApplicable' nPort: 2 AnalyzedResult: [] Name: 'Microstrip Transmission Line'

Algorithms

Theanalyzemethod treats the microstrip line as a 2-port linear network and models the line as a transmission line with optional stubs. Theanalyzemethod computes theAnalyzedResultproperty of the transmission line using the data stored in therfckt.microstripobject properties as follows:

  • If you model the transmission line as a stubless line, theanalyzemethod first calculates the ABCD-parameters at each frequency contained in the modeling frequencies vector. It then uses theabcd2sfunction to convert the ABCD-parameters to S-parameters.

    Theanalyzemethod calculates the ABCD-parameters using the physical length of the transmission line,d, and the complex propagation constant,k, using the following equations:

    A = e k d + e k d 2 B = Z 0 * ( e k d e k d ) 2 C = e k d e k d 2 * Z 0 D = e k d + e k d 2

    Z0andkare vectors whose elements correspond to the elements off, the vector of frequencies specified in theanalyzeinput argumentfreq. Both can be expressed in terms of the specified conductor strip width, substrate height, conductor strip thickness, relative permittivity constant, conductivity, and dielectric loss tangent of the microstrip line, as described in [1].

  • If you model the transmission line as a shunt or series stub, theanalyzemethod first calculates the ABCD-parameters at the specified frequencies. It then uses theabcd2sfunction to convert the ABCD-parameters to S-parameters.

    When you set theStubModeproperty to'Shunt', the 2-port network consists of a stub transmission line that you can terminate with either a short circuit or an open circuit.

    Short and open circuit shunt stubs

    Zinis the input impedance of the shunt circuit. The ABCD-parameters for the shunt stub are calculated as:

    A = 1 B = 0 C = 1 / Z i n D = 1

    When you set theStubModeproperty to'Series', the 2-port network consists of a series transmission line that you can terminate with either a short circuit or an open circuit.

    Short and open circuit series stubs

    Zinis the input impedance of the series circuit. The ABCD-parameters for the series stub are calculated as:

    A = 1 B = Z i n C = 0 D = 1

References

[1] Gupta, K. C., R. Garg, I. Bahl, and P. Bhartia,Microstrip Lines and Slotlines, 2nd Edition, Artech House, Inc., Norwood, MA, 1996.

Version History

Introduced before R2006a