AEE 4263 HW 10
docx
keyboard_arrow_up
School
Florida Institute of Technology *
*We aren’t endorsed by this school
Course
4263
Subject
Mechanical Engineering
Date
Apr 3, 2024
Type
docx
Pages
5
Uploaded by LieutenantNeutron10368
AEE 4263-02 Space Flight Mechanics Homework
HW10
Fall 2023
1.
(15 points) A spacecraft has the following inertia tensor:
I
=
[
500
−
8
−
7
−
8
300
−
5
−
7
−
5
400
]
kg
−
m
2
a.
(5 points) What are the minimum, intermediate, and maximum principal moments of inertia to the nearest kg
−
m
2
?
b.
(10 points) What is the transformation matrix from body to principal coordinates (i.e.,
C
b
p
) to four decimal places?
Solution:
a.
Minimum MOI= 501
kg
−
m
2
Intermediate MOI= 400
kg
−
m
2
Maximum MOI= 299
kg
−
m
2
b.
C
b
p
= -0.9970 -0.0416 -0.0652
0.0380 -0.9978 0.0551
0.0674 -0.0525 -0.9963
MATLAB:
%% Homework 10 Problem 1
close all clear all
clc
I= [500 -8 -7; -8 300 -5; -7 -5 400] %kg-m^2
[eigenVectors, eigenValues] = eig(I)
I_pricipal= [-eigenVectors(:,3), eigenVectors(:,1), eigenVectors(:,2)]
I_pricipal'*I*I_pricipal;
MOI= diag(eigenValues)
1
2.
(15 points) A spacecraft is spinning about the z-axis of its principal frame at 2
π rad
/
s
. The principal moments of inertia about the center of mass are:
I
xx
=
370
kg
−
m
2
I
yy
=
420
kg
−
m
2
I
zz
=
530
kg
−
m
2
The nutation damper has the following properties:
R
=
1
m μ
=
0.01
m
=
10
kg k
=
10000
N
/
m c
=
150
N
−
s
m
Use the Routh Hurwitz stability criteria to assess the spacecraft’s stability as a:
a.
(7 points) major axis spinner
b.
(7 points) minor axis spinner
c.
(1 point) why do you not need to evaluate the intermediate axis?
Solution:
a.
Major axis = Stable
r1_maj =1538460
r2_maj =23859450
r3_maj =1588940954.55
r4_maj =134666.21
r5_maj =7361318631.66
b.
Minor axis = Unstable
r1_min =2203740
r2_min =34177050
r3_min =2276680293.88
r4_min =-149591.50
r5_min =2970492893.22
c.
Intermediate axis: Did not need to evaluate because motion is not stable by there being different signs on the r’s. Spin is unstable about the intermediate axis.
r1_int =1941390
r2_int =29964450
r3_int =1996576766.15
r4_int =-231592.44
r5_int =-2584430101.53
MATLAB:
%% Homework 10 Problem 2
close all clear all
clc
R= 1; %m
mu= 0.01; m= 10; %kg
k= 10000; %N/m
c= 150; %N-s/m
w0= 2*pi;
% Major
2
Ixx_maj= 370; %kg-m^2
Iyy_maj= 420; %kg-m^2
Izz_maj= 530; %kg-m^2
MOI_maj= [Ixx_maj Iyy_maj Izz_maj];
a4_maj= (1-mu)*m*Ixx_maj*Iyy_maj;
a3_maj= c*Ixx_maj*(Iyy_maj+ (1-mu)*m*R^2);
a2_maj= k*(Iyy_maj+(1-mu)*m*R^2)*Ixx_maj + (1-mu)*m*((Ixx_maj-
Izz_maj)*(Iyy_maj-Izz_maj)-(1-mu)*Ixx_maj*m*R^2)*w0^2;
a1_maj= c*((Ixx_maj-Izz_maj-(1-mu)*m*R^2)*(Iyy_maj-Izz_maj))*w0^2;
a0_maj= k*((Ixx_maj-Izz_maj-(1-mu)*m*R^2)*(Iyy_maj-Izz_maj))*w0^2 + ((Iyy_maj-Izz_maj)*(1-mu)^2)*m^2*R^2*w0^4;
r1_maj= a4_maj
r2_maj= a3_maj
r3_maj= a2_maj-((a4_maj*a1_maj)/a3_maj)
r4_maj= a1_maj- (a3_maj^2 *a0_maj)/((a3_maj*a2_maj) - (a4_maj*a1_maj))
r5_maj=a0_maj
% Minor Ixx_min= 530; %kg-m^2
Iyy_min= 420; %kg-m^2
Izz_min= 370; %kg-m^2
MOI_min= [Ixx_min Iyy_min Izz_min];
a4_min= (1-mu)*m*Ixx_min*Iyy_min;
a3_min= c*Ixx_min*(Iyy_min+ (1-mu)*m*R^2);
a2_min= k*(Iyy_min+(1-mu)*m*R^2)*Ixx_min + (1-mu)*m*((Ixx_min-
Izz_min)*(Iyy_min-Izz_min)-(1-mu)*Ixx_min*m*R^2)*w0^2;
a1_min= c*((Ixx_min-Izz_min-(1-mu)*m*R^2)*(Iyy_min-Izz_min))*w0^2;
a0_min= k*((Ixx_min-Izz_min-(1-mu)*m*R^2)*(Iyy_min-Izz_min))*w0^2 + ((Iyy_min-Izz_min)*(1-mu)^2)*m^2*R^2*w0^4;
r1_min= a4_min
r2_min= a3_min
r3_min= a2_min-((a4_min*a1_min)/a3_min)
r4_min= a1_min- (a3_min^2 *a0_min)/((a3_min*a2_min) - (a4_min*a1_min))
r5_min=a0_min
% Intermediate
Ixx_int= 370; %kg-m^2
Iyy_int= 530; %kg-m^2
Izz_int= 420; %kg-m^2
MOI_int= [Ixx_int Iyy_int Izz_int];
a4_int= (1-mu)*m*Ixx_int*Iyy_int;
a3_int= c*Ixx_int*(Iyy_int+ (1-mu)*m*R^2);
a2_int= k*(Iyy_int+(1-mu)*m*R^2)*Ixx_int + (1-mu)*m*((Ixx_int-
Izz_int)*(Iyy_int-Izz_int)-(1-mu)*Ixx_int*m*R^2)*w0^2;
a1_int= c*((Ixx_int-Izz_int-(1-mu)*m*R^2)*(Iyy_int-Izz_int))*w0^2;
a0_int= k*((Ixx_int-Izz_int-(1-mu)*m*R^2)*(Iyy_int-Izz_int))*w0^2 + ((Iyy_int-Izz_int)*(1-mu)^2)*m^2*R^2*w0^4;
3
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
r1_int= a4_int
r2_int= a3_int
r3_int= a2_int-((a4_int*a1_int)/a3_int)
r4_int= a1_int- (a3_int^2 *a0_int)/((a3_int*a2_int) - (a4_int*a1_int))
r5_int=a0_int
4
3.
(20 points) A single stage rocket is launched vertically. Its properties are:
Launch mass: m
0
=
62100
kg
Mass ratio:
n
=
7.2
Specific impulse:
I
sp
=
420
s
Thrust:
T
=
942
kN
Neglecting drag and assuming a constant gravitational acceleration of g
0
=
9.81
m
/
s
, compute:
a.
(5 points) Total burn time in seconds
b.
(5 points) Altitude at burnout in km
c.
(5 points) Burnout speed in km/s
d.
(5 points) Maximum altitude in km
Solution:
a.
tb0 = 233.89 sec
b.
hb0 =388.52 km
c.
vb0 =5.84 km/s
d.
hmax =2126.30 km
MATLAB:
%% Homework 10 Problem 3
close all clear all
clc
m0= 62100; %kg
n= 7.2;
Isp= 420; %s
T= 942000; %N
g0= 9.81; %m/s
% a. Total burn time in seconds
mf= m0/n;
me= T/(Isp*g0);
tb0= (m0-mf)/me
% b. Altitude at burnout in km
c= Isp*g0;
hb0= ((c/me)*(mf*log(mf/m0)+m0-mf) - 0.5*((m0-mf)/me)^2*g0)/1000
% c. Burnout speed in km/s
vb0= (c*log(m0/mf) - g0*((m0-mf)/me))/1000
% d. Maximum altitude in km
hmax= ((0.5*c^2/g0)*log(n)^2 - ((c*m0)/me)*((n*log(n) - (n-1))/n))/1000
5
Related Documents
Related Questions
A mechanic changing a tire rolls a wheel along the ground towards the car. The radius of the
wheel is 42cm, and the speed of the wheel as it rolls is 2 revolutions per second.
Height Above Ground
(m)
radiu
HIDE
wheel spet
Time
The diagram above illustrates the vertical motion of a point on the tire over time. It is possible to model
the height of this point using a sinusoidal function of the form h(t)=-a sin[b(t-c)]+d.
a) Determine the length of time required for one revolution of the tire.
b) State the numerical value for each of the parameters a, b, c & d.
And write a function representing the motion of the point in the form h(t)= -a sin[b(t−c)]+d.
arrow_forward
Edition
Eighth
Z▼▲ Ā
Mc
Graw
Hill
Vector Mechanics for Engineers: Statics
HW: Ch 6
จงหาตำแหน่งของจุดศูนย์ถ่วงของชิ้นส่วนเครื่องจักรกลด้านแกน x ของวัสดุประกอบดังรูป
Find the position of the center of gravity of the mechanical part on the x-axis side of the
composite as shown in the figure.
mm
20
34 mm
62 mm
51 mm
20 mm
200 mm
10 mm
© 2007 The McGraw-Hill Companies, Inc. All rights reserved.
45 m
100 mm
55 mm
7-52
arrow_forward
I could really use some assistance on part b,c,d,e,f
arrow_forward
In MATLAB write out a program to integrate the equations of motion of a rigid body. The inertia matrix is given by I = [125 0 0; 0 100 0; 0 0 75] which is a diagonal, where diag operator provides a matrix with given elements placed on its diagonal. Consider three cases where the body rotates 1 rad/sec about each principal axis. Integrate the resulting motion and study the angular rates and the resulting attitude (use any attitude coordinates). For each principal axis case, assume first that a pure spin about the principal axis is performed, and then repeat the simulation where a small 0.1 rad/sec motion is present about another principal axis. Discuss the stability of each motion. The code should produce a total of 6 simulations results when it is ran.
arrow_forward
Saved
em Set 02 - Chapter 2 Part 1
Required information
of 2
Consider the following vectorial representations.
Add the three vectors shown to form a resultant vector R , and report your result using polar vector representation. Take Y= 3 m.
2 m
ok
3 m
30°
162
2 (Enter a positive value for the phase angle.)
4.84 m @
ces
arrow_forward
I am trying to code the solution to the problem in the image in MATLAB. I wanted to know what is the milankovich constraint equation that is talked about in part b.
arrow_forward
Please don't provide handwritten solution.
arrow_forward
Q1
arrow_forward
ihài 25 Q3) Let vector A = 5i +2j, Vector B = -3i
%3D
-5j, and vector C = A+ B. (a) Write
%3D
vector C in component form. (b) Draw
a coordinate system and on it show
the all vectors. (c) What are the
?magnitude and direction of vector C
arrow_forward
For the Following question Graph all 4 : [I just need all 4 graphs and please explain and make clean solution]
Position vs time
Velocity vs time
Acceleration vs time
Force vs time
[For your convenience, I have solved the numerical solutions for the problem] (Please Look at the picture since it is much cleaner)
Question : A 550 kilogram mass initially at rest acted upon by a force of F(t) = 50et Newtons. What are the acceleration, speed, and displacement of the mass at t = 4 second ?
a =(50 e^t)/(550 ) [N/kg]
v = ∫_0^t▒(50 e^t )dt/(550 )= v_0 +(50 e^t-50)/550=((e^t- 1))/11
x = ∫_0^t▒(e^t- 1)dt/(11 )= x_0 +(e^t- t - 1)/(11 )
a(4s)=(50*54.6)/550= 4.96[m/s^2 ]
v(4s)=((e^4-1))/11= 4.87[m/s]
x(4s)=((e^4- 4 - 1))/11= 4.51 [m]
arrow_forward
Don't Use Chat GPT Will Upvote And Give Solution In 30 Minutes Please
arrow_forward
I need help with my MATLAB code. There is an error in the following code. The error says my orbitaldynamics function must return a column vector. Can you help me fix it? I tried changing the semi colon to a comma in dstate_dt = [v, a_total]; but it still gives me error
mu_earth = 398600.4418; % Earth's gravitational parameter (km^3/s^2)
R_earth = 6378.137; % Earth's radius (km)
C_d = 0.3; % Drag coefficient (assumed)
A = 0.023; % Cross-sectional area of ISS (km^2)
m = 420000; % Mass of ISS (kg)
% Initial conditions: position and velocity (ISS state vector)
% ISS initial state vector (km and km/s) - sample data
state_ISS =[-2.1195e+03, 3.9866e+03, 5.0692e+03, -5.3489, -5.1772, 1.8324];
% Time span for 10 revolutions
T_orbit = 2 * pi * sqrt((norm(state_ISS(1:3))^3) / mu_earth);
time_span = [0, 10 * T_orbit];
% Step 3: Numerical integration using ODE solver
options = odeset('RelTol', 1e-12, 'AbsTol', 1e-12);
[t, state] = ode45(@orbitalDynamics, time_span, state_ISS,…
arrow_forward
force
15[kN-m¹]
JUN JUL A
2m.
2m
2m
7x
incl
25[KN)
Find location of the application of the resultant
to generate the proper moment of force about 0.
Ge
arrow_forward
m and n are orthogonal vectors. Let their component forms be defined as (mx, my)
and (nx, ny) respectively, where all values are integers. mx+nx=-3 and nymy=40. If
O
arrow_forward
Topics Discussed: Static of Rigid Bodies, Force Vector, Addition of a System of Coplanar Forces, Cartesian Vector
Please re-compute and re-solve the given, This is my answer. But I also want to see your expert answer if we land in the same solutions and answers. Please show your complete solution.
Thank you.
arrow_forward
The vector expressions for the position vectors for cables “AC” and “AD” are given by: rAC = -3i - j - 6k ft and rAD = 2i + 3j - 6k ft respectively.
What is the length of cable “AD”?
arrow_forward
Question A. What is F2 in a 3d vector component form?
arrow_forward
I want a detailed explanation of the two areas marked in red. Firstly, why + and - became in derivation all - Secondly, why did we put it above C dot and why did we delete a? I want an explanation about this derivation with a detailed explanation of its drawing, please.
arrow_forward
I want to explain the parameter in green where it came from and how to determine its derivative, with an explanation on this graph and what mean clockwise and anticlockwise, and what the - and + are on this drawing? x and y. I want a detailed explanation please..
arrow_forward
Help me with this ENGINEERING GRAPHICS problem.
arrow_forward
Hi, how do you solve this engineering dynamics question. Thanks.
arrow_forward
Q4/B/ the value of X-bai
Q4/ For the figure below, all
0.987
dimensions in inch. A/The total
O 2.5
Area : *
O 0.857
O 0.254
y
0.398
O 1.06
1.5
O 2
0.65
2.5
0.5
2.5
O 0.487
0.55
2.5
2.5
Other:
3.
arrow_forward
V-axis
X-axis
A
Figure 1. An object (yellow point) travels from point A to point B along the arc of a circle that is
centered at point O (red point).
velocity of an object, either due to a change in speed or direction, means the object is accelerating.
According to Newton's second law, an object will accelerate only if there is a non-zero total force
acting on the object. For uniform circular motion, it turns out that this force must always be
pointing towards the center of the circle that the object is travelling around and we say that there
is a centripetal force present.
You can use Newton's second law and a little bit of geometry to understand why an object
undergoing uniform circular motion must be experiencing a force that is pointing towards the
center of the circle the object is travelling on. If the acceleration vector pointed above or below the
plane of the circle, the velocity vector would also end up pointing out of the plane that the circle
is on. Since the velocity vector…
arrow_forward
Find the magnitude of the torque about P if a 36-lb force isapplied as shown in #40.
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press

Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON

Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education

Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY

Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning

Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Related Questions
- A mechanic changing a tire rolls a wheel along the ground towards the car. The radius of the wheel is 42cm, and the speed of the wheel as it rolls is 2 revolutions per second. Height Above Ground (m) radiu HIDE wheel spet Time The diagram above illustrates the vertical motion of a point on the tire over time. It is possible to model the height of this point using a sinusoidal function of the form h(t)=-a sin[b(t-c)]+d. a) Determine the length of time required for one revolution of the tire. b) State the numerical value for each of the parameters a, b, c & d. And write a function representing the motion of the point in the form h(t)= -a sin[b(t−c)]+d.arrow_forwardEdition Eighth Z▼▲ Ā Mc Graw Hill Vector Mechanics for Engineers: Statics HW: Ch 6 จงหาตำแหน่งของจุดศูนย์ถ่วงของชิ้นส่วนเครื่องจักรกลด้านแกน x ของวัสดุประกอบดังรูป Find the position of the center of gravity of the mechanical part on the x-axis side of the composite as shown in the figure. mm 20 34 mm 62 mm 51 mm 20 mm 200 mm 10 mm © 2007 The McGraw-Hill Companies, Inc. All rights reserved. 45 m 100 mm 55 mm 7-52arrow_forwardI could really use some assistance on part b,c,d,e,farrow_forward
- In MATLAB write out a program to integrate the equations of motion of a rigid body. The inertia matrix is given by I = [125 0 0; 0 100 0; 0 0 75] which is a diagonal, where diag operator provides a matrix with given elements placed on its diagonal. Consider three cases where the body rotates 1 rad/sec about each principal axis. Integrate the resulting motion and study the angular rates and the resulting attitude (use any attitude coordinates). For each principal axis case, assume first that a pure spin about the principal axis is performed, and then repeat the simulation where a small 0.1 rad/sec motion is present about another principal axis. Discuss the stability of each motion. The code should produce a total of 6 simulations results when it is ran.arrow_forwardSaved em Set 02 - Chapter 2 Part 1 Required information of 2 Consider the following vectorial representations. Add the three vectors shown to form a resultant vector R , and report your result using polar vector representation. Take Y= 3 m. 2 m ok 3 m 30° 162 2 (Enter a positive value for the phase angle.) 4.84 m @ cesarrow_forwardI am trying to code the solution to the problem in the image in MATLAB. I wanted to know what is the milankovich constraint equation that is talked about in part b.arrow_forward
- Please don't provide handwritten solution.arrow_forwardQ1arrow_forwardihài 25 Q3) Let vector A = 5i +2j, Vector B = -3i %3D -5j, and vector C = A+ B. (a) Write %3D vector C in component form. (b) Draw a coordinate system and on it show the all vectors. (c) What are the ?magnitude and direction of vector Carrow_forward
- For the Following question Graph all 4 : [I just need all 4 graphs and please explain and make clean solution] Position vs time Velocity vs time Acceleration vs time Force vs time [For your convenience, I have solved the numerical solutions for the problem] (Please Look at the picture since it is much cleaner) Question : A 550 kilogram mass initially at rest acted upon by a force of F(t) = 50et Newtons. What are the acceleration, speed, and displacement of the mass at t = 4 second ? a =(50 e^t)/(550 ) [N/kg] v = ∫_0^t▒(50 e^t )dt/(550 )= v_0 +(50 e^t-50)/550=((e^t- 1))/11 x = ∫_0^t▒(e^t- 1)dt/(11 )= x_0 +(e^t- t - 1)/(11 ) a(4s)=(50*54.6)/550= 4.96[m/s^2 ] v(4s)=((e^4-1))/11= 4.87[m/s] x(4s)=((e^4- 4 - 1))/11= 4.51 [m]arrow_forwardDon't Use Chat GPT Will Upvote And Give Solution In 30 Minutes Pleasearrow_forwardI need help with my MATLAB code. There is an error in the following code. The error says my orbitaldynamics function must return a column vector. Can you help me fix it? I tried changing the semi colon to a comma in dstate_dt = [v, a_total]; but it still gives me error mu_earth = 398600.4418; % Earth's gravitational parameter (km^3/s^2) R_earth = 6378.137; % Earth's radius (km) C_d = 0.3; % Drag coefficient (assumed) A = 0.023; % Cross-sectional area of ISS (km^2) m = 420000; % Mass of ISS (kg) % Initial conditions: position and velocity (ISS state vector) % ISS initial state vector (km and km/s) - sample data state_ISS =[-2.1195e+03, 3.9866e+03, 5.0692e+03, -5.3489, -5.1772, 1.8324]; % Time span for 10 revolutions T_orbit = 2 * pi * sqrt((norm(state_ISS(1:3))^3) / mu_earth); time_span = [0, 10 * T_orbit]; % Step 3: Numerical integration using ODE solver options = odeset('RelTol', 1e-12, 'AbsTol', 1e-12); [t, state] = ode45(@orbitalDynamics, time_span, state_ISS,…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Elements Of ElectromagneticsMechanical EngineeringISBN:9780190698614Author:Sadiku, Matthew N. O.Publisher:Oxford University PressMechanics of Materials (10th Edition)Mechanical EngineeringISBN:9780134319650Author:Russell C. HibbelerPublisher:PEARSONThermodynamics: An Engineering ApproachMechanical EngineeringISBN:9781259822674Author:Yunus A. Cengel Dr., Michael A. BolesPublisher:McGraw-Hill Education
- Control Systems EngineeringMechanical EngineeringISBN:9781118170519Author:Norman S. NisePublisher:WILEYMechanics of Materials (MindTap Course List)Mechanical EngineeringISBN:9781337093347Author:Barry J. Goodno, James M. GerePublisher:Cengage LearningEngineering Mechanics: StaticsMechanical EngineeringISBN:9781118807330Author:James L. Meriam, L. G. Kraige, J. N. BoltonPublisher:WILEY

Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press

Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON

Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education

Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY

Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning

Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY