Musings and thoughts on how to use observational seismology as an educational tool, or even just a hobby. Linked closely with dentonseismo.co.uk
Earthquake location by backprojection
Get link
Facebook
X
Pinterest
Email
Other Apps
What would happen if time could run backwards as well as forwards ?
Well seismologists can run time backwards in a computer and work out where an earthquake has happened.
We know what time a seismic wave reaches a monitoring station, and we know the speed it travels. If we run time backwards we can then work out the locus of possible origins for the source of the earthquake at each time in the past, for each station this will be a circle of possible origin locations that increases in size as we go back in time. With three or more stations the origin location (and time) of the event can be estimated from the point when all of these possible locations converge on one point.
A simple python program and some data from a recent earthquake in Cornwall illustrates this principle
importmatplotlib.pyplotaspltimportmathimportnumpyasnpfrommatplotlib.patchesimportCircleimportmatplotlib.animationasanimationfrommatplotlib.animationimportFuncAnimation#Writer = animation.writers['ffmpeg']#writer = Writer(fps=20, metadata=dict(artist='Paul Denton'),bitrate=1800)#image_file = background image of cornwall# background plot 20px/kmscale=20img=plt.imread('./corn_map.png')stations=['PZ','CCA1','RL','FL']x=[315,764,946,958]y=[487,330,164,417]#pick times (sec after 16:52pick=[8.430,7.600,9.418,7.880]# Create a figure. Equal aspect so circles look circularfig,ax=plt.subplots(1)ax.set_aspect('equal')# pwave velocity in crust =5.76km/secspeed=5.76#depth=10kmdepth=10.0#set latest possible time for event (directly below closest station)latest_time=min(pick)-depth/speed-0.01# Create a figure. Equal aspect so circles look circularfig,ax=plt.subplots(1)ax.set_aspect('equal')ax.imshow(img)defrun_animation():anim_running=True# section to allow stopping of animation ona key pressdefonClick(event):nonlocalanim_runningifanim_running:anim.event_source.stop()anim_running=Falseelse:anim.event_source.start()anim_running=Truedefupdate(frame_number):#assume 1x fframenumber=10 msecax.clear()ax.imshow(img)# set a test origin time and go backwards in timetime=round(latest_time-(frame_number/100),2)label='time=16:52:'+str(time)# plot time label on animationax.text(100,750,label)foriinrange(4):traveltime=pick[i]-time# travel time to each station for this test originslope=traveltime*speed# slopw distance from station for this test originepidist=math.sqrt(slope*slope-depth*depth)# surface distance for this slope distancesize=epidist*scale# convert surface distance to map scalecirc=Circle((x[i],y[i]),size,color='k',fill=False)# plot a range sircle of all possible locations that match# this test origin time for each stationax.add_patch(circ)fig.canvas.mpl_connect('button_press_event',onClick)# pause animation when a mouse is clickedanim=animation.FuncAnimation(fig,update,frames=200)run_animation()# Show the image#animation.save('cornwall_backprojection.mp4')plt.show()
Building a lego seismometer Bill of materials Bricks 4 x 2x3brick 2 x 2x4 brick 2 x 1x12 brick 2 x 1x10 brick 2 x 1x8 brick 2 x 1x2 brick 1 x 2x8 brick 1 x 1x1 brick plates 4 x 2x6 plate 3 x 2x10 plate 4 x 1x6 plate 2 x 2x4 plate 2 x 2x3 plate 4 x 1x2 plate 2 x 2x2 plate 2 x 1x1 plate 2 x 4x6 plate 2 x 1x4 plate smooth plates 4 x 1x2 smooth plates Non-lego components 1 x spring steel leaf spring (25mm x 0.152mm x 150mm) 1 x 14mm diameter magnet 1 x 5mm diameter magnet 2 x 20mm x12mm adhesive tape (eg kaptan 0.03mm, or packing tape ) 1 x coil (1200turn 22mm id 10mm high) 1 x spacer 0.5mm thick for assembly 1 x 3mm thick 50x50mm square steel washer Instructions... there are two seperate lego parts which are hinged together with the thin tape acting as weak flexures. The leaf spring is clamped between adjacent lego pieces when making the hinge piece, use a strip of card or plastic 0.5mm thick as a spacer to hold the two halves of ...
Since the BBC:microbit has an accelerometer chip on it it seems only natural to turn it into the heart of an educational seismometer. microbit accelerometer data recorded by jAmaseis datalogging software So what steps need to be done 1) install the mbed serial driver to connect your microbit to your (windows) computer using a USB lead 2) write some code to output acceleration data to the serial line on the microbit 3) make sure you have suitable microbit device file for jamaseis 4) connect it all together In detail 1) install the mbed serial driver for windows see https://developer.mbed.org/handbook/Windows-serial-configuration This will create a virtual serial COM port on your computer... you can check this by looking at Computer...properties...device manager (windows7) On my computer the microbit appears as COM23 2) write some code to output acceleration data to the serial line.. you can do this in a browser on the mic...
In the 2019-20 football season DentonSeismo in collaboration with Sky Bet installed seismic monitoring stations at a number of championship football stadiums in order to monitor the crowd response to home goals. Whose goal will get the greatest response Barnsley F.C.
Comments
Post a Comment