diff options
Diffstat (limited to '2219/CH11/EX11.7')
-rwxr-xr-x | 2219/CH11/EX11.7/Ex11_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2219/CH11/EX11.7/Ex11_7.sce b/2219/CH11/EX11.7/Ex11_7.sce new file mode 100755 index 000000000..57c1418f2 --- /dev/null +++ b/2219/CH11/EX11.7/Ex11_7.sce @@ -0,0 +1,16 @@ +// Chapter 11 example 7
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given data
+m = 100; // mass of satellite
+V = 8000; // orbital velocity in m/s
+Re = 6370; // radius of earth in Km
+H = 200; // satellite height above earth surface
+
+// Calculations
+CF = (m*V^2)/((Re+H)*10^3); //centrifugal force
+
+// output
+mprintf('Centrifugal Force = %d Newtons',CF);
+//------------------------------------------------------------------------------
|