Coriolis Effect
Pascal Thériault-Lauzier Cégep de Rimouski Québec, Canada paslau@globetrotter.net
revised by Robert Israel
Introduction
This worksheet demonstrates the action of Coriolis force on a projectile launched from Earth.
Initialization
VectorCalculus is only used in the Model section to use vectors in an easier way.
Section 1: Model
This part of the code is used to compute the 3D model of the Coriolis force of a projectile from differential equations. The positive x axis is assumed to point East, the positive y axis North and the positive z axis up. The origin is at latitude θ on the surface of the Earth.. Air resistance, the curvature of the Earth's surface and the decrease in gravitation with altitude are not taken into account. The units used are meters for distance and seconds for time.
Here is the position vector::
The velocity and acceleration vectors are obtained by differentiation:
The angular velocity vector of the Earth. Units are radians per second: note that the Earth turns by π radians in 12 hours, and each hour is 3600 seconds.
The Coriolis acceleration:
The gravitational acceleration: we assume
The differential equations: one for each component, saying that the acceleration is the sum of the Coriolis and gravitational accelerations.
The initial conditions: we will start at height above the origin, with initial velocity components , , .
Now we solve the initial value problem using dsolve, putting the result back into a vector and simplifying.
Section 2: Plotting
Here is a procedure that plots the projectile trajectory.until it hits the ground. We need to know at what value of t that occurs. The equation for when the Coriolis force is included can't be solved in closed form, as it contains trigonometric functions of t as well as t and terms. We therefore use the numerical solver fsolve, starting at which is when the projectile would hit the ground if there were no Coriolis force.
Usage : plotcanon( Initial speed (m/s) , Initial angle above horizon (degrees) , Initial angle clockwise from North (degrees), Initial altitude (m) , North latitude (degrees) )
Here's an example where you can notice the effect of Coriolis force. The projectile is launched East (90 degrees from North) at 55 degrees elevation from ground level at latitude 49 degrees.. Without the Coriolis force the projectile shouldn't deviate from . The deviation is rather small: it's visible only because the scales on the x and y axes differ by a factor of over 100..
Section 3: Aiming
The following procedure takes an initial speed V (in m/sec), altitude Z0 above the target (in m), latitude Theta (in degrees North), horizontal distance dist to target (in m) and heading head to target (in degrees clockwise from North) and returns a heading, elevation angle and time of flight to hit the target. Of course, if the target is too far away it is impossible to hit, and the procedure will return an error "No solution". The calculation uses fsolve, starting with the values that would work if there were no Coriolis force.
For example:
For convenience, you can enter the input parameters in the table below and press the Go button: the elevation angle, heading and time of flight will be placed in the table below the button.
Initial speed (m/sec)
Initial altitude (m)
Latitude (degrees N)
Horizontal distance (m)
Heading (degrees)
Elevation (degrees)
Time of flight (sec)
References
Etchecopar, Philippe. Guide d'initiation à Maple. Rimouski: Presses pédagogiques de l'est, 2004.
Wikipedia. Coriolis Effect. http://en.wikipedia.org/wiki/Coriolis_effect (February 11th 2005).
Conclusions
We have demonstrated that Coriolis effect has an influence on the trajectory of a projectile.
Legal Notice: The copyright for this application is owned by the author(s). Neither Maplesoft nor the author are responsible for any errors contained within and are not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact the author for permission if you wish to use this application in for-profit activities.