Question about Matlab with pcbStack

4 visualizaciones (últimos 30 días)
Daiki Ichikawa
Daiki Ichikawa el 9 de Mayo de 2020
Respondida: BhaTTa el 28 de Nov. de 2024 a las 4:36
Is there any solution how to stack another size of substarate by using the command " pcbStack"?

Respuestas (1)

BhaTTa
BhaTTa el 28 de Nov. de 2024 a las 4:36
Hey @Daiki Ichikawa, the pcbStack object is used to create and manipulate a printed circuit board (PCB) stack-up, which consists of multiple layers, including substrates, conductors, and dielectrics. If you want to modify the size of a substrate in a pcbStack object, you can do so by accessing and modifying the properties of the substrate layer within the stack.
Please refer to the below code and modify it based on your requirements:
% Create a default PCB stack
pcb = pcbStack;
% Access the substrate layer (assuming it's the second layer)
substrateLayer = pcb.Layers{2}; % Adjust index as needed
% Set new dimensions for the substrate
substrateLayer.Length = 0.1; % Example length in meters
substrateLayer.Width = 0.05; % Example width in meters
% Update the layer in the pcbStack
pcb.Layers{2} = substrateLayer; % Ensure the index matches the substrate layer
% Visualize the PCB stack
show(pcb);
% Further analysis or operations can be performed here

Categorías

Más información sobre Analysis, Benchmarking, and Verification en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by