summaryrefslogtreecommitdiff
path: root/1301/CH4/EX4.1/ex4_1.sce
blob: b0a174e95a474ec9ec8d7615f565af16401cd026 (plain)
1
2
3
4
5
6
7
8
9
clc;
r=1.5;                      //radius in ft
t=2;                        //time in sec
s=2*%pi*r;                  //calculating s using circumference of circle
                            //=2*3.14*r in ft
v=s/t;                      //calculating velocity using v=s/t in ft/sec
ac=(v*v)/r;                 //calculating centripetal accelaration in                                 //ft/sec square.
disp(ac,"Centripetal Accelaration = ");  //Displaying Result in ft/sec square.