Clear Filters
Clear Filters

How to write a code for iteration?

2 views (last 30 days)
HAKAN KORKMAZ
HAKAN KORKMAZ on 7 May 2020
Answered: Niharika Arora on 13 May 2020
Hi,can ı run this equation with iteration?
first value ts = 10 and last value ts is under the error tolarence.Error torance is 0.1E-7
  1 Comment
Rik
Rik on 7 May 2020
What do you mean with iteration in this case? Have a read here and here. It will greatly improve your chances of getting an answer.

Sign in to comment.

Answers (1)

Niharika Arora
Niharika Arora on 13 May 2020
You want to get the value of Ts for which the equation in the problem is equated to be true, with the tolerance of 100 micro unit.
There are primarily two ways to solve an equation of such kind:
  1. Analytically [Computationally Expensive]
  2. Iteratively
Given the initial value of Ts, I believe you want an iterative solution.
Before diving into the solution, let's see the plot of different Ts values vs the equation value:
The above plot is for the first 1000 values of Ts.
From the plot above, it is quite clear that the value resides in (200,400)
Knowing upper and lower bound helps in improving accuracy with less computation.
You can now try the following approach:
start=200;
end1=400;
finAB=0;
target=800;
tole=10^-8;
while(abs(finAB-target)>10^-8)
ts=(start+end1)/2;
sumA = 12*(ts-293);
sumB = 0.8*5.67*10^-8*(ts^4);
finAB=sumA+sumB;
if(finAB<target)
start=ts;
else
end1=ts;
end
disp(append(num2str(ts)," : ",num2str(finAB)));
end
The method used is called, binary search.

Categories

Find more on Dates and Time in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!