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 CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by