![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1431078/image.png)
Radiation Pattern of Half-Wave Dipole Antenna at 144 MHz
조회 수: 10 (최근 30일)
이전 댓글 표시
Can you please help me? I need to know the code for plotting the radiation pattern of a half-wave dipole antenna that is working at 144 Mhz frequeny
댓글 수: 0
답변 (2개)
Satwik
2023년 7월 10일
Hi Sheena,
I understand that you want to plot the radiation pattern for a half wave dipole antenna working at 144 Mhz but not able to do the same.
According to the definiton length of this dipole antenna is equal to a half-wavelength at the frequency of operation. With that we do our required calculations to find the length of the dipole antenna working at 144 Hz using
where c is the speed of light.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1431078/image.png)
Doing the calculations we get the Length of dipole as 1.04m.
Just make a dipole in matlab at the required frequency and change it's length to the above mentioned.
Hope it helps!
댓글 수: 0
Anushka
2023년 8월 1일
sElement1 = phased.CosineAntennaElement('CosinePower',1.5);
sElement2 = phased.CosineAntennaElement('CosinePower',1.8);
sArray = phased.HeterogeneousULA(...
'ElementSet',{sElement1,sElement2},...
'ElementIndices',[1 1 2 2 2 2 2 2 1 1 ]);
fc = 1e9;
ang = [0;0];
resp = step(sArray,fc,ang)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Array Geometries and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!