To tack, or not to tack, that is the question...

By Dermot Tynan, about 11 years ago.

Looking at the upper-level navigation software introduces some particularly interesting questions. The low-level software will keep the boat on a TWA, or true wind angle. Technically, it's an apparent wind angle, but that's ok.

The upper level has to decide what is the best TWA. To do this, it has the current position of the boat and the position of the next waypoint. It also knows the current TWA and the compass heading. Without bogging down in the maths, it can compute the distance and bearing to the next waypoint using something called a Haversin algorithm. Given the current TWA and the heading, it can determine the wind direction. We can compute the VMG or "velocity made good" for each new heading possibility, based on the predicted Polar (more on that anon). So, we can see that a particular heading is the best course to get us as fast as possible to the next mark. All of this is standard stuff, and is used on sailboat race courses every day.

  • March 1, 2013
  • |
  • |

Five Degrees of Wrong.

By Dermot Tynan, about 11 years ago.

So, as I mentioned, the virtual boat was too eager to tack. If you're dead downwind of the mark, and you set off on a starboard tack, within a metre of being on the left-hand side of the course, the other tack is favoured.

I added code that essentially stated "unless the other tack is at least five degrees better than the existing one, ignore it." So, if I'm at 44 degrees TWA and the other tack is better by a degree (-43 say), stay where you are. This works quite nicely. If you look at the plotted course, it shows the boat sailing nice upwind legs, to the waypoint. As Henry would say, "it's sailing up the ladder."

  • March 16, 2013
  • |
  • |

Of Laylines and Beats

By Dermot Tynan, about 11 years ago.

This time, I set the simulation granularity a bit smaller, so the updates are more regular and there are more data points, which explains the curved route in some cases. You can click on the image for a slightly larger version. An Olympic course is known to sailors as a "triangle and sausage", because you sail upwind to the top mark, turn onto a broad reach to the gybe mark, gybe around, and broad reach down to the leeward mark. From there you beat back up to the windward mark, and then turn dead downwind to the finish line at the leeward mark. A true Olympic course would put the start and finish line about a third of the way up the beat, shortening the first leg somewhat, but also making for an upwind finish as you would have to sail around the leeward mark and beat to the finish. I skipped all that!

  • March 21, 2013
  • |
  • |