Do I need to set the Substrate property in the pcbStack function?

When designing custom planar antennas with pcbStack, default advice is for customers to define their own metal and dielectric layers and ensure a substrate definition exists to support fabrication.
pcbStack does not seem to have a documented Substrate argument (e.g. for assigning defined dielectric layers).
If I have a multi-layer dielectric comprising, say, 3 separate dielectric definitions d1, d2, d3, then how do I assign the composite dielectric to pcbStack?
Is it:
sub = d1+d2+d3;
pcbStack.Substrate = sub;
pcbStack.Layers = { metal d1 d2 d3 ground };
or just:
pcbStack.Layers = { metal d1 d2 d3 ground };

 採用された回答

MathWorks Support Team
MathWorks Support Team 2020 年 4 月 29 日

0 投票

The Substrate property of pcbStack is set automatically when setting the Layers property, hence in the code you would write just the following:
pcbStack.Layers = { metal d1 d2 d3 ground };

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDesign, Analysis, Benchmarking, and Verification についてさらに検索

製品

リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by