Class VehicleDynamicsProperties
Inheritance
Implements
Inherited Members
Namespace: SMT.MastaAPI.Materials
Assembly: SMT.MastaAPI.13.0.dll
Syntax
public class VehicleDynamicsProperties : APIBase, IEquatable<APIBase>
Fields
_parent
Declaration
protected readonly APIBase _parent
Field Value
Type | Description |
---|---|
APIBase |
Properties
AerodynamicDragCoefficient
This is multiplied by the square of the vehicle speed in order to calculate air resistance.
Measurement: QuadraticDrag
Declaration
public double AerodynamicDragCoefficient { get; }
Property Value
Type | Description |
---|---|
System.Double |
AirDensity
Air density used to calculate aerodynamic drag.
Measurement: Density
Declaration
public double AirDensity { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
DragCoefficient
Aerodynamic drag coefficient.
Declaration
public double DragCoefficient { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
NumberOfWheels
Total number of wheels on vehicle - should be at least the sum of the number of wheels on each wheel power load.
Declaration
public int NumberOfWheels { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RollingRadius
Rolling radius of each vehicle tyre.
Measurement: ShortLength
Declaration
public double RollingRadius { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
RollingResistance
Rolling resistance force calculated from vehicle mass and rolling resistance coefficient.
Measurement: Force
Declaration
public double RollingResistance { get; }
Property Value
Type | Description |
---|---|
System.Double |
RollingResistanceCoefficient
Coefficient used in rolling resistance calculations.
Declaration
public double RollingResistanceCoefficient { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
VehicleEffectiveInertia
Inertia calculated from vehicle mass, rolling radius, and total number of wheels.
Measurement: Inertia
Declaration
public double VehicleEffectiveInertia { get; }
Property Value
Type | Description |
---|---|
System.Double |
VehicleEffectiveMass
Effective mass calculated from vehicle and wheel inertias. This should be the mass of a vehicle as seen on a weighbridge.
Measurement: Mass
Declaration
public double VehicleEffectiveMass { get; }
Property Value
Type | Description |
---|---|
System.Double |
VehicleFrontalArea
Vehicle frontal area used to calculate aerodynamic drag.
Measurement: Area
Declaration
public double VehicleFrontalArea { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
VehicleMass
Total mass of the vehicle, not including any wheels.
Measurement: Mass
Declaration
public double VehicleMass { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
WheelInertia
Polar inertia of a single wheel on the vehicle.
Measurement: Inertia
Declaration
public double WheelInertia { get; set; }
Property Value
Type | Description |
---|---|
System.Double |