coriolis/oroshi/python/wip_transistor.py

105 lines
3.3 KiB
Python

# -*- coding: utf-8 -*-
from Hurricane import DataBase
from Hurricane import UpdateSession
from Hurricane import DbU
from Hurricane import Box
import helpers
import helpers.io
from helpers import trace
#helpers.setTraceLevel( 1000 )
try:
import Analog
import oroshi
import oroshi.paramsmatrix
import oroshi.stack
except Exception, e:
helpers.io.catch( e )
def checkCoherency ( device, bbMode ):
try:
message = '[ERROR] Transistor.checkCoherency():\n'
techno = DataBase.getDB().getTechnology()
rules = oroshi.getRules()
w = device.getParameter( 'W' ).getValue()
M = device.getParameter( 'M' ).getValue()
mMax = w / rules.transistorMinW
if M > mMax:
message += \
' W/M ratio must be greater than transistor minimal width (%s)\n' \
' Please increase W or decrease M.' \
% DbU.getValueString(rules.transistorMinW)
return (False, message)
except Exception, e:
helpers.io.catch( e )
return (False, message)
return (True, "")
def layout ( device, bbMode ):
trace( 100, ',+', '\tWIP_Transistor.layout() called.\n' )
paramsMatrix = oroshi.paramsmatrix.ParamsMatrix()
try:
nerc = device.getParameter( 'NERC' ).getValue()
nirc = device.getParameter( 'NIRC' ).getValue()
stack = oroshi.stack.Stack( device, nerc, nirc )
bw = str(device.getParameter( 'B.w' ).getValue())
dw = str(device.getParameter( 'D.w' ).getValue())
gw = str(device.getParameter( 'G.w' ).getValue())
sw = str(device.getParameter( 'S.w' ).getValue())
bt = device.getParameter( 'B.t' ).getValue()
dt = device.getParameter( 'D.t' ).getValue()
gt = device.getParameter( 'G.t' ).getValue()
st = device.getParameter( 'S.t' ).getValue()
diffMap = { 'D':'D', 'S':'S'
, 'Dw':dw, 'Sw':sw, 'Gw':gw, 'Bw':bw
, 'Dt':dt, 'St':st, 'Gt':gt, 'Bt':bt
}
if device.isSourceFirst():
trace( 100, '\tUse sourceFirst.\n' )
diffMap = { 'D':'S', 'S':'D'
, 'Dw':sw, 'Sw':dw, 'Gw':gw, 'Bw':bw
, 'Dt':dt, 'St':st, 'Gt':gt, 'Bt':bt
}
wirings = '{D}.{Dt}.{Dw} G.{Gt}.{Gw} {S}.{St}.{Sw}'
for i in range(device.getM() - 1):
if i%2: wirings += ' G.{Gt}.{Gw} {S}.{St}.{Sw}'
else: wirings += ' G.{Gt}.{Gw} {D}.{Dt}.{Dw}'
for i in range(device.getExternalDummy()):
wirings = 'B.{Bt}.{Bw} B.{Bt}.{Bw} ' + wirings
wirings += ' B.{Bt}.{Bw} B.{Bt}.{Bw}'
stack.setWirings( wirings.format( **diffMap ) )
stack.doLayout ( bbMode )
paramsMatrix.setGlobalTransistorParams( oroshi.toUnity(stack.w)
, oroshi.toUnity(stack.L)
, device.getM()
, stack.boundingBox
)
paramsMatrix.setStacks( [ stack ] )
trace( 100, '++' )
paramsMatrix.trace()
except Exception, e:
helpers.io.catch( e )
trace( 100, '---' )
return paramsMatrix.getMatrix()