Hello, everybody. After I run an extraction in my ...
# magic
l
Hello, everybody. After I run an extraction in my layouts, I'm having those relatively large caps connected to a floating net and ground
C1676 m2_0_21600# avss 49.6917f
Something like that. I know it is connected to metal 2. But there is this number there, 0_21600. I wanted to find this metal drawing to deal with that. How can I do it?
m
@Luis Henrique Rodovalho the numbers in the node name are the x, y coordinates in data base units. Divide by 200 to get microns. numbers prefixed with
n
are negative. Example,
m2_440_n53670#
has a metal2 corner at (2.2, -268.35)
t
This is a coordinate in magic internal coordinates.
m2_0_21600#
is on metal2 at (0, 21600) in magic internal coordinates. In magic, you can also do
goto m2_0_21600#
and then zoom in on where the box is (Ctrl-z).
👍 2