MathGroup Archive 2000

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Apparently easy ODE

  • To: mathgroup at smc.vnet.net
  • Subject: [mg22960] Re: Apparently easy ODE
  • From: Roland Franzius <Roland.Franzius at uos.de>
  • Date: Fri, 7 Apr 2000 02:54:41 -0400 (EDT)
  • References: <8chb0j$9af@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Replace e'[0]==  by e[0]== , its first order in e

hope its the answer to your question

roland  

Kurt Taretto wrote:
> 
> Hi, I'm having some problems solving PDE's, for example the folowing
> notebook
> 
> Clear["Global`*"];
> 
> (* constants definitions *)
> 
> Es =11.8*8.85418`50*10^-14;
> q = 1.60218`50*10^-19;
> 
> Nd = 1.0`50*^16; g = 1.0`50*^-4; G = 1.0`50*^20; u= 500.0`50; DD =
> 25.0`50;
> k1 = q/Es;
> 
> solution = NDSolve[{e'[x] == k1 p[x],
> 
>         G - u e'[x] p[x] - u e[x] p'[x] + DD p''[x] == 0,
> 
>         e'[0] == 0, p[g] == 1.0`50*^10, p'[0] == 0},
> 
>       {e, p}, {x, 0, g}, WorkingPrecision -> 20];
> 
> Plot[p[x] /. solution, {x, g/100, g}, PlotRange -> All];
> 
> causes an error message, "Cannot find starting value for the variable
> x.", and obviously no solution is given.  Apparently this error message
> is about the internals of the algorithm, but I can't figure out what I'm
> doing wrong.  Any help on this would be appreciated.
> 
> Thanks!
> 
> Kurt Taretto

-- 
Roland Franzius

  +++ exactly <<n>> lines of this message have value <<FALSE>> +++


  • Prev by Date: Re: Apparently easy ODE
  • Next by Date: RE: 2-D Vector Field scale ?
  • Previous by thread: Re: Apparently easy ODE
  • Next by thread: Re: Apparently easy ODE