-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphysical_parameters.m
46 lines (37 loc) · 1.11 KB
/
physical_parameters.m
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
%%
% ISSTracker physical parameters
% Author : Rami Houdroge
% Version : 1.1
% Created : 2011
% Revision : $Id: physical_parameters.m 10 2016-05-08 21:42:58Z rami $
%%
classdef physical_parameters
properties (Constant)
% earth
f = 1/298.257223563;
ae = 6378136.46;
mu = 3.986004415e14;
% degree and order of earth potential
potentialFlag = true;
degree = 2;
order = 2;
% third bodies
sunAttraction = false;
moonAttraction = false;
innerBodies = false;
outerBodies = false;
% drag
dragFlag = false;
solarActivityFileName = 'Oct2014F10.txt';
% solar radiation pressure
srpFlag = false;
% ISS
pressurizedVolume = 937; % m^3
dim = physical_parameters.pressurizedVolume^(1/3);
solarArrayArea = 34 * 12 * 8;
solarArrayRotAxis = [0, 0, 1];
dragCoefficient = 2;
absorptionCoefficient = .1;
reflectionCoefficient = .9;
end
end