summaryrefslogtreecommitdiff
path: root/260/CH13/EX13.16/13_16.sce
blob: 23da481da4e7df57a20da7dee516454e6c403314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//Eg-13.16
//pg-562

clear
clc

deff('out = func(in1,in2)','out = sin(in1)-in2')

//To get the answers in the text book we shouldn't take sint=Vs to be unity!

x(1) = 0;
y(1) = 0;

h = 0.1;

for(i = 1:10)
    x(i+1) = x(i) + h;
end

a = (2^0.5-1)/2;
b = (2-2^0.5)/2;
c = -(2^0.5)/2;
d = 1 + (2^0.5)/2;

printf('   t          y\n')

for(i = 1:4)
    
    k1(i) = h*func(x(i),y(i));
    k2(i) = h*func(x(i)+h/2,y(i)+k1(i)/2);
    k3(i) = h*func(x(i)+h/2,y(i)+a*k1(i)+b*k2(i));
    k4(i) = h*func(x(i)+h,y(i)+c*k2(i)+d*k3(i));
    y(i+1) = y(i) + 1/6*(k1(i)+2*b*k2(i)+2*d*k3(i)+k4(i));
    printf('%f    %f\n',x(i),y(i))
    
end

h = 0.1;

for(i = 4:10)
    yb(i+1) = y(i-3) + 4*h/3*(2*func(x(i-1),y(i-1)) + 2*func(x(i-2),y(i-2)));
    y(i+1) = y(i-1) + h/3*(func(x(i-1),y(i-1)) + 4*func(x(i),y(i)) + func(x(i+1),yb(i+1)) );

    
end

printf('\n\nUsing the Milnes predictor-corrector Method:\n\n')

printf('   t          y\n')
for(i = 5:11)
    printf('%f    %f\n',x(i),y(i))
end