| New Reply |
Prob with NDSolve in Mathematica |
Share Thread | Thread Tools |
| Feb14-12, 09:28 AM | #1 |
|
|
Prob with NDSolve in Mathematica
How can I show the regular part of the solution of a differential equation, numerically solved with NDSolve, if there's a singularity on the curve ?
I know how to use NDSolve and show its solution, but Mathematica gives a bad curve after some point (singularity jumping). I don't want to show this part, just the regular curve BEFORE the singularity (which is occuring at t = %$&*). More precisely, the curve function should be strictly positive : a[t] > 0. The NDSolve should stop the resolution if a <= 0. I added the command StoppingTest -> (a[t] < 0.001) or StoppingTest -> (a[t] <= 0) but it doesn't work. I'm still getting wrong curve parts with a[t] < 0. Any idea ? |
| Feb14-12, 11:13 AM | #2 |
|
|
Why don't you just solve over the interval you're solving over now, but only plot it over the interval where it's positive?
|
| Feb14-12, 12:25 PM | #3 |
|
|
Duh ! Because I don't know in advance what are the singularities !
There are two singularities on the curve, and I need to plot the regular part between them. There's no way I can know in advance the exact values of the singularities. |
| Feb14-12, 12:40 PM | #4 |
|
|
Prob with NDSolve in Mathematica
Try using Sow and Reap inside the NDSolve, and only Sow when the answer meets your criterion, as in the attached notebook.
|
| Feb14-12, 12:56 PM | #5 |
|
|
![]() However, I found the right solution to my problem : I just have to define the x values at which the curve y[x] blows away, like this : Code:
Xmin := (y /. Curve)[[1]][[1]][[1]][[1]] Xmax := (y /. Curve)[[1]][[1]][[1]][[2]] |
| Feb14-12, 03:27 PM | #6 |
|
|
I don't see how that's different than what I suggested.. but glad it worked for you
|
| Feb14-12, 04:27 PM | #7 |
|
|
|
| New Reply |
| Thread Tools | |
Similar Threads for: Prob with NDSolve in Mathematica
|
||||
| Thread | Forum | Replies | ||
| problem in NDSolve in mathematica | Math & Science Software | 5 | ||
| NDSolve in mathematica | Differential Equations | 6 | ||
| Mathematica NDSolve | Differential Equations | 2 | ||
| Mathematica NDSolve | Math & Science Software | 1 | ||
| Mathematica: ODE, NDSolve | Math & Science Software | 0 | ||