| Author |
Comment/Response |
Hazem
|
12/05/12 07:11am
Dear All,
I have a system of differential equations I tried solving it with NDSolve but It gives me an error I could not figure what I did wrong
here is my system
NDSolve[{
ph1''[t]+ph1'[t]+sin[ph1[t]]-mu[t]-mu'[t]==0.005,
ph2''[t]+ph2'[t]+sin[ph2[t]]+mu[t]+mu'[t]==0.005,
0.2mu'[t]+mu[t]==ph1'[t]-ph2'[t],
ph2[0]==0,
ph1[0]==0,
ph2'[0]==0,
ph1'[0]==0,
mu[0]==0
},
{ph1[t],ph2[t],mu[t]},
{t,0,5000}
]
Attachment: NDsolve-1.nb, URL: , |
|