Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to solve quadratic equations through catia?

Status
Not open for further replies.

rollicker

Aerospace
Joined
Jul 9, 2013
Messages
7
Location
DE
Hi Guys,
I need to solve a quadratic equation (ax^2 + bx + c = 0) and set the value (x) to a parameter. How can I acheive this in CATIA. The set of equation feature does not solve this equation. Its expecting a set of equations. Could you please let me know if there is any other feature to sovle such equations or if its possible in equation editor, what is the syntax to type in the equation editor.
Thanks in advance.
 
you can create the Offset curve using the function defined in a law, then check the intersection with y axis...

check this: thread560-176429 and the online doc of course...

Eric N.
indocti discant et ament meminisse periti
 

or
x1,2 = (-b±sqrt(b^2-4*a*c))/2a
the first solution is with a +, the second with a -
a,b,c are the coefficients in the quadratic equation.

the solution can also be complex numbers, but for these the equation above will fail, as the sqrt is negative in that case.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top