assigning in system of differential equations

Posted by Alireza on Stack Overflow See other posts from Stack Overflow or by Alireza
Published on 2010-06-06T19:45:32Z Indexed on 2010/06/06 19:52 UTC
Read the original article Hit count: 401

Filed under:

hi every one! when i solve numerically a system of two differential equations: s1:=diff(nDi, t)=...; s2:=diff(nT, t)=...; ics:={...}; #initial condition. sys := {s1, s2, ics}: sol:=dsolve(sys,numeric); with respect to "t",then the solution (for example)for "t=4" is of the form, sol(4): [t=4, n1(t)=const1, n2(t)=const2]. now, how is possible to use values of n1(t) and n2(t) for all "t"'s in another equation, namely "p", which involved n1(t) or n2(t)(like: {p=a+n1(t)*n2(t)+f(t)},where "a" and "f(t)" are defined), and to plot "p" for an interval of "t"?

© Stack Overflow or respective owner

Related posts about maple