This is an old revision of the document!


Project 2: Escape from Ice Station McMurdo

Parts A and B: backstory from previous class period (not computational)

You are a member of a scientific research team at McMurdo ice station which is funded by the Carver Media Group in Antarctica.

Two members of your research team have recently returned from investigating an incident at a Norwegian research facility. They brought with them a burnt humanoid body with two faces. Since the disturbing discovery several inhabitants of the ice station have disappeared. Frightened, a member of your team decided to flee the station on a fan powered hovercraft but you receive a distress call not long after their escape that their steering and acceleration controls have been jammed and they need your help.

You decide to attempt a rescue in another hovercraft. You need to tell the runaway researcher the exact time from your starting time to jump onto your hovercraft as you may only have one shot at this rescue. Just as you are about to radio the time to jump to the runaway researcher, you realize the steering and acceleration controls have become frozen on your hovercraft and so it continues to accelerate and you cannot change direction. 200m ahead of the point at which you were going to tell the researcher to jump is an ice ravine. At the bottom of the ice ravine, 400m below, is an unfrozen salt water pool surrounded by stalagmites. From the ravine's edge to the pool is 490m and the pool stretches for 900m. You are moving too quickly to survive jumping off the hovercraft, but might survive the fall into the pool by staying on the hovercraft; it has seat belts. You now have a choice to make, to stay on your hovercraft or jump to the runaway researcher's hovercraft. One or both may make it to the pool. Your choice may be the difference between life and death.

Part C: computational modeling of the trajectories of the hovercrafts

Surprisingly enough hovercrafts are an expensive piece of kit. Your employer, the Carver Media Group, is concerned by the happenings at the McMurdo ice station and would like you to produce an accident report detailing the events after you lost control of your hovercraft. The accident report should include a detailed computational model that provides the projected motion of the runaway hovercraft.

#get_library("https://raw.githubusercontent.com/perlatmsu/physutil/master/js/physutil.js")
 
#Objects
cliff = box(pos=vector(-100,0,0), size=vector(200,800,0), color=color.white)
ravine = box(pos=vector(245,-200, 0), size=vector(490,400,0), color=color.white)
lake = box(pos=vector(940, -200, 0), size=vector(900,400,0), texture=textures.rough, color=vector(0.1,0.5,1))
runawaycraft = sphere(pos=vector(-200,400,0), radius=10, color=color.red)

#Parameters and Initial Conditions
g = vector(0,-9.81,0)
b = 0  #Drag coefficient

runawaycraftm = 1500
runawaycraftv = vector(10,0,0)
runawaycraftp = runawaycraftm*runawaycraftv

#Time and time step
t=0
tf=5
dt = 0.01

#MotionMap/Graph
#runawaycraftMotionMap = MotionMap(runawaycraft, tf, 5, markerScale=1, labelMarkerOrder=False, markerColor=color.orange)

#Calculation Loop
while runawaycraft.pos.x < 0:
    rate(500)

    Fgrav = runawaycraftm*g
    Fground = -Fgrav
    Fnet = Fgrav + Fground
 
    runawaycraftp = runawaycraftp + Fnet*dt
    runawaycraft.pos = runawaycraft.pos + (runawaycraftp/runawaycraftm)*dt

    #runawaycraftMotionMap.update(t, runawaycraftp/runawaycraftm)

    t = t + dt
  • pcubed_intro_project.1528922685.txt.gz
  • Last modified: 2018/06/13 20:44
  • by tallpaul