RF toolkit capacitance calculation

1 回表示 (過去 30 日間)
Derek Neal
Derek Neal 2020 年 10 月 2 日
編集済み: David Goodmanson 2020 年 11 月 17 日
In RF toolkit/transmission line objects, the capacitance per unit length is calculated using the acosh function:
C=πε/acosh(D/2a)
Most texts use this equation:
C=πε/ln(D/a)
Are these expressions equal? If so, how are they equal?

採用された回答

David Goodmanson
David Goodmanson 2020 年 10 月 3 日
編集済み: David Goodmanson 2020 年 10 月 3 日
Hi Derek,
The exact expression is indeed the acosh expression used in Matlab, and we would expect no less. The log expression is an approximation, and it's a bit of a holdover from the times when scientific software was not readily available. acosh was not so easy to calculate, but log tables were common. Leaving out the factor of pi*epsilon, the approximation goes as follows. Using the variable Cinv for 1/C, then
Cinv = acosh(D/2a)
so
cosh(Cinv) = D/2a
(exp(Cinv) + exp(-Cinv))/2 = D/2a
Now if D/2a is large, then Cinv is large and you can drop the exp(-Cinv) term compared to the exp(Cinv) term. Then
exp(Cinv) = D/a
Cinv = log(D/a)
The natural question is, how large is large?
Da = 2:.001:20; % D over a
Cinv1 = acosh(Da/2);
Cinv2 = log(Da);
plot(Da,Cinv1,Da,Cinv2)
legend('acosh(d/2a)','log(D/a)','location','northwest')
The plot shows a pretty good approximation for D/a greater than about 5.
  2 件のコメント
Derek Neal
Derek Neal 2020 年 11 月 12 日
David-
Thank you for your reply. I wondered if I might ask you about the ac resistance formula on the rfckt.twowire page. R=1/πaσδ, where "a" is the RADIUS of the conductor. Most other texts that I've been studying use the diameter. Can you help me understand? Also, is this formula for a solid conductor? Is the skin effect negligible if the conductor is stranded?
David Goodmanson
David Goodmanson 2020 年 11 月 12 日
編集済み: David Goodmanson 2020 年 11 月 17 日
Hi Derek,
It's good to check these things out as you are doing. Looks like they are using radius instead of diameter because that doubles the resistance, and in this situation you have two wires carrying equal current, not just one wire.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by