RF toolkit capacitance calculation

1 visualización (últimos 30 días)
Derek Neal
Derek Neal el 2 de Oct. de 2020
Editada: David Goodmanson el 17 de Nov. de 2020
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?

Respuesta aceptada

David Goodmanson
David Goodmanson el 3 de Oct. de 2020
Editada: David Goodmanson el 3 de Oct. de 2020
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 comentarios
Derek Neal
Derek Neal el 12 de Nov. de 2020
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 el 12 de Nov. de 2020
Editada: David Goodmanson el 17 de Nov. de 2020
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by