I'm using antenna toolbox. Can't add a dielectric layer without adding a ground plane
조회 수: 5 (최근 30일)
이전 댓글 표시
I am developing a fractal antenna. I just want a fractal pattern on a dielectric, like FR4. Don't want a reflector/groundplane.
What I'm trying to get to as an example: Pic attached
Basic code below: You can see the dielectric is always the size of the ground-plane and always as thick as the calculate distance between the antenna exciter and ground plane.
Thanks,
Kurt Dobson
Northrop Grumman
% Create a fractalGasket antenna backed with reflector
% Generated by MATLAB(R) 9.14 and Antenna Toolbox 5.4.
% Generated on: 10-Apr-2023 20:03:35
Antenna Properties
antennaObject = design(reflector('Exciter', fractalGasket), 900*1e6);
antennaObject.Exciter.NumIterations = 3;
antennaObject.Substrate.Name = 'FR4';
antennaObject.Substrate.EpsilonR = 4.8;
antennaObject.Substrate.LossTangent = 0.026;
% Show
figure;
show(antennaObject)

댓글 수: 0
답변 (1개)
Raghunathraju
2023년 4월 28일
Hi,
You can use pcbStack for adding dielectric layer without ground plane. You can refer to the following
ant=pcbStack(fractalGasket)
show(ant)
ant.Layers{2}=dielectric('FR4')
show(ant)
For more information refer pcbStack
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!