Main Content

design

Design T-junction power splitter around specified frequency

Since R2022b

Description

splitter = design(splitterteeobj,frequency) calculates the dimensions of a T-junction power splitter around the specified frequency.

example

splitter = design(___,Name=Value) designs a T-junction power splitter with additional options specified using name-value arguments.

Note

PCB components designed using the design function operate around the specified frequency with a 10-15% tolerance.

Examples

collapse all

Design a T-junction power splitter at 2 GHz with a characteristic impedance Z0 of 75 ohms.

splitter = design(splitterTee,2e9,Z0=75);

View the power divider.

show(splitter);

Input Arguments

collapse all

T-junction power splitter, specified as a splitterTee object.

Example: splitterteeobj = splitterTee; design(splitterteeobj,2e9) designs a T-junction power splitter around a frequency of 2 GHz.

Design frequency of the T-junction power splitter, specified as a real positive scalar in hertz.

Example: 55e6

Data Types: double

Name-Value Arguments

Example: Z0=70

Characteristic impedance of the T-junction power splitter, specified as a positive scalar in ohms.

Data Types: double

Output Arguments

collapse all

T-junction power splitter operating around the specified frequency, returned as a splitterTee object.

Version History

Introduced in R2022b

See Also