📄 transistorpbucket.java
字号:
/* -*- tab-width: 4 -*- * * Electric(tm) VLSI Design System * * File: TransistorPBucket.java * * Copyright (c) 2005 Sun Microsystems and Static Free Software * * Electric(tm) is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * Electric(tm) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Electric(tm); see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, Mass 02111-1307, USA. */package com.sun.electric.tool.extract;import com.sun.electric.technology.TransistorSize;import com.sun.electric.technology.PrimitiveNode;import com.sun.electric.technology.Technology;import com.sun.electric.database.geometry.DBMath;import com.sun.electric.database.text.TextUtils;import com.sun.electric.database.topology.NodeInst;/** * Class to define Transistor information for circuit extraction. */public class TransistorPBucket implements ExtractedPBucket{ public String gateName; public String sourceName; public String drainName; private TransistorSize size; private double sourceArea, drainArea, sourcePerim, drainPerim; public NodeInst ni; private double mFactor; public TransistorPBucket(NodeInst ni, TransistorSize size, String gName, String sName, String dName, double factor) { this.ni = ni; this.size = size; this.gateName = gName; this.sourceName = sName; this.drainName = dName; this.mFactor = factor; } public char getType() { char type = (ni.getFunction().isNTypeTransistor()) ? 'n' : 'p'; return type; } public double getTransistorLength(double legnthOffset) { return size.getDoubleLength() - legnthOffset; } public double getTransistorWidth() {return size.getDoubleWidth() * mFactor;} public double getActiveArea() {return DBMath.round(getTransistorWidth() * size.getDoubleActiveLength());} public double getActivePerim() {return DBMath.round((getTransistorWidth() + size.getDoubleActiveLength())*2);} public void addDifussionInformation(String net, double area, double perimeter) { if (net.equals(drainName)) { drainArea += area; drainPerim += perimeter; } else if (net.equals(sourceName)) { sourceArea += area; sourcePerim += perimeter; } else System.out.println("Error in TransistorPBucket.addDifussionInformation"); } public String getInfo(Technology tech) { // Only valid for IRSIM now double scale = tech.getScale(); double legnthOffset = tech.getGateLengthSubtraction()/scale; //scale /= 10; double length = getTransistorLength(legnthOffset); double width = getTransistorWidth();// double activeArea = getActiveArea();// double activePerim = getActivePerim();// activeArea = size.getDoubleWidth() * 6;// activePerim= size.getDoubleWidth() + 12; char type = getType(); StringBuffer line = new StringBuffer(); line.append(type); line.append(" " + gateName + " " + sourceName + " " + drainName); line.append(" " + TextUtils.formatDouble(length)); line.append(" " + TextUtils.formatDouble(width)); line.append(" " + TextUtils.formatDouble(ni.getAnchorCenterX())); line.append(" " + TextUtils.formatDouble(ni.getAnchorCenterY())); if (type == 'n') line.append(" g=S_gnd"); else line.append(" g=S_vdd"); // type = 'p'// line.append(" s=A_" + (int)activeArea + ",P_" + (int)activePerim);// line.append(" d=A_" + (int)activeArea + ",P_" + (int)activePerim);// double areaScale = ParasiticTool.getAreaScale(scale); // area in square microns// double perimScale = ParasiticTool.getPerimScale(scale); // perim in microns // In case of schematic // Reset four values according to transistor sizes if (sourceArea == 0 || sourcePerim == 0 || drainArea == 0 || drainPerim == 0) { drainArea = sourceArea = getActiveArea(); drainPerim = sourcePerim = getActivePerim(); } if (sourceArea == 0 || sourcePerim == 0 || drainArea == 0 || drainPerim == 0) { ParasiticTool.getParasiticErrorLogger().logError("Zero active area/perimenter in parasitics extraction for '" + ni.getName() + "' in '" + ni.getParent().getName() + "'", ni.getParent(), ni.getParent().hashCode()); } line.append(" s=A_" + (int)(sourceArea) + ",P_" + (int)(sourcePerim)); line.append(" d=A_" + (int)(drainArea) + ",P_" + (int)(drainPerim)); return line.toString(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -