41
E80 Experimental Engineering Lecture 8 Thrust and light Modeling http://twistedsifter.com/2012/10/red-bull-stratos-space-jump-photos/

Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Lecture 8 Thrust and light Modeling

Feb. 13, 2014 http://twistedsifter.com/2012/10/red-bull-stratos-space-jump-photos/

Page 2: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Outline

§  Static Motor Rotation Lab §  Overview of Modeling §  1DOF Model §  3DOF Model

Page 3: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Static Motor Rotation Lab

Page 4: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Static Motor Rotation Lab

§  To Dos… q  Calibrate Load Cell q  Measure Thrust Curve of Rocket

Motor q  Measure average mass flow

rate q  Model 1DOF and 3DOF flight

trajectory q  Compare with OpenRocket or

Rocksim

Page 5: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Static Motor Rotation Lab

Page 6: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Static Motor Rotation Lab

§  You can calculate the average flow rate

§  You can measure the average thrust, hence you can estimate the exit velocity

Page 7: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Outline

§  Static Motor Rotation Lab §  Overview of Modeling §  1DOF Model §  3DOF Model

Page 8: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Where is the rocket going?

?

Page 9: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Outline

§  Overview of Modeling §  1DOF Model §  3DOF Model §  More about the motor…

Page 10: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Strategy

§  Use our Newtonian Physics 1.  Draw our Free Body Diagram 2.  Derive Equations of Motion 3.  Solve equations

Page 11: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Outline

§  Static Motor Rotation Lab §  Overview of Modeling §  1DOF Model §  3DOF Model

Page 12: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

§  Free Body Diagram

z = Acceleration in Z direction m = mass T = Thrust Force g = 9.81 ms-2

FD = Drag Force

Z

T .. mz

FD

mg

Page 13: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

§  Equations of Motion

mz = T – mg – FD

m = m(t)

T .. mz

FD

mg

..

Page 14: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

§  Thrust

q  We know that motor thrust… -Is not constant -Is dependent on the motor -Can be modeled experimentally -Can be extracted from simulations (e.g. OpenRocket)

T

Page 15: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

§  Thrust

Page 16: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

§  Drag Fd = ½ρAV2CD

where ρ = density of fluid V = velocity of rocket A = Functional area CD = Drag Coefficient

FD

Page 17: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

§  Solving the Equations

mz = T – mg – FD

q  OpenRocket uses Runge-Kutta (RK4) q  We can use Euler equations that ignore high order

terms…

..

Page 18: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

for t = 0 to maxTime

{ T = … m = … Fd = …

z_dd(t) = 1/m*(T-m*g-Fd); z_d(t) = z_d + z_dd*Δt z(t) = z + z_d*Δt }

Page 19: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

One DOF Model

Page 20: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Outline

§  Static Motor Rotation Lab §  Overview of Modeling §  1DOF Model §  3DOF Model

Page 21: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  What are the 3DOF?

Z

X

Page 22: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Free Body Diagram

Z

X

θ

T

.. mz

FD

mg

.. mx (x,z)

Page 23: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Equations of Motion q  Must now sum forces in 2 directions

mz = Tsinθ – mg – FDsinθ mx = Tcosθ – FDcosθ

Z

X

..

..

T

.. mz

FD

mg

.. mx

θ

Page 24: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Free Body Diagram

Is it this simple?

T

.. mz

FD

mg

.. mx

θ

Page 25: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Free Body Diagram

Wind

Initial direction of motion

Wind

Direction of flow from rocket motion

Effective Flow Direction

New Direction of Motion

Page 26: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Free Body Diagram

L = Lift Force TD = Damping Torque V = velocity vector α = angle of attack CG = Center of Gravity CP = Center of Pressure I = moment of Inertia

Z

V

X

α TD

CG CP

L

.. Iθ

Page 27: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Is this stable? q  Depends on location of CP versus CG

V

α

CG CP

L

V

α

CG

CP

L

Page 28: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Can we demonstrate this q  If CP is between CG and nose the rocket will be ______ q  If CP is between CG and tail the rocket will be ________

Page 29: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Free Body Diagram q  Must also balance torques

Iθ = TD – rL

T

.. mz

FD

mg

.. mx

θ

CG CP

L

r

..

TD

CG CP

L

.. Iθ

α

Page 30: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Free Body Diagram q  Resulting Equations

Iθ = TD – rL mz = Tsinθ – mg – FDsinθ + Lcosθ mx = Tcosθ – FDcosθ - Lsinθ

..

..

..

Page 31: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Motor thrust… q  Is not constant q  Is dependent on the motor q  Can be modeled

experimentally q  Can be extracted from

simulations (e.g. OpenRocket)

Page 32: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  The drag force can be calculated with

Fd = ½ρAV2CD

where ρ = density of fluid V = velocity of rocket wrt fluid A = Functional area CD = Drag Coefficient (function of α)

Page 33: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Notes on Drag

Fd = ½ρAV2CD

q  Drag is a function of Velocity q  CD, hence drag, is a function of Angle of attack q  The calculation of CD is a function of how A is defined q  The direction of Drag is coordinate system dependent…

Page 34: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Notes on Drag

www.wikipedia.com

Page 35: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  Drag can be calculated w.r.t. pitch of rocket rocket velocity vector

vs.

FD

θ

CG CP

α

FD

θ

CG CP

α

Page 36: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  The lift force can be calculated with

L = ½ρAV2CL

where ρ = density of fluid V = velocity of rocket wrt fluid S = Functional area CL = Lift Coefficient (function of α)

Page 37: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Lift Forces

§  Lift can be calculated perpendicular to pitch of rocket rocket velocity vector

vs.

θ

CG CP

L

α

θ

CG CP

L

α

Page 38: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

§  The rotational damping can be modeled as

TD = c θ

where c is a damping coefficient θ is the rotational velocity of the rocket

.

.

Page 39: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

for t = 0 to maxTime

{ T = … m = … Fd = … L = …

Td = … alpha = …

z_dd(t) = … x_dd(t) = … θ_dd(t) = …

… }

Page 40: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

Three DOF Model

Page 41: Lecture 8 - Harvey Mudd College · E80 Experimental Engineering Static Motor Rotation Lab ! To Dos… " Calibrate Load Cell " Measure Thrust Curve of Rocket Motor " Measure average

E80 Experimental Engineering

To Linde Field

§  Good luck!