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.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…