main Content

S2RLGC

将S-参数转换为RLGC传输线参数

描述

rlgc_params= s2rlgc(s_params,,,,长度,,,,弗雷克transforms multi-port S-parameter data into RLGC transmission line parameters using a reference impedance of 50 Ω.

例子

rlgc_params= s2rlgc(___,,,,Z0将多端口S-参数数据转换为RLGC传输线的频域表示Z0。将此选项与上一个语法中的输入参数一起使用。

例子

全部收缩

定义S-参数。

S_11 = 0.000249791883190134-9.42320545953709E -005I;S_12 = 0.999250283783862 -0.000219770154524734I;S_21 = 0.999250283783863 -0.000219770154524756I;S_22 = 0.000249791883190079-9.42320545953931E -005I;s_params = [S_11,S_12;S_21,S_22];

Specify the length, frequency of operation, and impedance of the transmission line.

长度= 1e-3; freq = 1e9; z0 = 50;

从S-参数转换为RLGC参数。

rlgc_params = s2rlgc(s_params,,,,长度,,,,弗雷克,Z0)
rlgc_params =带有字段的结构:r: 50.0000 L: 1.0000e-09 G: 0.0100 C: 1.0000e-12 alpha: 0.7265 beta: 0.2594 Zc: 63.7761 -14.1268i

输入参数

全部收缩

指定2n-by-2n-by-mS-参数的数组转换为RLGC传输线参数。下图描述了该函数假定的端口排序约定。

该功能假设:

  • 每个2n-by-2n矩阵包括n输入终端和n输出终端。

  • 首先n端口(1至n)of the S-parameter matrix are input ports.

  • 最后n端口(n+ 1通过2n)是输出端口。

要在使用此功能之前重新排序端口,请使用snp2smp功能。

指定以米为单位的传输线的长度。

指定向量mS参数阵列的频率s_params被定义为。

参考阻抗ofn- 端口S-参数,在欧姆中指定为正面的量表。

输出参数

全部收缩

输出rlgc_params是其字段的结构n-by-n-by-m数组of transmission line parameters. Each of themn-by-nmatrices correspond to a frequency in the input vector弗雷克

  • rlgc_params.R是分布式电阻的数组,单位为ω/m。矩阵是真实的对称性,对角线术语是非负的,并且非对角线项是无负的。

  • rlgc_params.Lis an array of distributed inductances, in units of H/m. The matrices are real symmetric, the diagonal terms are positive, and the off-diagonal terms are nonnegative.

  • rlgc_params.G是S/M单位的分布式电导阵列。矩阵是真实的对称性,对角线术语是非负的,并且非对角线项是非阳性的。

  • rlgc_params.C是一个分布式参数数组在单位吗of F/m. The matrices are real symmetric, the diagonal terms are positive, and the off-diagonal terms are nonpositive.

  • rlgc_params.zc是欧姆的一系列复杂的特征线阻抗。

  • rlgc_params.alpha是NP/m单位的一系列实际衰减系数。

  • rlgc_params.beta是一个真实相常数的数组,单位为rad/m。

更多关于

全部收缩

RLCG传输线模型

下图说明了RLGC传输线模型。

表示由:

  • The distributed resistance,r,以串联电阻为代表的导体。

  • 分布式电感,l,以串联电感器为代表的导体。

  • 分布式电导,G,在两个导体之间,由分流电阻代表。

  • The distributed capacitance,C,,,,between the two conductors, represented by a shunt capacitor.

rlGCcomponent units are all per unit length ΔX

references

[1] Degerstrom, M.J., Gilbert, B.K., and Daniel, E.S . "Accurate resistance, inductance, capacitance, and conductance (RLCG) from uniform transmission line measurements."Electrical Performance of Electronic Packaging。IEEE-EPEP, 18th Conference, 27–29 October 2008, pp. 77–80.

[2] Sampath,M.K。“在解决使用S参数模型的RLGC参数提取RLGC参数中的实际问题时。”电子包装的电性能,。IEEE-EPEP,第18届会议,2008年10月27日至29日,第259–262页。

[3] Eisenstadt,W。R.和Eo,Y。“基于S-参数的IC互连传输线表征”组件,混合动力车和制造技术的IEEE交易。卷。15,第4号,1992年8月,第483–490页。

版本历史记录

在R2011b中引入