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

10 views (last 30 days)
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'.

Answers (1)

Manikanta Aditya
Manikanta Aditya on 3 May 2024
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 Comments
Vishwanath Iyer
Vishwanath Iyer on 24 May 2024
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

Sign in to comment.

Categories

Find more on Custom Geometry and PCB Fabrication in Help Center and File Exchange

Products


Release

R2024a

Community Treasure Hunt

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

Start Hunting!