Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Schematic from Layout using skill

Status
Not open for further replies.

sudhachocky

Newbie level 5
Joined
Jun 15, 2011
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,341
I want to create schematic from layout using skill.

i know SKill coding.
I dont know how to start-with and where to start with.
Can someone help me on this?

Thanks & Regards,
 

its difficult because many a times we split transistors to improve matching...

u can try making lists of components manipulate using filter functions

instatiate in schematics....
 

I copied pmos and nmos from other schematic using these commands.


pmos = car(setof(i inst i~>cellName == "PCH_1P0V" ))
nmos = car(setof(i inst i~>cellName == "NCH_1P0V" ))
schCopy(pmos cv list(0:0 "R0"))
schCopy(nmos cv list(0:0.01 "R0"))

but the copied pmos and nmos does'nt have all the properties as that of original one such as width,length and drain/source/gate are not defined in the copied one.

How to copy the pmos with the properties retained?

And how to connect a wire using skill say from drain of pmos to drain of nmos?

Sumone please help me with this issue..

Thanks & Regards,


I want to create schematic from layout using skill.

i know SKill coding.
I dont know how to start-with and where to start with.
Can someone help me on this?

Thanks & Regards,
 

AFAIR you can create a schematic from an extracted layout netlist. You'll need appropriate schematic symbols, however.
 

hei........

give the full path for pmos library u use

that will solve the problem of parameters

- - - Updated - - -

schCreateWire() can connect between the terminals

- - - Updated - - -

u can also create wire with dbCreateNet() but that won't be nicely editable
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top