course_planning:183_projects:f21_week_1_escape_from_ice_station_mcmurdo

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revisionBoth sides next revision
course_planning:183_projects:f21_week_1_escape_from_ice_station_mcmurdo [2023/01/18 16:20] hallsteincourse_planning:183_projects:f21_week_1_escape_from_ice_station_mcmurdo [2024/01/09 22:56] hallstein
Line 99: Line 99:
   * Students should be able to set up that relate the position and time of each hovercraft and solve them as simultaneous equations for when they are in the same location.   * Students should be able to set up that relate the position and time of each hovercraft and solve them as simultaneous equations for when they are in the same location.
   * Students should be able to draw the motion of both hovercrafts (position/velocity vs time) and explain how these graphs represent the motion given their assumptions. //It is very important that students discuss and sketch the motion of the two hovercrafts, so please ask these tutor questions even if you are pressed for time.//   * Students should be able to draw the motion of both hovercrafts (position/velocity vs time) and explain how these graphs represent the motion given their assumptions. //It is very important that students discuss and sketch the motion of the two hovercrafts, so please ask these tutor questions even if you are pressed for time.//
 +</WRAP>
 +<WRAP alert>
 +**==Part A Steps and Timning:==**
 +  * 4 quadrants, including the table and representation 20 minutes
 +  * Runaway craft - constant velocity 30 minutes  
 +    * Using $v=\frac{d}{t}$ from adjacent data points
 +    * What kind of velocity is this? (average)
 +  * Rescue craft - changing velocity 45 minutes
 +    * Accelerating - assume constant
 +    * Use $v_{avg}$=$v_{inst}$ at the midpoint in time intervals (5 sec and 15 sec)
 +    * Calculate $a=\frac{\Delta v}{\Delta t}$
 +  * Assert position of rescue craft as $x_{f,res}=x_{i,run}+\frac{1}{2} a\cdot t^2$ 55 min
 +  * Final positions need to be equal at jump point  solve for t and $x_f$ 65 min
 +    * Express final position as of runaway craft as $x_{f,run}=x_{i,run}+v_{run}\cdot t$
 +    * Algebra to solve
 +  * Graphing position and velocity of both crafts 75 min
 +
 +**== Teaching Points==**
 +  * the rescue craft uses the average velocity over each interval
 +  * The average velocity used to find its acceleration is the instantaneous velocity at the midpoint in time.
 +     * $a= \frac{v_f - v_i}{t_f - t_i}$
 +     * Ask what velocities do you use, and when do they occur?   At the midpoint in the interval
 +     * To help understand this, ask them t sketch a v-t diagram for constant acceleration - v increases at a constant rate.  Ask them where on their graph the constantly changing velocity(instantaneous) is equal to the average velocity over the interval.
 +     * They can get the correct numerical value,but for the wrong reason (using times other than the midpoint) - ask them to explicitly show the velocities and times.
 +      Intro to kinematics - stress only valid for constant force motion.
 +
 +Parts A and B are meant to be done on the same day, but in practice half of the folks do not finish part B.  It's okay to spend the first part of McMurdo day 2 to complete part B. They need to do this before doing the computational part C.
 </WRAP> </WRAP>
  
Line 169: Line 196:
   * If students are moving a bit more slowly, it is OK for them to only model the motion of the constant velocity hovercraft on Tuesday and to then consider the constant force hovercraft on Thursday for 15 minutes.   * If students are moving a bit more slowly, it is OK for them to only model the motion of the constant velocity hovercraft on Tuesday and to then consider the constant force hovercraft on Thursday for 15 minutes.
 </WRAP> </WRAP>
 +<WRAP alert>
 +
 +**==Part B Steps & Timing==**
 +  * New 4 quadrants 15 min
 +  * Calculate the speed of the rescue craft at the edge, from $v_{jump}$ 30 min
 +     * Kinematics $v_{edge}^2 = v_{jump}^2 + 2a\Delta x$ Could use from the beginning point, but the emphasis is on finding the velocity (horizontal) at the edge
 +     * Or, is time is short, assume $v_{edge}=v_{jump}$
 +     * Need to know horizontal v at the edge of the rescue craft to analyze its fall
 +  *  Finding time to fall 45 min
 +     * Relaize fall time is independent of the (horizontal)velocity at the edge
 +     * Could have a conversation about what impacts the x component of the velocity
 +     * Kinematics: $\Delta y = \frac{1}{2} a t_{fall}^2$ to get fall time
 +   * Finding landing point from the fall time for both crafts: $x=v_{edge}*t_{fall} 60 min
 +   * Which craft is "safe"? 
 +   * Plot x and y vs time; and $v_x$ and $v_y$ vs time 
 +==Teaching Points==
 +  * The diagram can be tricky
 +
 +Parts A and B are meant to be done on the same day, but in practice half of the folks do not finish part B.  It's okay to spend the first part of McMurdo day 2 to complete part B.   Thye need to do this before doing the computational part C.
 +</WRAP>
 +
 +
 <WRAP info> <WRAP info>
 ==Common Difficulties== ==Common Difficulties==
Line 430: Line 479:
 Changes made to obtain solution of Part C: Changes made to obtain solution of Part C:
 {{course_planning:project_solutions:project_2_code_a.png}} {{course_planning:project_solutions:project_2_code_a.png}}
 +
 +====== Project 2: Part D: Escape from ice station McMurdo ======
 +
 +The Carver Media Group is now asking for an accident report for the your hovercraft as well. They want to you simulate the events from the point at which  the two hovercrafts meet to when the hovercraft reached the water, however, they want you to model the hovercraft as if it had left the cliff at angle of 27 degrees from the ground. They want this model to be in the same model as the model for the runaway craft.
  
 Solution Code including changes made to obtain the solution for Part C with air drag and Part D adding a 27-degree launch angle: Solution Code including changes made to obtain the solution for Part C with air drag and Part D adding a 27-degree launch angle:
Line 505: Line 558:
     Fgrav = runawaycraftm*g     Fgrav = runawaycraftm*g
     Fdrag = -b*runawaycraftp*mag(runawaycraftp)/(runawaycraftm)**2 #add drag force         Fdrag = -b*runawaycraftp*mag(runawaycraftp)/(runawaycraftm)**2 #add drag force    
-    Fnet = Fgrav + Fdrag +    Fnet = Fgrav + Fdrag         #add drag force 
-    runawaycraftp = runawaycraftp + Fnet*dt + Fdrag   #add drag force+    runawaycraftp = runawaycraftp + Fnet*dt    
     runawaycraft.pos = runawaycraft.pos + (runawaycraftp/runawaycraftm)*dt     runawaycraft.pos = runawaycraft.pos + (runawaycraftp/runawaycraftm)*dt
    
  • course_planning/183_projects/f21_week_1_escape_from_ice_station_mcmurdo.txt
  • Last modified: 2024/01/15 21:39
  • by hallstein