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.

how to check floating cell and pin in prime time?

Status
Not open for further replies.

xchuang

Newbie level 4
Joined
Apr 23, 2010
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,309
i am a new timing analizer, when runing sta in prime time , i want to find the floating point using tcl script, i think that get all nets ,then get all the pins(ports)
connected to every net, if there are input and output pins(ports), so this net is not floating,
++++++++++++++++++++++++
set all_nets [get_nets * -hierarchical]
foreach_in_collection net $all_nets {
set all_pins_or-ports [all_connented $nets -leaf]
foreach_in_collention pins_or_port $all_pins_or-ports {
now ,i don't know how to find

+++++++++++++++++++++++++++
i need help,tks.
 

set all_nets [get_nets * -hierarchical]
foreach_in_collection net $all_nets {
set ctr [size_of_collection [get_pins -of $net -all]]
set net_name [get_attr $net full_name]
if { $ctr } {
puts "$net_name is not a floating net"
} else {
puts "$net_name is a floating net"
}
}

This code gives the floating nets in the design. Basically your question is not clear based on your discussion you had provided in the post. Let me know if you are looking for something else.
[/quote]
 

plz check the circuit, pin Z of AND gate is connected to net n3, but n3 is not connected to any input pin or output port, so the AND cell has a floating pin, it is a floating cell
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top