cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

numerical solution of a differential equation

PS_9759531
6-Contributor

numerical solution of a differential equation

Hello,

 

I would like to solve the differential equation in the document. However, Mathcad can only calculate the values if I use a positive factor. In Python the values are calculated without any problems. What am I doing wrong? The problem exists in Mathcad 15, as well as in Prime 6.0.

Thank you very much for any hints.

Best regards

Paul

1 ACCEPTED SOLUTION

Accepted Solutions

Mathcad chokes on the different x-values in the initial conditions (0 for z but 4 for y).

Are you aware that the second argument of the odesolve function is the endvalue for x?

The start value is taken from the initial conditions and so Mathcad runs  into troubles if it encounters two different "start" values.

Here is what you get with 0 as the start value for both (and 4 as the endvalue). The last arguement of odesolve is the number of calc steps and is optional.

Werner_E_0-1623951368065.png

 

View solution in original post

7 REPLIES 7

Mathcad doesn't like the imaginary components you get from y(x)^0.8 when y goes negative. Taking the real part works ok:

 

g0.png

What does the Python result look like?

 

Alan

 

Here's another workaround

Werner_E_0-1623950286520.png

The root function is implemented in Mathcad so that it returns the real value, not the main root (the one with the smallest positive phase). Actually in math a power with a rational exponent is defined only for non-negative bases.

See for example

Werner_E_1-1623950359697.png

 

Hey Alan and Werner,

 

thank you! You made my day. I thought Mathcad can't do it and I have to calculate everything externally.

Here you can see the result from Python. So it matches. 🙂 blue line=y, orange line=z

Now I have another challenge. If I solve the previous equation together in a differential equation system, Mathcad says "Convergence to one solution not possible, too many integrator steps" No matter which method or which step size I choose, the problem remains. Do you have another hint for me?

 

Thank you very much.

Best regards

Paul

PS_9759531_0-1623950606768.png

 

Mathcad chokes on the different x-values in the initial conditions (0 for z but 4 for y).

Are you aware that the second argument of the odesolve function is the endvalue for x?

The start value is taken from the initial conditions and so Mathcad runs  into troubles if it encounters two different "start" values.

Here is what you get with 0 as the start value for both (and 4 as the endvalue). The last arguement of odesolve is the number of calc steps and is optional.

Werner_E_0-1623951368065.png

 

PS_9759531
6-Contributor
(To:Werner_E)

Hello Werner,

 

Thank you once again! I was indeed not very familiar with the odesolve function. In Python, both initial conditions start at 0. That's why there were no problems there.

I have now helped myself like this. I first calculate the first differential equation with y(4)=0.003 and then determine b(0)=0.052. I then use this value in the differential equation system as the new initial condition y(0)=b(0)=0.052.

It should work like this. Perhaps there is a more elegant way.

Thanks again for your help.

Best regards

Paul

As your first ODE does not depend on z your approach of solving them one after another instead of a system looks straight forward to me.

 

I lack experience with ODE systems with different initial values.

It may be that the functions "bvalfit" and/or "sbval" can be of help, but I never had used them. You'll have to look them up in the help.

Here from the help of MC15:

Werner_E_0-1623955372307.png

 

PS_9759531
6-Contributor
(To:Werner_E)

Hey Werner,

 

thanks! I will have a look at this function. If I find a better solution for this kind of problem, I will post it.

Cheers.

Paul

Top Tags