forked from ddrilling/AsbCloudServer
871 lines
25 KiB
C#
871 lines
25 KiB
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model.WITS
|
|
{
|
|
/// <summary>
|
|
/// Record name: Vessel Motion / Mooring Status
|
|
/// Description: Vessel Motion and Mooring Status data
|
|
/// Description2:
|
|
/// </summary>
|
|
[Table("t_telemetry_wits_24")]
|
|
public class Record24 : RecordBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 8,
|
|
/// LongMnemonic = "WATDEPT",
|
|
/// ShortMnemonic = "WDPM",
|
|
/// Description = "Water Depth (mean)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("WATDEPT")]
|
|
public float? Watdept { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 9,
|
|
/// LongMnemonic = "TIDE",
|
|
/// ShortMnemonic = "TIDE",
|
|
/// Description = "Tide",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("TIDE")]
|
|
public float? Tide { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 10,
|
|
/// LongMnemonic = "VESSHEAD",
|
|
/// ShortMnemonic = "VHED",
|
|
/// Description = "Vessel Heading",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("VESSHEAD")]
|
|
public float? Vesshead { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 11,
|
|
/// LongMnemonic = "RIGVCG",
|
|
/// ShortMnemonic = "RVCG",
|
|
/// Description = "Rig VCG",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("RIGVCG")]
|
|
public float? Rigvcg { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 12,
|
|
/// LongMnemonic = "RISTENS",
|
|
/// ShortMnemonic = "RTEN",
|
|
/// Description = "Riser Tension",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("RISTENS")]
|
|
public float? Ristens { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 13,
|
|
/// LongMnemonic = "OFFSETA",
|
|
/// ShortMnemonic = "OFSA",
|
|
/// Description = "Rig Offset (avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("OFFSETA")]
|
|
public float? Offseta { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 14,
|
|
/// LongMnemonic = "OFFSETX",
|
|
/// ShortMnemonic = "OFSX",
|
|
/// Description = "Rig Offset (max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "F",
|
|
/// MetricUnits = "M",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("OFFSETX")]
|
|
public float? Offsetx { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 15,
|
|
/// LongMnemonic = "OFFSETD",
|
|
/// ShortMnemonic = "OFSD",
|
|
/// Description = "Rig Offset Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("OFFSETD")]
|
|
public float? Offsetd { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 16,
|
|
/// LongMnemonic = "LMRPANA",
|
|
/// ShortMnemonic = "LANA",
|
|
/// Description = "LMRP Angle (avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("LMRPANA")]
|
|
public float? Lmrpana { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 17,
|
|
/// LongMnemonic = "LMRPANX",
|
|
/// ShortMnemonic = "LANX",
|
|
/// Description = "LMRP Angle (max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("LMRPANX")]
|
|
public float? Lmrpanx { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 18,
|
|
/// LongMnemonic = "LMRPAND",
|
|
/// ShortMnemonic = "LAND",
|
|
/// Description = "LMRP Angle, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("LMRPAND")]
|
|
public float? Lmrpand { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 19,
|
|
/// LongMnemonic = "MDRISER",
|
|
/// ShortMnemonic = "MDRI",
|
|
/// Description = "Fluid Density in Riser",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "PPG",
|
|
/// MetricUnits = "KGM3",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MDRISER")]
|
|
public float? Mdriser { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 20,
|
|
/// LongMnemonic = "MLTA01",
|
|
/// ShortMnemonic = "TA01",
|
|
/// Description = "Mooring Line #01 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA01")]
|
|
public float? Mlta01 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 21,
|
|
/// LongMnemonic = "MLTX01",
|
|
/// ShortMnemonic = "TX01",
|
|
/// Description = "Mooring Line #01 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX01")]
|
|
public float? Mltx01 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 22,
|
|
/// LongMnemonic = "MLTA02",
|
|
/// ShortMnemonic = "TA02",
|
|
/// Description = "Mooring Line #02 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA02")]
|
|
public float? Mlta02 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 23,
|
|
/// LongMnemonic = "MLTX02",
|
|
/// ShortMnemonic = "TX02",
|
|
/// Description = "Mooring Line #02 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX02")]
|
|
public float? Mltx02 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 24,
|
|
/// LongMnemonic = "MLTA03",
|
|
/// ShortMnemonic = "TA03",
|
|
/// Description = "Mooring Line #03 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA03")]
|
|
public float? Mlta03 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 25,
|
|
/// LongMnemonic = "MLTX03",
|
|
/// ShortMnemonic = "TX03",
|
|
/// Description = "Mooring Line #03 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX03")]
|
|
public float? Mltx03 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 26,
|
|
/// LongMnemonic = "MLTA04",
|
|
/// ShortMnemonic = "TA04",
|
|
/// Description = "Mooring Line #04 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA04")]
|
|
public float? Mlta04 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 27,
|
|
/// LongMnemonic = "MLTX04",
|
|
/// ShortMnemonic = "TX04",
|
|
/// Description = "Mooring Line #04 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX04")]
|
|
public float? Mltx04 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 28,
|
|
/// LongMnemonic = "MLTA05",
|
|
/// ShortMnemonic = "TA05",
|
|
/// Description = "Mooring Line #05 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA05")]
|
|
public float? Mlta05 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 29,
|
|
/// LongMnemonic = "MLTX05",
|
|
/// ShortMnemonic = "TX05",
|
|
/// Description = "Mooring Line #05 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX05")]
|
|
public float? Mltx05 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 30,
|
|
/// LongMnemonic = "MLTA06",
|
|
/// ShortMnemonic = "TA06",
|
|
/// Description = "Mooring Line #06 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA06")]
|
|
public float? Mlta06 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 31,
|
|
/// LongMnemonic = "MLTX06",
|
|
/// ShortMnemonic = "TX06",
|
|
/// Description = "Mooring Line #06 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX06")]
|
|
public float? Mltx06 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 32,
|
|
/// LongMnemonic = "MLTA07",
|
|
/// ShortMnemonic = "TA07",
|
|
/// Description = "Mooring Line #07 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA07")]
|
|
public float? Mlta07 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 33,
|
|
/// LongMnemonic = "MLTX07",
|
|
/// ShortMnemonic = "TX07",
|
|
/// Description = "Mooring Line #07 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX07")]
|
|
public float? Mltx07 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 34,
|
|
/// LongMnemonic = "MLTA08",
|
|
/// ShortMnemonic = "TA08",
|
|
/// Description = "Mooring Line #08 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA08")]
|
|
public float? Mlta08 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 35,
|
|
/// LongMnemonic = "MLTX08",
|
|
/// ShortMnemonic = "TX08",
|
|
/// Description = "Mooring Line #08 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX08")]
|
|
public float? Mltx08 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 36,
|
|
/// LongMnemonic = "MLTA09",
|
|
/// ShortMnemonic = "TA09",
|
|
/// Description = "Mooring Line #09 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA09")]
|
|
public float? Mlta09 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 37,
|
|
/// LongMnemonic = "MLTX09",
|
|
/// ShortMnemonic = "TX09",
|
|
/// Description = "Mooring Line #09 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX09")]
|
|
public float? Mltx09 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 38,
|
|
/// LongMnemonic = "MLTA10",
|
|
/// ShortMnemonic = "TA10",
|
|
/// Description = "Mooring Line #10 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA10")]
|
|
public float? Mlta10 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 39,
|
|
/// LongMnemonic = "MLTX10",
|
|
/// ShortMnemonic = "TX10",
|
|
/// Description = "Mooring Line #10 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX10")]
|
|
public float? Mltx10 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 40,
|
|
/// LongMnemonic = "MLTA11",
|
|
/// ShortMnemonic = "TA11",
|
|
/// Description = "Mooring Line #11 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA11")]
|
|
public float? Mlta11 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 41,
|
|
/// LongMnemonic = "MLTX11",
|
|
/// ShortMnemonic = "TX11",
|
|
/// Description = "Mooring Line #11 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX11")]
|
|
public float? Mltx11 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 42,
|
|
/// LongMnemonic = "MLTA12",
|
|
/// ShortMnemonic = "TA12",
|
|
/// Description = "Mooring Line #12 Tens(avg)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTA12")]
|
|
public float? Mlta12 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 43,
|
|
/// LongMnemonic = "MLTX12",
|
|
/// ShortMnemonic = "TX12",
|
|
/// Description = "Mooring Line #12 Tens(max)",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("MLTX12")]
|
|
public float? Mltx12 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 44,
|
|
/// LongMnemonic = "THRF01",
|
|
/// ShortMnemonic = "TF01",
|
|
/// Description = "Thruster #01, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF01")]
|
|
public float? Thrf01 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 45,
|
|
/// LongMnemonic = "THRD01",
|
|
/// ShortMnemonic = "TD01",
|
|
/// Description = "Thruster #01, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD01")]
|
|
public float? Thrd01 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 46,
|
|
/// LongMnemonic = "THRF02",
|
|
/// ShortMnemonic = "TF02",
|
|
/// Description = "Thruster #02, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF02")]
|
|
public float? Thrf02 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 47,
|
|
/// LongMnemonic = "THRD02",
|
|
/// ShortMnemonic = "TD02",
|
|
/// Description = "Thruster #02, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD02")]
|
|
public float? Thrd02 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 48,
|
|
/// LongMnemonic = "THRF03",
|
|
/// ShortMnemonic = "TF03",
|
|
/// Description = "Thruster #03, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF03")]
|
|
public float? Thrf03 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 49,
|
|
/// LongMnemonic = "THRD03",
|
|
/// ShortMnemonic = "TD03",
|
|
/// Description = "Thruster #03, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD03")]
|
|
public float? Thrd03 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 50,
|
|
/// LongMnemonic = "THRF04",
|
|
/// ShortMnemonic = "TF04",
|
|
/// Description = "Thruster #04, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF04")]
|
|
public float? Thrf04 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 51,
|
|
/// LongMnemonic = "THRD04",
|
|
/// ShortMnemonic = "TD04",
|
|
/// Description = "Thruster #04, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD04")]
|
|
public float? Thrd04 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 52,
|
|
/// LongMnemonic = "THRF05",
|
|
/// ShortMnemonic = "TF05",
|
|
/// Description = "Thruster #05, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF05")]
|
|
public float? Thrf05 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 53,
|
|
/// LongMnemonic = "THRD05",
|
|
/// ShortMnemonic = "TD05",
|
|
/// Description = "Thruster #05, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD05")]
|
|
public float? Thrd05 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 54,
|
|
/// LongMnemonic = "THRF06",
|
|
/// ShortMnemonic = "TF06",
|
|
/// Description = "Thruster #06, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF06")]
|
|
public float? Thrf06 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 55,
|
|
/// LongMnemonic = "THRD06",
|
|
/// ShortMnemonic = "TD06",
|
|
/// Description = "Thruster #06, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD06")]
|
|
public float? Thrd06 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 56,
|
|
/// LongMnemonic = "THRF07",
|
|
/// ShortMnemonic = "TF07",
|
|
/// Description = "Thruster #07, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF07")]
|
|
public float? Thrf07 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 57,
|
|
/// LongMnemonic = "THRD07",
|
|
/// ShortMnemonic = "TD07",
|
|
/// Description = "Thruster #07, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD07")]
|
|
public float? Thrd07 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 58,
|
|
/// LongMnemonic = "THRF08",
|
|
/// ShortMnemonic = "TF08",
|
|
/// Description = "Thruster #08, Force",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "KLB",
|
|
/// MetricUnits = "KDN",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRF08")]
|
|
public float? Thrf08 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 59,
|
|
/// LongMnemonic = "THRD08",
|
|
/// ShortMnemonic = "TD08",
|
|
/// Description = "Thruster #08, Direction",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "DEG",
|
|
/// MetricUnits = "DEG",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("THRD08")]
|
|
public float? Thrd08 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 60,
|
|
/// LongMnemonic = "SPARE1",
|
|
/// ShortMnemonic = "SPR1",
|
|
/// Description = "< SPARE 1>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE1")]
|
|
public float? Spare1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 61,
|
|
/// LongMnemonic = "SPARE2",
|
|
/// ShortMnemonic = "SPR2",
|
|
/// Description = "< SPARE 2>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE2")]
|
|
public float? Spare2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 62,
|
|
/// LongMnemonic = "SPARE3",
|
|
/// ShortMnemonic = "SPR3",
|
|
/// Description = "< SPARE 3>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE3")]
|
|
public float? Spare3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 63,
|
|
/// LongMnemonic = "SPARE4",
|
|
/// ShortMnemonic = "SPR4",
|
|
/// Description = "< SPARE 4>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "----",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE4")]
|
|
public float? Spare4 { get; set; }
|
|
|
|
/// <summary>
|
|
/// RecordId = 24,
|
|
/// ItemId = 64,
|
|
/// LongMnemonic = "SPARE5",
|
|
/// ShortMnemonic = "SPR5",
|
|
/// Description = "< SPARE 5>",
|
|
/// Description2 = "",
|
|
/// FPSUnits = "----",
|
|
/// MetricUnits = "---",
|
|
/// Length = 4,
|
|
/// ValueType = "F"
|
|
/// </summary>
|
|
[Column("SPARE5")]
|
|
public float? Spare5 { get; set; }
|
|
|
|
}
|
|
}
|