when making custom PCB and pcb trace, what is the thickness of the trace?

조회 수: 9 (최근 30일)
I follow this tutorial for making PCB trace and simulating it under different frequencies.
What I fail to find in the documentation and tutorial, is what is the thickness of the trace/GND plane I am making? (In the default microstrip line).
It seems like I can only change the
d.Thickness
I tried to run
trace.Thickness
It gives me:
Unrecognized method, property, or field 'Thickness' for class 'traceLine'.

답변 (1개)

Manikanta Aditya
Manikanta Aditya 2024년 5월 3일
Looks like the thickness of the trace (conductor layer) is not directly specified in the RF PCB Toolbox when creating custom traces using traceLine or tracePoint.
The thickness that you can specify is the dielectric thickness using the d.Thickness property, where d is the dielectric object created using dielectric('FR4'). This represents the thickness of the insulating layer between the trace (top conductor) and the ground plane (bottom conductor).
The conductor thickness, while not directly adjustable, affects the electrical characteristics of the PCB trace, such as impedance, loss, and dispersion. These effects are accounted for in the simulation models used by the RF PCB Toolbox.
Hope it helps.
  댓글 수: 3
Vishwanath Iyer
Vishwanath Iyer 2024년 5월 24일
Hi Vasileios,
The toolbox has 2 catalogs, one comprising of specific PCB passives such as transmission line types, couplers, filters, etc. and another for shapes that are commonly found on PCB structures such as bends, tees, rings, radials etc. You can create a custom PCB passive by either starting with one of existing catalog elements or with the shapes we provide. Regarding your question about conductor thickness, this exists on the 'Conductor' property of the PCB passives catalog which accepts a 'metal' object. For example use this sample of code and notice the trace thickness for the microstrip line is available as displayed
m = metal('Copper');
mline = microstripLine(Conductor=m)
mline.Conductor
Here are some links to the documentation that would be useful:
Hope this helps

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

카테고리

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

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by