필터 지우기
필터 지우기

(Antenna Toolbox) How to mesh a dielectric layer?

조회 수: 2 (최근 30일)
Francesco Repola
Francesco Repola 2019년 6월 30일
댓글: Da Huang 2019년 9월 24일
Hi
I created a pcb antenna by antenna toolbox. My purpose is to optimize antenna geometries, but the current simulation lasts too much.
So I'd like reducing the substrate automatic mesh done by Matlab, I'm trying:
d = dielectric('FR4');
mesh(d,'MinEdgeLength',0.03/10);
But it doesn't work. what is the correct function?
Thanks,
Regards
  댓글 수: 1
Da Huang
Da Huang 2019년 9월 24일
mesh function does not operates on dielectric object.
If you have your antenna object ready, say the object name is ant. you can try the following code:
mesh(ant,'MaxEdgeLength',0.3); then use memoryEstimate(ant) to check how much memory it may require to solve this problem.
if your antenna object is pcbStack, then you can also specify MinEdgeLength property in mesh.

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

답변 (1개)

Shashwat Bajpai
Shashwat Bajpai 2019년 7월 17일
Hi,
I understand that you want to mesh the dielectric manually to improve the speed of execution.
Try changing the configuration settings of the mesh to manual by using the following command:
meshconfig(d,'manual')
After you do this, run your meshing command:
mesh(d,'MinEdgeLength',0.03/10);
Please refer the following link for more information on the “meshconfig” function

카테고리

Help CenterFile Exchange에서 Get Started with Antenna Toolbox에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by