Difference between revisions of "TrueWind"
(→Wind) |
(→Wind) |
||
Line 39: | Line 39: | ||
** <b>TWA</b> True Wind Angle (relative to HDG) <b>environment.wind.<strike>angleTrueWater</strike></b> <b>angleWater</b> | ** <b>TWA</b> True Wind Angle (relative to HDG) <b>environment.wind.<strike>angleTrueWater</strike></b> <b>angleWater</b> | ||
− | * <b>GW</b> Ground Wind (relative to ground) | + | * <b>GW</b> Ground Wind (relative to ground) |
** <b>GWS</b> Ground Wind Speed (magnitude) <b>environment.wind.speedOverGround</b> | ** <b>GWS</b> Ground Wind Speed (magnitude) <b>environment.wind.speedOverGround</b> | ||
** <b>GWD</b> Ground Wind Direction (direction) | ** <b>GWD</b> Ground Wind Direction (direction) | ||
Line 45: | Line 45: | ||
*** <b>GWDm</b> Ground Wind Direction (relative to magnetic north) add: <b>environment.wind.directionOverGroundMagnetic</b> | *** <b>GWDm</b> Ground Wind Direction (relative to magnetic north) add: <b>environment.wind.directionOverGroundMagnetic</b> | ||
** <b>GWA</b> Ground Wind Angle (relative to HDG) <b>environment.wind.<strike>angleTrueGround</strike></b> <b>angleOverGround</b> | ** <b>GWA</b> Ground Wind Angle (relative to HDG) <b>environment.wind.<strike>angleTrueGround</strike></b> <b>angleOverGround</b> | ||
+ | |||
+ | === use === | ||
+ | * <b>AW</b> one can measure onboard a vessel | ||
+ | * <b>TW</b> derived from <b>AW</b> + <b>SH</b> | ||
+ | ** historic as OG only became available by GPS | ||
+ | ** of interest at performance sailing | ||
+ | * <b>GW</b> derived from <b>AW</b> + <b>OG</b> | ||
+ | ** used in weather forecasts and reports | ||
+ | ** usefull to plan a route | ||
+ | ** denote weather changes | ||
=== other === | === other === |
Revision as of 13:04, 1 November 2018
Contents
see also
- https://coaps.fsu.edu/woce/truewind/paper/index.html
- http://www.catb.org/gpsd/NMEA.html
- http://www.ybw.com/forums/showthread.php?474209-Raymarine-True-amp-Apparent-Wind-calculation
- https://www.sailingworld.com/what-are-my-electronics-telling-me-about-boatspeed-and-heading
- https://en.wikipedia.org/wiki/Apparent_wind
- https://github.com/cape-io/true-wind/blob/master/true-wind.coffee
Terms
- https://opencpn.org/wiki/dokuwiki/doku.php?id=opencpn:opencpn_user_manual:terminology
- http://signalk.org/specification/1.0.0/doc/otherBranches.html
- https://en.wikipedia.org/wiki/Euclidean_vector
vessel's Movement and Orientation
- 'OG' movement over ground
- SOG Speed Over Ground (magnitude) navigation.speedOverGround
- COG Course Over Ground (direction)
- COGt Course Over Ground (relative to true north) navigation.courseOverGroundTrue
- COGm Course Over Ground (relative to magnetic north) navigation.courseOverGroundMagnetic
- 'SH'
- STW Speed Trough Water (magnitude) navigation.speedThroughWater
- HDG Heading (direction)
- HDT Heading (relative to true north) navigation.headingTrue
- HDM Heading (relative to magnetic north) navigation.headingMagnetic
Wind
- AW Apparent Wind (relative to vessel)
- AWS Apparent Wind Speed (magnitude) environment.wind.speedApparent
- AWD Apparent Wind Direction (direction)
- AWDt Apparent Wind Direction (relative to true north) environment.wind.
directionTruedirectionApparantTrue - AWDm Apparent Wind Direction (relative to magnetic north) environment.wind.
directionMagneticdirectionApparantMagnetic
- AWDt Apparent Wind Direction (relative to true north) environment.wind.
- AWA Apparent Wind Angle (relative to HDG) environment.wind.angleApparent
- TW True Wind (relative to surface of the water)
- TWS True Wind Speed (magnitude) environment.wind.
speedTruespeedWater - TWD True Wind Direction (direction)
- TWDt True Wind Direction (relative to true north) add: environment.wind.directionWaterTrue
- TWDm True Wind Direction (relative to magnetic north) add: environment.wind.directionWaterMagnetic
- TWA True Wind Angle (relative to HDG) environment.wind.
angleTrueWaterangleWater
- TWS True Wind Speed (magnitude) environment.wind.
- GW Ground Wind (relative to ground)
- GWS Ground Wind Speed (magnitude) environment.wind.speedOverGround
- GWD Ground Wind Direction (direction)
- GWDt Ground Wind Direction (relative to true north) add: environment.wind.directionOverGroundTrue
- GWDm Ground Wind Direction (relative to magnetic north) add: environment.wind.directionOverGroundMagnetic
- GWA Ground Wind Angle (relative to HDG) environment.wind.
angleTrueGroundangleOverGround
use
- AW one can measure onboard a vessel
- TW derived from AW + SH
- historic as OG only became available by GPS
- of interest at performance sailing
- GW derived from AW + OG
- used in weather forecasts and reports
- usefull to plan a route
- denote weather changes
other
- 'CU' (relative to ground)
- DFT Current Drift (speed, magnitude) environment.current.drift
- SETt Current Set (direction)
- SETt Current Set (direction relative to true north) environment.current.setTrue
- SETm Current Set (direction relative to magnetic north) environment.current.setMagnetic
calculate Ground Wind from Apparent Wind
- http://davidburchnavigation.blogspot.com/2013/04/true-true-wind-from-apparent-wind.html
- AWA Apparent Wind Angle (relative to HDG)
- HDT Heading (relative to true north)
- AWD Apparent Wind Direction (relative to true north)
AWD = MOD(H+AWA;360)
- AWS Apparent Wind Speed
- COG Course Over Ground
- SOG Speed Over Ground
- GWS Ground Wind Speed
GWx = OGx - AWx = SOG * Sin (COG) - AWS * Sin (AWD)
GWy = OGy - AWy = SOG * Cos (COG) - AWS * Cos (AWD)
GWS= SQRT (GWx*GWx + GWy*GWy)
- GWD Ground Wind Direction (relative to true north)
GWD = ATAN ( GWx / GWy )
(calculate current)
- COG Course Over Ground
- SOG Speed Over Ground
- HDT Heading (relative to true north)
- STW Speed Trough Water in direction of HDG
- DFT Drift (current speed relative to ground)
DFTx = OGx - SHx = SOG * Sin (COG) - STW * Sin (HDT)
DFTy = OGy - SHy = SOG * Cos (COG) - STW * Cos (HDT)
DFT= SQRT (DFTx*DFTx + DFTy*DFTy)
- SET Set (current direction relative to true north)
SET = ATAN ( DFTx / DFTy )
signalk-derived-data groundWind.js
- https://github.com/SignalK/signalk-derived-data/blob/master/calcs/groundWind.js
- SOG Speed Over Ground navigation.speedOverGround
- AWA Apparent Wind Angle (relative to HDG) environment.wind.angleApparent
- AWS Apparent Wind Speed environment.wind.speedApparent
AWx = AWS * Cos (AWA)
AWy = AWS * Sin (AWA)
- GWA Ground Wind Angle (relative to HDG) environment.wind.angleTrueGround
GWA = ATAN2(AWy, -SOG + AWx)
- GWS Ground Wind Speed (relative to ground) environment.wind.speedOverGround
GWS = SQRT (POWER(AWy,2) POWER(-SOG + AWx,2))
signalk-derived-data windDirection.js
- https://github.com/SignalK/signalk-derived-data/blob/master/calcs/windDirection.js
- HDG Heading
- HDT Heading (relative to true north) navigation.headingTrue
- HDM Heading (relative to magnetic north) navigation.headingMagnetic
- AWA Apparent Wind Angle (relative to HDG) environment.wind.angleApparent
- AWD Apparent Wind Direction
- environment.wind.directionTrue
- environment.wind.directionMagnetic
AWD = HDG + AWA
if (AWD > Math.PI * 2) AWD -= Math.PI * 2
else if (AWD < 0) AWD += Math.PI * 2
- AWD Apparent Wind Direction
Sensors
Heading
- see also http://www.navlab.net/Publications/The_Seven_Ways_to_Find_Heading.pdf
- magnetic compass
- H true = H magnetic + Magnetic declination
- Fluxgate compass
- H true = H magnetic + Magnetic declination
- Gyrocompass
- H true
- moving baseline Real-time kinematic (GPS)
- H true
SOG and COG
- GPS receiver
STW
AWS and AWA
- wind-vane (AWA)
- anemometer
- cup (AWS)
- hand held propeller (AWS)
- ultrasonic (AWS and AWA)