WriteCapa.mesa
Copyright (C) 1986 by Xerox Corporation. All rights reserved.
Christian LeCocq May 30, 1986 2:13:28 pm PDT
Module to write the capacitances of the layout wires on the corresponding Core.Wires. Writes two properties on each atomic wire: the capacitance of this wire, and the capacitance of the node from the wire to the "leaves".
DIRECTORY
Core USING [CellType, Wire];
WriteCapa: CEDAR DEFINITIONS
~ BEGIN
pfs: TYPE = REAL;
GetRootCap: PUBLIC PROC [wire: Core.Wire] RETURNS [cap: pfs];
Returns the capacitance of the electrical node from that point to the "leaves", that is from that level to the deepest cells.
GetCap: PUBLIC PROC [wire: Core.Wire] RETURNS [cap: pfs];
Returns the capacitance of that particular wire in its cell only, that is this exact level only beeing considered.
WriteWireCapa: PUBLIC PROC [coreCell: Core.CellType, technology: ATOM ← $cmosB];
Write the partial an full capacitance of all atomic wires by adding two properties to each atomic wire.
END.