You are on page 1of 2

Metode Newton Raphson - Achim

start

Tol,T0

z=0
i=0

z==0

i=i+1;
fn= 55.567*T0^2-6883.34*T0-6.765*T0^2*log(T0)+52350;
dfn=111.134*T0-6883.34-13.53*T0*log(T0)-6,765/T0;
hn=fn/dfn;
T1=T0-hn;
e=abs((T1-T0)/T0);

e<=tol
T
Y T0=T1
z=1

Cetak T3,i

end
1. Start

2. input Tol, input V0

3. z = 0

i=0

4. z==0

5. i = i + 1

Vn = gm/c ( 1 – e-(m/c)t)

dVn = Vn + [g-c/mVn](tn+1-tn)

hn = Vn / dVn

V1 = V0 – hn

e = abs ((V1 – V0)/V0)

6. e<=tol

Ya z = 1

Tidak V0 = V1

7. Vn = m/s

8. Selesai

You might also like