Adding a limit in NDSolve to avoid division by zeroReturn partial result when MemoryConstrained aborts NDSolveInfinite Expression Error from NDSolveusing Module in NDSolveNDSolve solution does not satisfy boundary conditionsGetting error NDSolve:ndnum when solving a nonlinear coupled differential equationErrors in Solving Heat EquationSolving 2nd order ODE with NDSolveNDSolve unable to handle discontinuitiesDynamically updating parameter each iteration of NDSolveUsing WhenEvent to limit the derivative

Can someone explain homicide-related death rates?

Does gravity affect the time evolution of a QM wave function?

How exactly does artificial gravity work?

Non-deterministic Finite Automata | Sipser Example 1.16

Do Life Drain attacks from wights stack?

Anatomically Correct Carnivorous Tree

Extracting sublists that contain similar elements

Effects of ~10atm pressure on engine design

Help in identifying a mystery wall socket

Developers demotivated due to working on same project for more than 2 years

Is Germany still exporting arms to countries involved in Yemen?

Is there ever any indication in the MCU as to how Spider-Man got his powers?

Do I need to say 'o`clock'?

return tuple of uncopyable objects

What information do scammers need to withdraw money from an account?

Wireless headphones interfere with Wi-Fi signal on laptop

Jesus' words on the Jews

Is taking modulus on both sides of an equation valid?

Loading Latex packages into Mathematica

Jumping frame contents with beamer and pgfplots

what does a native speaker say when he wanted to leave his work?

What episode was being referenced by this part of Discovery's season 2 episode 13 recap?

What's the difference between "за ... от" and "в ... от"?

Does SQL Server allow (make visible) DDL inside a transaction to the transaction prior to commit?



Adding a limit in NDSolve to avoid division by zero


Return partial result when MemoryConstrained aborts NDSolveInfinite Expression Error from NDSolveusing Module in NDSolveNDSolve solution does not satisfy boundary conditionsGetting error NDSolve:ndnum when solving a nonlinear coupled differential equationErrors in Solving Heat EquationSolving 2nd order ODE with NDSolveNDSolve unable to handle discontinuitiesDynamically updating parameter each iteration of NDSolveUsing WhenEvent to limit the derivative













0












$begingroup$


I'm trying to solve a set of differential equations in which one of the functions that describe the time derivative gets values which make it divide by zero



x'[t] = (Exp[x] - 1)/(Exp[x] - 1 + x) 


So what happens is that when NDSolve gets values of x=0 you get that an Infinite expression of 1/0 encountered.



However, when I have x=0 I would actually like to replace it with the limit of x->0



 Limit[(Exp[x] - 1)/(Exp[x] - 1 + x), x -> 0]


which is 1/2.



Any suggestions of how to implement the idea in NDSolve?



Addition



Look for simplicity at the following case



NDSolve[x'[t] == (Exp[x[t]] - 1)/(Exp[x[t]] - 1 + x[t]), 
x[0] == 0, x, t, 0, 1]


Here x'[t] encounters 1/0 in the initial condition, but I would like it to get the limit of x->0 which is 1/2.
Note that in my problem which is far more complicated, x'[t] encounters this limit many times and the value of the limit is varied with respect to other state variables, therefore I would like the limit to be calculated in each iteration.










share|improve this question











$endgroup$











  • $begingroup$
    Does your real problem involve 1/0 in the initial conditions or elsewhere? I find that your simple example runs fine as long as you don't use x[0] == 0.
    $endgroup$
    – Chris K
    May 2 at 15:31










  • $begingroup$
    @ChrisK, elsewhere, actually all along the solution periodically. I gave the initial condition as an example.
    $endgroup$
    – jarhead
    May 2 at 15:49











  • $begingroup$
    Could you give an example where it doesn't work x[0] != 0?
    $endgroup$
    – Chris K
    May 2 at 16:14















0












$begingroup$


I'm trying to solve a set of differential equations in which one of the functions that describe the time derivative gets values which make it divide by zero



x'[t] = (Exp[x] - 1)/(Exp[x] - 1 + x) 


So what happens is that when NDSolve gets values of x=0 you get that an Infinite expression of 1/0 encountered.



However, when I have x=0 I would actually like to replace it with the limit of x->0



 Limit[(Exp[x] - 1)/(Exp[x] - 1 + x), x -> 0]


which is 1/2.



Any suggestions of how to implement the idea in NDSolve?



Addition



Look for simplicity at the following case



NDSolve[x'[t] == (Exp[x[t]] - 1)/(Exp[x[t]] - 1 + x[t]), 
x[0] == 0, x, t, 0, 1]


Here x'[t] encounters 1/0 in the initial condition, but I would like it to get the limit of x->0 which is 1/2.
Note that in my problem which is far more complicated, x'[t] encounters this limit many times and the value of the limit is varied with respect to other state variables, therefore I would like the limit to be calculated in each iteration.










share|improve this question











$endgroup$











  • $begingroup$
    Does your real problem involve 1/0 in the initial conditions or elsewhere? I find that your simple example runs fine as long as you don't use x[0] == 0.
    $endgroup$
    – Chris K
    May 2 at 15:31










  • $begingroup$
    @ChrisK, elsewhere, actually all along the solution periodically. I gave the initial condition as an example.
    $endgroup$
    – jarhead
    May 2 at 15:49











  • $begingroup$
    Could you give an example where it doesn't work x[0] != 0?
    $endgroup$
    – Chris K
    May 2 at 16:14













0












0








0





$begingroup$


I'm trying to solve a set of differential equations in which one of the functions that describe the time derivative gets values which make it divide by zero



x'[t] = (Exp[x] - 1)/(Exp[x] - 1 + x) 


So what happens is that when NDSolve gets values of x=0 you get that an Infinite expression of 1/0 encountered.



However, when I have x=0 I would actually like to replace it with the limit of x->0



 Limit[(Exp[x] - 1)/(Exp[x] - 1 + x), x -> 0]


which is 1/2.



Any suggestions of how to implement the idea in NDSolve?



Addition



Look for simplicity at the following case



NDSolve[x'[t] == (Exp[x[t]] - 1)/(Exp[x[t]] - 1 + x[t]), 
x[0] == 0, x, t, 0, 1]


Here x'[t] encounters 1/0 in the initial condition, but I would like it to get the limit of x->0 which is 1/2.
Note that in my problem which is far more complicated, x'[t] encounters this limit many times and the value of the limit is varied with respect to other state variables, therefore I would like the limit to be calculated in each iteration.










share|improve this question











$endgroup$




I'm trying to solve a set of differential equations in which one of the functions that describe the time derivative gets values which make it divide by zero



x'[t] = (Exp[x] - 1)/(Exp[x] - 1 + x) 


So what happens is that when NDSolve gets values of x=0 you get that an Infinite expression of 1/0 encountered.



However, when I have x=0 I would actually like to replace it with the limit of x->0



 Limit[(Exp[x] - 1)/(Exp[x] - 1 + x), x -> 0]


which is 1/2.



Any suggestions of how to implement the idea in NDSolve?



Addition



Look for simplicity at the following case



NDSolve[x'[t] == (Exp[x[t]] - 1)/(Exp[x[t]] - 1 + x[t]), 
x[0] == 0, x, t, 0, 1]


Here x'[t] encounters 1/0 in the initial condition, but I would like it to get the limit of x->0 which is 1/2.
Note that in my problem which is far more complicated, x'[t] encounters this limit many times and the value of the limit is varied with respect to other state variables, therefore I would like the limit to be calculated in each iteration.







differential-equations singularity






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 2 at 14:43







jarhead

















asked May 2 at 14:08









jarheadjarhead

674615




674615











  • $begingroup$
    Does your real problem involve 1/0 in the initial conditions or elsewhere? I find that your simple example runs fine as long as you don't use x[0] == 0.
    $endgroup$
    – Chris K
    May 2 at 15:31










  • $begingroup$
    @ChrisK, elsewhere, actually all along the solution periodically. I gave the initial condition as an example.
    $endgroup$
    – jarhead
    May 2 at 15:49











  • $begingroup$
    Could you give an example where it doesn't work x[0] != 0?
    $endgroup$
    – Chris K
    May 2 at 16:14
















  • $begingroup$
    Does your real problem involve 1/0 in the initial conditions or elsewhere? I find that your simple example runs fine as long as you don't use x[0] == 0.
    $endgroup$
    – Chris K
    May 2 at 15:31










  • $begingroup$
    @ChrisK, elsewhere, actually all along the solution periodically. I gave the initial condition as an example.
    $endgroup$
    – jarhead
    May 2 at 15:49











  • $begingroup$
    Could you give an example where it doesn't work x[0] != 0?
    $endgroup$
    – Chris K
    May 2 at 16:14















$begingroup$
Does your real problem involve 1/0 in the initial conditions or elsewhere? I find that your simple example runs fine as long as you don't use x[0] == 0.
$endgroup$
– Chris K
May 2 at 15:31




$begingroup$
Does your real problem involve 1/0 in the initial conditions or elsewhere? I find that your simple example runs fine as long as you don't use x[0] == 0.
$endgroup$
– Chris K
May 2 at 15:31












$begingroup$
@ChrisK, elsewhere, actually all along the solution periodically. I gave the initial condition as an example.
$endgroup$
– jarhead
May 2 at 15:49





$begingroup$
@ChrisK, elsewhere, actually all along the solution periodically. I gave the initial condition as an example.
$endgroup$
– jarhead
May 2 at 15:49













$begingroup$
Could you give an example where it doesn't work x[0] != 0?
$endgroup$
– Chris K
May 2 at 16:14




$begingroup$
Could you give an example where it doesn't work x[0] != 0?
$endgroup$
– Chris K
May 2 at 16:14










1 Answer
1






active

oldest

votes


















4












$begingroup$

If:



eq = With[x = x[t], D[x, t] == If[x == 0, 1/2, (Exp[x] - 1)/(Exp[x] - 1 + x)]]

sol = NDSolveValue[eq, x[0] == -1, x, t, 0, 6]

Plot[sol[t], t, 0, 6]


Mathematica graphics




Update



If the limit needs to be calculated each time it encounters zero:



eq = With[x = x[t], 
With[expr = (Exp[x] - 1)/(Exp[x] - 1 + x),
D[x, t] == If[x == 0, Limit[expr, x -> 0], expr]]]





share|improve this answer











$endgroup$












  • $begingroup$
    thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
    $endgroup$
    – jarhead
    May 2 at 14:44










  • $begingroup$
    Please also keep the answer restricted to 'NDSolve' if possible.
    $endgroup$
    – jarhead
    May 2 at 14:45










  • $begingroup$
    @jarhead Check my update.
    $endgroup$
    – xzczd
    May 2 at 14:57











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "387"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f197526%2fadding-a-limit-in-ndsolve-to-avoid-division-by-zero%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









4












$begingroup$

If:



eq = With[x = x[t], D[x, t] == If[x == 0, 1/2, (Exp[x] - 1)/(Exp[x] - 1 + x)]]

sol = NDSolveValue[eq, x[0] == -1, x, t, 0, 6]

Plot[sol[t], t, 0, 6]


Mathematica graphics




Update



If the limit needs to be calculated each time it encounters zero:



eq = With[x = x[t], 
With[expr = (Exp[x] - 1)/(Exp[x] - 1 + x),
D[x, t] == If[x == 0, Limit[expr, x -> 0], expr]]]





share|improve this answer











$endgroup$












  • $begingroup$
    thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
    $endgroup$
    – jarhead
    May 2 at 14:44










  • $begingroup$
    Please also keep the answer restricted to 'NDSolve' if possible.
    $endgroup$
    – jarhead
    May 2 at 14:45










  • $begingroup$
    @jarhead Check my update.
    $endgroup$
    – xzczd
    May 2 at 14:57















4












$begingroup$

If:



eq = With[x = x[t], D[x, t] == If[x == 0, 1/2, (Exp[x] - 1)/(Exp[x] - 1 + x)]]

sol = NDSolveValue[eq, x[0] == -1, x, t, 0, 6]

Plot[sol[t], t, 0, 6]


Mathematica graphics




Update



If the limit needs to be calculated each time it encounters zero:



eq = With[x = x[t], 
With[expr = (Exp[x] - 1)/(Exp[x] - 1 + x),
D[x, t] == If[x == 0, Limit[expr, x -> 0], expr]]]





share|improve this answer











$endgroup$












  • $begingroup$
    thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
    $endgroup$
    – jarhead
    May 2 at 14:44










  • $begingroup$
    Please also keep the answer restricted to 'NDSolve' if possible.
    $endgroup$
    – jarhead
    May 2 at 14:45










  • $begingroup$
    @jarhead Check my update.
    $endgroup$
    – xzczd
    May 2 at 14:57













4












4








4





$begingroup$

If:



eq = With[x = x[t], D[x, t] == If[x == 0, 1/2, (Exp[x] - 1)/(Exp[x] - 1 + x)]]

sol = NDSolveValue[eq, x[0] == -1, x, t, 0, 6]

Plot[sol[t], t, 0, 6]


Mathematica graphics




Update



If the limit needs to be calculated each time it encounters zero:



eq = With[x = x[t], 
With[expr = (Exp[x] - 1)/(Exp[x] - 1 + x),
D[x, t] == If[x == 0, Limit[expr, x -> 0], expr]]]





share|improve this answer











$endgroup$



If:



eq = With[x = x[t], D[x, t] == If[x == 0, 1/2, (Exp[x] - 1)/(Exp[x] - 1 + x)]]

sol = NDSolveValue[eq, x[0] == -1, x, t, 0, 6]

Plot[sol[t], t, 0, 6]


Mathematica graphics




Update



If the limit needs to be calculated each time it encounters zero:



eq = With[x = x[t], 
With[expr = (Exp[x] - 1)/(Exp[x] - 1 + x),
D[x, t] == If[x == 0, Limit[expr, x -> 0], expr]]]






share|improve this answer














share|improve this answer



share|improve this answer








edited May 2 at 14:57

























answered May 2 at 14:38









xzczdxzczd

28.2k577261




28.2k577261











  • $begingroup$
    thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
    $endgroup$
    – jarhead
    May 2 at 14:44










  • $begingroup$
    Please also keep the answer restricted to 'NDSolve' if possible.
    $endgroup$
    – jarhead
    May 2 at 14:45










  • $begingroup$
    @jarhead Check my update.
    $endgroup$
    – xzczd
    May 2 at 14:57
















  • $begingroup$
    thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
    $endgroup$
    – jarhead
    May 2 at 14:44










  • $begingroup$
    Please also keep the answer restricted to 'NDSolve' if possible.
    $endgroup$
    – jarhead
    May 2 at 14:45










  • $begingroup$
    @jarhead Check my update.
    $endgroup$
    – xzczd
    May 2 at 14:57















$begingroup$
thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
$endgroup$
– jarhead
May 2 at 14:44




$begingroup$
thanks for the answer, please look at my addition to the question. It is important that the limit will be calculated each time it encounters zero.
$endgroup$
– jarhead
May 2 at 14:44












$begingroup$
Please also keep the answer restricted to 'NDSolve' if possible.
$endgroup$
– jarhead
May 2 at 14:45




$begingroup$
Please also keep the answer restricted to 'NDSolve' if possible.
$endgroup$
– jarhead
May 2 at 14:45












$begingroup$
@jarhead Check my update.
$endgroup$
– xzczd
May 2 at 14:57




$begingroup$
@jarhead Check my update.
$endgroup$
– xzczd
May 2 at 14:57

















draft saved

draft discarded
















































Thanks for contributing an answer to Mathematica Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f197526%2fadding-a-limit-in-ndsolve-to-avoid-division-by-zero%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020