Difference between revisions of "TrueWind"
(→calculate True Wind from Apparent Wind) |
(→calculate True Wind from Apparent Wind) |
||
Line 8: | Line 8: | ||
* <b>COG</b> Course Over Ground <b>navigation.courseOverGroundTrue</b> | * <b>COG</b> Course Over Ground <b>navigation.courseOverGroundTrue</b> | ||
* <b>SOG</b> Speed Over Ground <b>navigation.speedOverGround</b> | * <b>SOG</b> Speed Over Ground <b>navigation.speedOverGround</b> | ||
− | ** <b>TWS</b> True Wind Speed (relative to ground) <b></b> | + | ** <b>TWS</b> True Wind Speed (relative to ground) <b>environment.wind.speedOverGround</b> |
** <code>TWSx = SOG * Sin (COG) - AWS * Sin (AWD)</code> | ** <code>TWSx = SOG * Sin (COG) - AWS * Sin (AWD)</code> | ||
** <code>TWSy = SOG * Cos (COG) - AWS * Cos (AWD)</code> | ** <code>TWSy = SOG * Cos (COG) - AWS * Cos (AWD)</code> | ||
Line 18: | Line 18: | ||
** <code>DFTx = SOG * Sin (COG) - STW * Sin (H)</code> | ** <code>DFTx = SOG * Sin (COG) - STW * Sin (H)</code> | ||
** <code>DFTy = SOG * Cos (COG) - STW * Cos (H)</code> | ** <code>DFTy = SOG * Cos (COG) - STW * Cos (H)</code> | ||
− | ** <code> | + | ** <code>DFT= SQRT (DFTx*DFTx + DFTy*DFTy)</code> |
** <b>SET</b> Current Set (relative to true north) <b>environment.current.setTrue</b> | ** <b>SET</b> Current Set (relative to true north) <b>environment.current.setTrue</b> | ||
** <code>SET = ATAN ( DFTx / DFTy )</code> | ** <code>SET = ATAN ( DFTx / DFTy )</code> |
Revision as of 16:48, 29 October 2018
calculate True Wind from Apparent Wind
- AWA Apparent Wind Angle (relative to H) environment.wind.angleApparent
- H Heading (relative to true north) headingTrue
- AWD Apparent Wind Direction (relative to true north) environment.wind.directionTrue
AWD = MOD(H+AWA;360)
- AWS Apparent Wind Speed environment.wind.speedApparent
- COG Course Over Ground navigation.courseOverGroundTrue
- SOG Speed Over Ground navigation.speedOverGround
- TWS True Wind Speed (relative to ground) environment.wind.speedOverGround
TWSx = SOG * Sin (COG) - AWS * Sin (AWD)
TWSy = SOG * Cos (COG) - AWS * Cos (AWD)
TWS= SQRT (TWSx*TWSx + TWSy*TWSy)
- TWD True Wind Direction (relative to true north) ???
TWD = ATAN ( TWSx / TWSy )
- STW Speed Trough Water navigation.speedThroughWater
- DFT Current Drift (relative to ground) environment.current.drift
DFTx = SOG * Sin (COG) - STW * Sin (H)
DFTy = SOG * Cos (COG) - STW * Cos (H)
DFT= SQRT (DFTx*DFTx + DFTy*DFTy)
- SET Current Set (relative to true north) environment.current.setTrue
SET = ATAN ( DFTx / DFTy )