diff options
Diffstat (limited to '998/CH29/EX29.47/Ex47.sce')
-rwxr-xr-x | 998/CH29/EX29.47/Ex47.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/998/CH29/EX29.47/Ex47.sce b/998/CH29/EX29.47/Ex47.sce new file mode 100755 index 000000000..33c0fe116 --- /dev/null +++ b/998/CH29/EX29.47/Ex47.sce @@ -0,0 +1,10 @@ +//Ex:47
+clc;
+clear;
+close;
+m=100;//mass in kg
+v=8000;//velocity in m/s
+r=6370*10^3;//radius of earth in m
+h=200*10^3;//height above the earth surface in m
+c_f=(m*v^2)/(r+h);//centrifugal force in newtons
+printf("The centrifugal force=%d newtons",c_f);
\ No newline at end of file |