2022-04-01 17:55:44 +05:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model.WITS
|
|
|
|
{
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Record name: Drilling - Depth Based
|
|
|
|
/// Description: Drilling data gathered at regular depth intervals
|
|
|
|
/// </summary>
|
|
|
|
[Table("t_telemetry_wits_2")]
|
|
|
|
public class Record2 : RecordBase
|
|
|
|
{
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 8,
|
|
|
|
/// LongMnemonic = "DEPTMEAS",
|
|
|
|
/// ShortMnemonic = "DMEA",
|
|
|
|
/// Description = "Depth Hole (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTMEAS")]
|
|
|
|
public float? Deptmeas { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 9,
|
|
|
|
/// LongMnemonic = "DEPTVERT",
|
|
|
|
/// ShortMnemonic = "DVER",
|
|
|
|
/// Description = "Depth Hole (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTVERT")]
|
|
|
|
public float? Deptvert { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 10,
|
|
|
|
/// LongMnemonic = "ROPA",
|
|
|
|
/// ShortMnemonic = "ROPA",
|
|
|
|
/// Description = "Rate of Penetration (avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F/HR",
|
|
|
|
/// MetricUnits = "M/HR",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("ROPA")]
|
|
|
|
public float? Ropa { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 11,
|
|
|
|
/// LongMnemonic = "WOBA",
|
|
|
|
/// ShortMnemonic = "WOBA",
|
|
|
|
/// Description = "Weight-on-Bit (surf,avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KLB",
|
|
|
|
/// MetricUnits = "KDN",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("WOBA")]
|
|
|
|
public float? Woba { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 12,
|
|
|
|
/// LongMnemonic = "HKLA",
|
|
|
|
/// ShortMnemonic = "HKLA",
|
|
|
|
/// Description = "Hookload (avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KLB",
|
|
|
|
/// MetricUnits = "KDN",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("HKLA")]
|
|
|
|
public float? Hkla { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 13,
|
|
|
|
/// LongMnemonic = "SPPA",
|
|
|
|
/// ShortMnemonic = "SPPA",
|
|
|
|
/// Description = "Standpipe Pressure (avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "PSI",
|
|
|
|
/// MetricUnits = "KPA",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPPA")]
|
|
|
|
public float? Sppa { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 14,
|
|
|
|
/// LongMnemonic = "TORQA",
|
|
|
|
/// ShortMnemonic = "TQA",
|
|
|
|
/// Description = "Rotary Torque (surf,avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "KFLB",
|
|
|
|
/// MetricUnits = "KNM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("TORQA")]
|
|
|
|
public float? Torqa { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 15,
|
|
|
|
/// LongMnemonic = "RPMA",
|
|
|
|
/// ShortMnemonic = "RPMA",
|
|
|
|
/// Description = "Rotary Speed (surf,avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "RPM",
|
|
|
|
/// MetricUnits = "RPM",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("RPMA")]
|
|
|
|
public short? Rpma { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 16,
|
|
|
|
/// LongMnemonic = "BTREVC",
|
|
|
|
/// ShortMnemonic = "BRVC",
|
|
|
|
/// Description = "Bit Revolutions (cum)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "L"
|
|
|
|
/// </summary>
|
|
|
|
[Column("BTREVC")]
|
|
|
|
public int? Btrevc { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 17,
|
|
|
|
/// LongMnemonic = "MDIA",
|
|
|
|
/// ShortMnemonic = "MDIA",
|
|
|
|
/// Description = "Mud Density In (avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "PPG",
|
|
|
|
/// MetricUnits = "KGM3",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MDIA")]
|
|
|
|
public float? Mdia { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 18,
|
|
|
|
/// LongMnemonic = "ECDTD",
|
|
|
|
/// ShortMnemonic = "ECDT",
|
|
|
|
/// Description = "ECD at Total Depth",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "PPG",
|
|
|
|
/// MetricUnits = "KGM3",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("ECDTD")]
|
|
|
|
public float? Ecdtd { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 19,
|
|
|
|
/// LongMnemonic = "MFIA",
|
|
|
|
/// ShortMnemonic = "MFIA",
|
|
|
|
/// Description = "Mud Flow In (avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "GPM",
|
|
|
|
/// MetricUnits = "L/M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFIA")]
|
|
|
|
public float? Mfia { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 20,
|
|
|
|
/// LongMnemonic = "MFOA",
|
|
|
|
/// ShortMnemonic = "MFOA",
|
|
|
|
/// Description = "Mud Flow Out (avg)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "GPM",
|
|
|
|
/// MetricUnits = "L/M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFOA")]
|
|
|
|
public float? Mfoa { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 21,
|
|
|
|
/// LongMnemonic = "MFOP",
|
|
|
|
/// ShortMnemonic = "MFOP",
|
|
|
|
/// Description = "Mud Flow Out %",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "%",
|
|
|
|
/// MetricUnits = "%",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFOP")]
|
|
|
|
public short? Mfop { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 22,
|
|
|
|
/// LongMnemonic = "TVOLACT",
|
|
|
|
/// ShortMnemonic = "TVA",
|
|
|
|
/// Description = "Tank Volume (active)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "BBL",
|
|
|
|
/// MetricUnits = "M3",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("TVOLACT")]
|
|
|
|
public float? Tvolact { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 23,
|
|
|
|
/// LongMnemonic = "CPDI",
|
|
|
|
/// ShortMnemonic = "CPDI",
|
|
|
|
/// Description = "Cost/Distance (inst)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "$/F",
|
|
|
|
/// MetricUnits = "$/M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("CPDI")]
|
|
|
|
public float? Cpdi { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 24,
|
|
|
|
/// LongMnemonic = "CPDC",
|
|
|
|
/// ShortMnemonic = "CPDC",
|
|
|
|
/// Description = "Cost/Distance (cum)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "$/F",
|
|
|
|
/// MetricUnits = "$/M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("CPDC")]
|
|
|
|
public float? Cpdc { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 25,
|
|
|
|
/// LongMnemonic = "BTDTIME",
|
|
|
|
/// ShortMnemonic = "BDTI",
|
|
|
|
/// Description = "Bit Drilled Time",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "HR",
|
|
|
|
/// MetricUnits = "HR",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("BTDTIME")]
|
|
|
|
public float? Btdtime { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 26,
|
|
|
|
/// LongMnemonic = "BTDDIST",
|
|
|
|
/// ShortMnemonic = "BDDI",
|
|
|
|
/// Description = "Bit Drilled Distance",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("BTDDIST")]
|
|
|
|
public float? Btddist { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 27,
|
|
|
|
/// LongMnemonic = "DXC",
|
|
|
|
/// ShortMnemonic = "DXC",
|
|
|
|
/// Description = "Corr. Drilling Exponent",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DXC")]
|
|
|
|
public float? Dxc { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 28,
|
|
|
|
/// LongMnemonic = "SPARE1",
|
|
|
|
/// ShortMnemonic = "SPR1",
|
|
|
|
/// Description = "< SPARE 1>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE1")]
|
|
|
|
public float? Spare1 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 29,
|
|
|
|
/// LongMnemonic = "SPARE2",
|
|
|
|
/// ShortMnemonic = "SPR2",
|
|
|
|
/// Description = "< SPARE 2>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE2")]
|
|
|
|
public float? Spare2 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 30,
|
|
|
|
/// LongMnemonic = "SPARE3",
|
|
|
|
/// ShortMnemonic = "SPR3",
|
|
|
|
/// Description = "< SPARE 3>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE3")]
|
|
|
|
public float? Spare3 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 31,
|
|
|
|
/// LongMnemonic = "SPARE4",
|
|
|
|
/// ShortMnemonic = "SPR4",
|
|
|
|
/// Description = "< SPARE 4>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE4")]
|
|
|
|
public float? Spare4 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 32,
|
|
|
|
/// LongMnemonic = "SPARE5",
|
|
|
|
/// ShortMnemonic = "SPR5",
|
|
|
|
/// Description = "< SPARE 5>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE5")]
|
|
|
|
public float? Spare5 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 33,
|
|
|
|
/// LongMnemonic = "SPARE6",
|
|
|
|
/// ShortMnemonic = "SPR6",
|
|
|
|
/// Description = "< SPARE 6>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE6")]
|
|
|
|
public float? Spare6 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 34,
|
|
|
|
/// LongMnemonic = "SPARE7",
|
|
|
|
/// ShortMnemonic = "SPR7",
|
|
|
|
/// Description = "< SPARE 7>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE7")]
|
|
|
|
public float? Spare7 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 35,
|
|
|
|
/// LongMnemonic = "SPARE8",
|
|
|
|
/// ShortMnemonic = "SPR8",
|
|
|
|
/// Description = "< SPARE 8>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE8")]
|
|
|
|
public float? Spare8 { get; set; }
|
2022-04-01 17:55:44 +05:00
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 2,
|
|
|
|
/// ItemId = 36,
|
|
|
|
/// LongMnemonic = "SPARE9",
|
|
|
|
/// ShortMnemonic = "SPR9",
|
|
|
|
/// Description = "< SPARE 9>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE9")]
|
|
|
|
public float? Spare9 { get; set; }
|
|
|
|
|
|
|
|
}
|
2022-04-01 17:55:44 +05:00
|
|
|
}
|