Solving an ODE second order
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Elia Paini
am 20 Apr. 2021
Kommentiert: Elia Paini
am 20 Apr. 2021
Hi, I have to solve an ODE second order in Matlab, like this:
a*y''(x)=b
Where x is the space coordinate, a and b are costants. The initial condition is y value at x=0. At the end I must obtain the evolution of y in function of space.
How can I model it? Should I use a certain ode solver?
Thank you!
0 Kommentare
Akzeptierte Antwort
Stephan
am 20 Apr. 2021
Bearbeitet: Stephan
am 20 Apr. 2021
change to the initial conditions as you need:
% symbolic variables
syms a b y(x)
% Define derivatives
Dyx = diff(y,x,1)
D2yx = diff(y,x,2)
% ode
ode = a* D2yx == b
% initioal conditions
conds = [y(0)==1, Dyx(0)==0]
% solve
sol = dsolve(ode,conds)
5 Kommentare
Stephan
am 20 Apr. 2021
Change the conds:
% symbolic variables
syms a b y(x)
% Define derivatives
Dyx = diff(y,x,1)
D2yx = diff(y,x,2)
% ode
ode = a* D2yx == b
% initioal conditions
conds = [y(0)==1, y(5)==0]
% solve
sol = dsolve(ode,conds)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!