필터 지우기
필터 지우기

About microstrip patch antenna array

조회 수: 7 (최근 30일)
BISWA
BISWA 2013년 10월 25일
답변: Sourabh Joshi 2021년 12월 8일
Has anyone design a microstrip patch array(linear/planar) with/without mutual coupling using matlab coding? The patch may be a rectangular or may be a circular.

답변 (1개)

Sourabh Joshi
Sourabh Joshi 2021년 12월 8일
Antenna Toolbox can be used to design the Microstrip Patch antenna array at any frequency. The below code can be used to design the patch antenna array at 2 GHz and calculate the sparameters and plot using the rfplot function.
% Design the patch Microstrip at 2 GHz
ant1 = patchMicrostrip;
ant1 = design(ant1,2e9);
figure,show(ant1)
spar = sparameters(ant1,linspace(1.8e9,2.2e9,11));
figure,rfplot(spar);
% Creating a linear array
% Use linearArray functionality present in Antenna Toolbox
% and use the patchMicrostrip designed above as an element
% in the linear array.
arr = design(linearArray,2e9,ant1);
figure,show(arr);
spar1 = sparameters(arr,linspace(1.8e9,2.2e9,11));
figure,rfplot(spar1);
figure,pattern(arr,2e9)

카테고리

Help CenterFile Exchange에서 Patch Antennas에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by