Skip to content

Theory of the Harmonic Model of Tides

Sam Cox edited this page Nov 14, 2013 · 4 revisions

####Disclaimer

I am not an expert! This is the understanding I have acquired throughout the process of developing Pytides.

The Harmonic Model of Tides

This page is intended to serve as a short guide to the method of Tidal Harmonics. It presents most aspects of the theory which are still pertinent in the modern era (wherein computers have replaced tide-prediction machines). The aim is to be a concise but reasonably comprehensive reference. We will certainly fall short of deriving anything.

##Fundamental assumption of the Harmonic Method

Tides anywhere on Earth are caused solely by the gravitational forces of the moon and the sun.

We neglect the gravitational forces of other planetary bodies as their effect on the tide is several orders of magnitude weaker than those of the moon and sun. The tide producing force is actually the difference between the gravitational forces on the surface and the centre of earth - thus it is proportional to ![equation](http://latex.codecogs.com/png.latex?\\inline r^{-3}). We can compare the gravitational and tide producing forces (relative to those of the sun):

Celestial Body Gravity on Earth Tide Producing force on Earth
Sun 1 1
Moon 0.0054 2.08
Jupiter 0.000045 0.00001

So despite the sun's gravitational effect on Earth being ~200 times that of the moon, its effect on the tides is about 48% that of the moon.

The greater omission in this assumption is the metereological effects such as pressure, which actually have quite a pronounced effect on the tides. However, there isn't anything we (as keen amateurs!) can do about this. ##The Equilibrium Tide The equilibrium tide is a theoretical concept - it is the tidal pattern that would result if the Earth was an entirely uniform ocean. We choose the Greenwich Meridian as our frame of reference, with the sun and the moon orbiting us. Although the problem doesn't admit a closed form solution, it is possible to obtain a series expansion approximating a solution. A careful analysis (see Doodson) of the gravitational forces yields the displacement of the tide to be of the form:

equation

where equation and equation. The distinction between Vi and ui is made such that ui contains the variation due to moon's 18.6-year nodes cycle. The amplitudes aibi similarly vary with this cycle - we can extract this temporal dependence by writing map where now ai is constant and equation. Noting also that eq and eq, we can write

eq

Now the various parameters of the orbit eq are functions of time (i.e. eq) and indeed there exist good polynomial approximations in time for these values, valid for several centuries about the present day. Thus eq and we can calculate the theoretical equilibrium tide at any relevant time.

##Constituents Together eq describe a constituent for any given i. Expanding the tidal force to higher degree will yield more constituents, but their amplitudes eq (and therefore their effect on the tides) become increasingly small. Doodson found over 300 constituents, but most of the tide is attributable to only a few of these constituents. In practice, NOAA use fewer than 40 constituents. Once a set of constituents has been established, the theoretical amplitudes of the equilibrium tide eq can be forgotten (unless you wish to use inferred constituents for short series data, which Pytides doesn't).

For any constituent, the argument eq is actually an integral linear-combination of eq. For example, the constituent called M2 has eq. Thus the argument eq can be represented by the integers eq, components of a vector such that eq, where eq is a vector of astronomical arguments eq. Note that we have used a different basis, with eq replacing eq. In this fashion, eq. ###XDO The above is a convenient format for representing constituents. When Doodson derived his constituents, he added 5 to each of these components to form its Doodson number. Then, for example, M2 can conveniently be written in this notation as 7555555. The reason for adding 5 is to avoid the need for a minus sign, e.g: (1,-1,0,0,0,0,0) -> 6455555. The Extended Doodson number (XDO) permits us to write a greater range of constituents, with 'Z' now representing zero. In XDO, (1,-1,0,0,0,0,0) -> A YZZ ZZZ where spaces are included for readability.

###Nodal Corrections The functions eq together define a constituents nodal corrections (or node factors), so called because they account for the variation due to the moon's 18.6-year nodes cycle. The constituent S2 arises solely from the gravity of the Sun, and is thus unaffected by the moon's variation (i.e. eq). In general, u and f are more complicated functions of eq than the simple linear combinations that V are.

###Speed The astronomical parameters eq vary with time, but their rates of variation are very close to constant. Thus we can accurately approximate eq over a long period of time with a Taylor Series to first order:

eq

So if we now let eq represent hours after eq:

eq

Where eq is called the speed of the constituent.

The distinction between the speeds and values of the astronomical parameters eq is not often made explicit in texts about tides, so understanding this aspect is important.

This is quite convenient for computational purposes, and said representation of V is ubiquitous. In general, the rates of change are such that

eq

Thus we might use a constant value (taken at the mid-point) for u and f over the period of a year, whilst the approximation eq may be suitable for several decades.

###Compound constituents Two or more tidal components can interact to form harmonics or overtides, in a similar fashion to harmonics in sound. A constituent which represents such a harmonic is called a compound constituent. V, u and f for the compound constituent can be readily calculated from the eq of its components. The precise details are out of the scope of this document, see the pytides source for more information.

##Predicting the tide Since the Earth isn't only an ocean, the equilibrium tide doesn't describe the actual tides observed on Earth. The tides on Earth are dependent on the sun, moon and the topography of the earth. This will of course be a very complex relationship, which we cannot hope to decipher analytically. However, given what we know about about the equilibrium tide, we can model the actual tide (with mean height eq) as:

eq

where we use the same constituents as in the equilibrium tide, but with each part scaled by eq and translated by eq. eq and eq are called the amplitude and phase (or phase lag) of the constituent.

By including a constituent called Z0, with eq, we can simply write:

eq

or, in the more common form:

eq

where now t represents hours after t0. Remember that eq are the only "unknowns" in this expression, everything else can be derived - ultimately from the time t.

Now the key point of the model is:

For any given location on Earth, there exist constant values eq such that the tide there obeys this relation.

So if we have many past measurements of the tide at a given location, we can attempt to choose values eq which best fit our previous readings. We constrain eq to be positive (by adjusting the eq by 180 degrees if necessary), so that eq is uniquely defined and eq is uniquely defined modulo 360. Pytides uses scipy's least squares function to minimise the sum of the squares of the residual (error) to fit eq and eq to the data.

Then, by assumption, we can predict the future tide by allowing t to increase into the future. Note that if the topography of the area changes significantly (e.g. if a port is built nearby), then the amplitudes and phases for that location will change.

Highs and Lows

High tides and low tides are the points at which the tide is stationary. Thus they occur at the solutions of eq, i.e.

eq

Note that the derivative above doesn't take into account the variation of eq with time, but these vary slowly (see above) so this expression is good enough. We can't find analytic solutions to this equation, but numerical methods allow us to solve it with ease.