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.

Smith Chart Plot by OCEAN in CAdence ViVA

Status
Not open for further replies.

pancho_hideboo

Advanced Member level 5
Joined
Oct 21, 2006
Messages
2,847
Helped
767
Reputation
1,536
Reaction score
733
Trophy points
1,393
Location
Real Homeless
Activity points
17,490
Creation of Smith Chart by OCEAN in Cadence ViVA

I can easily create Smith Chart by OCEAN for Cadence Wavescan and Cadence AWD.

However I can not create Smith Chart by OCEAN for Cadence ViVA.

The followings are both uneffective in Cadence ViVA.
Code:
displayMode("smith")
awvSetSmithModeType( window(2) "impedance" ?subwindow 3 )

How to create Smith Chart by OCEAN in Cadence ViVA ?
 
Last edited:

Self-follow-up.

I can create Impedance Chart by using following code in Cadence ViVA.
Code:
wid = newWindow()
displayMode("smith")
awvSetSmithModeType(wid, "impedance", ?subwindow 1)

If you prefer admittance chart, use following.
Code:
wid = newWindow()
displayMode("smith")
awvSetSmithModeType(wid, "admittance", ?subwindow 1)

We have to use both displayMode() and awvSetSmithModeType() in this order for Cadence ViVA.
This procedure is different from Cadence Wavescan and Cadence AWD.
 
Last edited:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top