필터 지우기
필터 지우기

What value use Matlab to plot current function?

조회 수: 1 (최근 30일)
ALESSANDRO FRAGIACOMO
ALESSANDRO FRAGIACOMO 2020년 5월 19일
답변: Maadhav Akula 2020년 7월 3일
When I use the function " current(dipole,frequency) " i obtain a figure
The values of the density of current varies from 0 to 2.5 (in this case). Why 2.5 A/m? What value of Imax use Matlab to calculate this distribution?
  댓글 수: 2
KSSV
KSSV 2020년 5월 19일
There is no inbuilt function current in MATLAB. What is that function? You shoud know what it is doing.
ALESSANDRO FRAGIACOMO
ALESSANDRO FRAGIACOMO 2020년 5월 19일
The function current is a function of Antenna Toolbox, a Toolbox of Matlab

댓글을 달려면 로그인하십시오.

채택된 답변

Maadhav Akula
Maadhav Akula 2020년 7월 3일
The Antenna Toolbox uses the Method of Moments technique with Rao-Wilton-Glisson basis functions to discretize and solve Maxwell's equations over the surface of the antenna. The Current Distribution plot is showing the current per unit length, where the length is the length of the basis. In other words, the current is normalized by the basis length. For more information on the Method of Moments solver, please see the following doc page:
To view the mesh used in the Method of Moments calculation, you can use the 'mesh' function. For example:
d = dipole
current(d,75e6)
mesh(d)
Now coming to the colorbar, I think the limits are automatically set by the current distribution on the dipole, like:
i = current(d,75e6);
max_current = max(max(abs(i)))
min_current = min(min(abs(i)))
Hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Antenna and Array Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by