Deferential equation in Matlab

4 次查看(过去 30 天)
R Hebi
R Hebi 2020-12-29
回答: Star Strider 2020-12-29
Hi,
Im wondering how the following differential equation can be entered in in Matlab:
d(rT)/dr = (DP/L) r
My issue is with left hand side.

回答(1 个)

Star Strider
Star Strider 2020-12-29
It depends on what you want to do, and what the left-hand side actually is. Is the function ‘rT’ or ‘T( r )’?
In the Symbolic Math Toolbox:
syms D L P rT(r)
Eqn = diff(rT) == D*P/L * r;
This assumes that ‘rT’ is a separate function. I have no idea what you are actually doing.
If ‘T’ is the function:
syms D L P r T(r)
Eqn = diff(r*T) == D*P/L * r;
However it may not be possible to integrate it, since the initial condition of ‘T(0)’ implies that ‘r’ is 0 and the integrated differential equation would be infinite at 0.

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by