first order runge-kutta method

8 ビュー (過去 30 日間)
Ali Haydar YILDIZ
Ali Haydar YILDIZ 2021 年 1 月 10 日
コメント済み: Ali Haydar YILDIZ 2021 年 1 月 15 日
How can i code this problem with first order runge-kutta method. Do you know typically code about first order ode
A ball at 1200 K is allowed to cool down in air at an ambient temperature of 300 K. Assuming heat is lost only due to radiation, the differential equation for the temperature of the ball is given by
(-2.2067*(10^-12)*((y^4)-81*10^8))

回答 (1 件)

Uday Pradhan
Uday Pradhan 2021 年 1 月 13 日
Hi,
You can check this lecture series on solving ODEs in MATLAB : link. There is also a "Code and resources" section from where you can download the code used in the lectures. Check the ode1 function which is the First order RK method (Euler's method):link. You can define your function F as:
F = @(t,y) -2.2067 * (10^(-12)) * (y^4 - (81*10^8));
  1 件のコメント
Ali Haydar YILDIZ
Ali Haydar YILDIZ 2021 年 1 月 15 日
Thank you so much for your answer.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by