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.

Cadence SKILL - DC simulation homotopy order

Status
Not open for further replies.

t4_v

Full Member level 2
Joined
Jun 6, 2015
Messages
122
Helped
27
Reputation
54
Reaction score
28
Trophy points
28
Activity points
813
Hi,

I have a following issue: I would like to set homotopy order in a dc simulation using OCEAN script. I found in manuals that:

You can specify methods and their orders by specifying a vector setting such as homotopy=[source ptran gmin].
Possible values are none, gmin, source, dptran, ptran, arclength, tranrampup, and all.

In OCEAN script I can run DC simulation with a homotopy method as follows:

analysis('dc ?dev "/voltage_dc_source" ?param "dc" ?start "low" ?stop "high" ?step "1m" ?homotopy "dptran" )


However, is it possible to define more than one homotopy value? I cannot find any scenario that works.
 

You probably already tried such syntax versions for the continuation methods:

analysis('dc ?dev "/voltage_dc_source" ?param "dc" ?start "low" ?stop "high" ?step "1m" ?homotopy "[source dptran gmin]" )

analysis('dc ?dev "/voltage_dc_source" ?param "dc" ?start "low" ?stop "high" ?step "1m" ?homotopy ["source" "dptran" "gmin"] )

analysis('dc ?dev "/voltage_dc_source" ?param "dc" ?start "low" ?stop "high" ?step "1m" ?homotopy "["source" "dptran" "gmin"]" )
 

I think I tried one or two of the above. So not all of them. I will check them tomorrow and give a feedback.

I used ADE L GUI to see how homotopy is chosen there. It is possible to choose only one method.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top