Optimize antenna from pcbStack object

조회 수: 2 (최근 30일)
J
J 2023년 6월 8일
답변: Vinod Dwarapudi 2025년 6월 20일
I have created an antenna from a pcbStack object, and I'd like to optimize it. I think I might be able to do this in two ways:
  1. Call optimize() on the object
  2. Import the pcbStack object into pcbAntennaDesigner, and run optimize there
Approach 1 does not seem to work, as optimize() is not supported for the pcbStack object (how does pcbAntennaDesigner do this?).
Approach 2 also does not seem to work, as pcbAntennaDesigner only imports .mat and gerber files.
Is there any way of running the SADEA optimizer for my custom antenna, without having to recreate it in pcbAntennaDesigner?

답변 (2개)

Umeshraja
Umeshraja 2024년 9월 25일
편집: Umeshraja 2024년 9월 25일
Hi @J,
I understand you're looking to optimize an antenna created from a pcbStack object and have encountered issues with the optimize function, as it doesn't support pcbStack objects. I've faced similar challenges.
As a workaround, you can export the antenna to a Gerber file using the gerberWrite function from the Antenna Toolbox:
gerberWrite(antennaObject)
Alternatively, you can save the antenna object to a .mat file with the following command:
save(antennaObject,"pcbObj.mat")
Once you have exported the antenna as a Gerber file or saved it as a .mat file, you can import these files into the pcbAntennaDesigner for optimization.
For more detailed information, please refer to the MATLAB R2023a documentation:
Hope it helps!

Vinod Dwarapudi
Vinod Dwarapudi 2025년 6월 20일
From 25a, custom Antenna optimization is supported. Attaching the example link for similar problem. Eventhough 3d geometry workflows are used to create antenna in this below example, it could be easily replaced with pcb stack object

카테고리

Help CenterFile Exchange에서 PCB Antenna Design and Fabrication에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by