diff --git a/atom.xml b/atom.xml index 8d06c33..7c30c55 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
due 11/13/2024 before midnight via Learning Suite @@ -153,7 +153,7 @@
The fuel tanks and rocket body are made of aluminum. Note that a stacked configuration is used and that about 10 meters of extra length is required below the tanks for the engines. As shown on the right, it is easiest to estimate the required tank size by assuming that the tanks are cylinders and then add on about 3 meters per tank to account for the fact that the round end caps will need to be longer than a pure cylinder and that there will be some ullage volume (that means the tanks won’t be 100% filled). For simplicity, I’d treat the diameter of the tanks as the same as that of the rocket body (it’s a really small difference). Note that the cylindrical tanks are meant to have the same volume as the rounded tanks (see right-most figure). So for a fixed volume they will be shorter (which is why we add in the extra length), but the surface area should be roughly the same. In other words, the added 3m length per tank should only affect the total length calculation of the stage, it should not affect the structural mass calculation.
+The fuel tanks and rocket body are made of aluminum. Note that a stacked configuration is used and that about 10 meters of extra length is required below the tanks for the engines. As shown on the right, it is easiest to estimate the required tank size by assuming that the tanks are cylinders and then add on about 3 meters per tank to account for the fact that the round end caps will need to be longer than a pure cylinder and that there will be some ullage volume (that means the tanks won’t be 100% filled). For simplicity, I’d treat the diameter of the tanks as the same as that of the rocket body (it’s a really small difference).
Because the structural mass depends on the propellant mass, and the propellant mass depends on the structural mass, an iterative process is required (i.e., root finding). If you’re struggling to know if you’re on the right track, because this is an actual rocket, you could start with the known propellant mass and work your way through the equations checking your numbers against the actual rocket, then fine tune from there.
diff --git a/me415/schedule/hw9/index.html b/me415/schedule/hw9/index.html index f720831..9589987 100644 --- a/me415/schedule/hw9/index.html +++ b/me415/schedule/hw9/index.html @@ -11,7 +11,7 @@due 12/6/2017 before midnight via Learning Suite -50 possible points
- -All of these exercises will be done in class (though some of you may need a little extra time outside of class to finish up). I’d like to give you practice with rocket analyses, while still preserving your out of class time for finishing up your plane and report.
- -Basic Sizing of a Rocket Engine. Some parameters for a liquid-fueled rocket engine are given below:
- -\(\gamma\) | -ratio of specific heats for combustion gas mixture | -1.2 | -
\(M_w\) | -molecular weight of combustion gas mixture | -12 (g/mol) | -
\(T_{Tc}\) | -combustion (total) temperature | -3500 K | -
\(P_{Tc}\) | -combustion (total) pressure | -20 MPa | -
\(I_{sp}\) | -required specific impulse at altitude | -400 seconds | -
\(T\) | -required thrust at altitude | -2 MN | -
- | nozzle type | -80% bell nozzle | -
\(\sigma_c\) | -max allowable stress in combustion chamber wall | -55 MPa | -
Design for peak efficiency at an altitude of 12.5 km (shortly after max-Q). The required thrust and specific impulse apply at this altitude.
- -Determine/design the following:
- -Note: These specs correspond to the Space Shuttle Main Engine so you can check some of your numbers (though don’t expect them to be exactly the same, there are important boundary layer losses and multiphase flow losses on a nozzle that we are neglecting).
-Basic Sizing/Performance of a Rocket. The worksheet is available online. I’ve already laid out the methodology so you don’t need to repeat it here. Just report the four critical values, and include a brief discussion on any lessons learned.
-due 11/20/2024 before midnight via Learning Suite +15 possible points
+ +This problem uses the same rocket from the previous homework. In this case we are interested in the flight trajectory. The Saturn V does not fly at a straight angle during the first stage and so it would be difficult to provide an accurate estimate using the closed-form rocket equation. Instead, we need to use numerical integration. Though we will still ignore drag in this analysis.
+ +As mentioned the heading angle changes significantly throughout the flight. I fit a curve to postflight trajectory data and computed the heading angle as a function of time during stage 1. Note that \(\theta = 0\) corresponds to vertical flight:
+ + + +\(\theta = p_1 \arctan\left(p_2 t^{p_3}\right)\) +where +\(p_1 = 0.866, p_2 = 2.665 \times 10^{-5}, p_3 = 2.378\)
+ +Other parameters you will need:
+ +thrust | +35.1 MN | +
total rocket mass | +\(2.97 \times 10^6\) kg | +
specific impulse | +283 s | +
You could solve this using any ODE solver (e.g. scipy.integrate.solve_ivp
in python), or you could write a basic forward Euler method. This means that you setup a time vector, and a starting point for \(V, m, z, x\), and then execute a for loop. At iteration (\(i\)) you update those four values using data from the previous iteration (\(i - 1\)). For example, using the last ODE (and setting \(\Delta t = t^{(i)} - t^{(i-1)}\)):
Report the following. Be sure to clearly show your work and assumptions.
+ + + +