blob: 57c1418f2f8d6cdfb1633292d239e264ce522046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
//------------------------------------------------------------------------------
|