Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit a14eb904 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

Physics: Added constants for airdrag height

parent e152beb4
No related branches found
No related tags found
No related merge requests found
......@@ -51,10 +51,22 @@ namespace TUGraz.VectoCore.Utils
/// </summary>
public static KilogramPerCubicMeter FuelDensity = 832.SI<KilogramPerCubicMeter>();
public static readonly double RollResistanceExponent = 0.9;
public const double RollResistanceExponent = 0.9;
/// <summary>
/// Base Wind Speed.
/// </summary>
public static readonly MeterPerSecond BaseWindSpeed = 3.SI<MeterPerSecond>();
/// <summary>
/// Base Height for Wind Speed.
/// </summary>
public static readonly Meter BaseWindHeight = 4.SI<Meter>();
/// <summary>
/// Hellmann Exponent for modelling of wind speed in specific heights.
/// </summary>
public const double HellmannExponent = 0.2;
/// <summary>
/// fuel[kg] => co2[kg]. Factor to convert from fuel weight to co2 weight.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment