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 design in CST using equations

Status
Not open for further replies.

m11vajju

Newbie level 6
Joined
Jan 26, 2011
Messages
12
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,354
i am working on CST....how to design an expression like y=x^2......where x is a variable..
 

If you have CST 2010 SP1 or later you can do it.
 

In earlier versions you can use a macro to draw an equation based curve.

For example (untested)

Code:
With Spline
     .Reset
     .Name "name"
     .Curve "curve_name"
     .Point 0,0
     For x = 0 To END
         y = x^2
        .LineTo x,y
     Next
    .Create
End With
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top