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: MWD Formation Evaluation
|
|
|
|
/// Description: MWD Formation Evaluation data
|
|
|
|
/// Description2:
|
|
|
|
/// </summary>
|
|
|
|
[Table("t_telemetry_wits_8")]
|
|
|
|
public class Record8 : RecordBase
|
|
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// 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; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// 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; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 10,
|
|
|
|
/// LongMnemonic = "DEPTBITM",
|
|
|
|
/// ShortMnemonic = "DBTM",
|
|
|
|
/// Description = "Depth Bit (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTBITM")]
|
|
|
|
public float? Deptbitm { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 11,
|
|
|
|
/// LongMnemonic = "DEPTBITV",
|
|
|
|
/// ShortMnemonic = "DBTV",
|
|
|
|
/// Description = "Depth Bit (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTBITV")]
|
|
|
|
public float? Deptbitv { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 12,
|
|
|
|
/// LongMnemonic = "PASSNUM",
|
|
|
|
/// ShortMnemonic = "PASS",
|
|
|
|
/// Description = "Pass Number",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 2,
|
|
|
|
/// ValueType = "S"
|
|
|
|
/// </summary>
|
|
|
|
[Column("PASSNUM")]
|
|
|
|
public short? Passnum { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 13,
|
|
|
|
/// LongMnemonic = "DEPTRS1M",
|
|
|
|
/// ShortMnemonic = "DR1M",
|
|
|
|
/// Description = "Depth Resis 1 sensor (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTRS1M")]
|
|
|
|
public float? Deptrs1m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 14,
|
|
|
|
/// LongMnemonic = "DEPTRS1V",
|
|
|
|
/// ShortMnemonic = "DR1V",
|
|
|
|
/// Description = "Depth Resis 1 sensor (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTRS1V")]
|
|
|
|
public float? Deptrs1v { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 15,
|
|
|
|
/// LongMnemonic = "MR1",
|
|
|
|
/// ShortMnemonic = "MR1",
|
|
|
|
/// Description = "Resis 1 reading",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "OHMM",
|
|
|
|
/// MetricUnits = "OHMM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MR1")]
|
|
|
|
public float? Mr1 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 16,
|
|
|
|
/// LongMnemonic = "MR1C",
|
|
|
|
/// ShortMnemonic = "MR1C",
|
|
|
|
/// Description = "Resis 1 (borehole corr)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "OHMM",
|
|
|
|
/// MetricUnits = "OHMM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MR1C")]
|
|
|
|
public float? Mr1c { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 17,
|
|
|
|
/// LongMnemonic = "DEPTRS2M",
|
|
|
|
/// ShortMnemonic = "DR2M",
|
|
|
|
/// Description = "Depth Resis 2 sensor (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTRS2M")]
|
|
|
|
public float? Deptrs2m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 18,
|
|
|
|
/// LongMnemonic = "DEPTRS2V",
|
|
|
|
/// ShortMnemonic = "DR2V",
|
|
|
|
/// Description = "Depth Resis 2 sensor (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTRS2V")]
|
|
|
|
public float? Deptrs2v { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 19,
|
|
|
|
/// LongMnemonic = "MR2",
|
|
|
|
/// ShortMnemonic = "MR2",
|
|
|
|
/// Description = "Resis 2 reading",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "OHMM",
|
|
|
|
/// MetricUnits = "OHMM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MR2")]
|
|
|
|
public float? Mr2 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 20,
|
|
|
|
/// LongMnemonic = "MR2C",
|
|
|
|
/// ShortMnemonic = "MR2C",
|
|
|
|
/// Description = "Resis 2 (borehole corr)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "OHMM",
|
|
|
|
/// MetricUnits = "OHMM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MR2C")]
|
|
|
|
public float? Mr2c { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 21,
|
|
|
|
/// LongMnemonic = "DEPTGR1M",
|
|
|
|
/// ShortMnemonic = "DG1M",
|
|
|
|
/// Description = "Depth G.Ray 1 sensor(meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTGR1M")]
|
|
|
|
public float? Deptgr1m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 22,
|
|
|
|
/// LongMnemonic = "DEPTGR1V",
|
|
|
|
/// ShortMnemonic = "DG1V",
|
|
|
|
/// Description = "Depth G.Ray 1 sensor(vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTGR1V")]
|
|
|
|
public float? Deptgr1v { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 23,
|
|
|
|
/// LongMnemonic = "MG1",
|
|
|
|
/// ShortMnemonic = "MG1",
|
|
|
|
/// Description = "Gamma Ray 1 reading",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "API",
|
|
|
|
/// MetricUnits = "API",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MG1")]
|
|
|
|
public float? Mg1 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 24,
|
|
|
|
/// LongMnemonic = "MG1C",
|
|
|
|
/// ShortMnemonic = "MG1C",
|
|
|
|
/// Description = "Gamma Ray 1(borehole corr)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "API",
|
|
|
|
/// MetricUnits = "API",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MG1C")]
|
|
|
|
public float? Mg1c { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 25,
|
|
|
|
/// LongMnemonic = "DEPTGR2M",
|
|
|
|
/// ShortMnemonic = "DG2M",
|
|
|
|
/// Description = "Depth G.Ray 2 sensor(meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTGR2M")]
|
|
|
|
public float? Deptgr2m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 26,
|
|
|
|
/// LongMnemonic = "DEPTGR2V",
|
|
|
|
/// ShortMnemonic = "DG2V",
|
|
|
|
/// Description = "Depth G.Ray 2 sensor(vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTGR2V")]
|
|
|
|
public float? Deptgr2v { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 27,
|
|
|
|
/// LongMnemonic = "MG2",
|
|
|
|
/// ShortMnemonic = "MG2",
|
|
|
|
/// Description = "Gamma Ray 2 reading",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "API",
|
|
|
|
/// MetricUnits = "API",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MG2")]
|
|
|
|
public float? Mg2 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 28,
|
|
|
|
/// LongMnemonic = "MG2C",
|
|
|
|
/// ShortMnemonic = "MG2C",
|
|
|
|
/// Description = "Gamma Ray 2(borehole corr)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "API",
|
|
|
|
/// MetricUnits = "API",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MG2C")]
|
|
|
|
public float? Mg2c { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 29,
|
|
|
|
/// LongMnemonic = "DEPTP1M",
|
|
|
|
/// ShortMnemonic = "DP1M",
|
|
|
|
/// Description = "Depth Por 1 sensor (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTP1M")]
|
|
|
|
public float? Deptp1m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 30,
|
|
|
|
/// LongMnemonic = "DEPTP1V",
|
|
|
|
/// ShortMnemonic = "DP1V",
|
|
|
|
/// Description = "Depth Por 1 sensor (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTP1V")]
|
|
|
|
public float? Deptp1v { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 31,
|
|
|
|
/// LongMnemonic = "MPO1",
|
|
|
|
/// ShortMnemonic = "MPO1",
|
|
|
|
/// Description = "Porosity Tool 1 reading",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MPO1")]
|
|
|
|
public float? Mpo1 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 32,
|
|
|
|
/// LongMnemonic = "DEPTP2M",
|
|
|
|
/// ShortMnemonic = "DP2M",
|
|
|
|
/// Description = "Depth Por 2 sensor (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTP2M")]
|
|
|
|
public float? Deptp2m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 33,
|
|
|
|
/// LongMnemonic = "DEPTP2V",
|
|
|
|
/// ShortMnemonic = "DP2V",
|
|
|
|
/// Description = "Depth Por 2 sensor (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTP2V")]
|
|
|
|
public float? Deptp2v { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 34,
|
|
|
|
/// LongMnemonic = "MPO2",
|
|
|
|
/// ShortMnemonic = "MPO2",
|
|
|
|
/// Description = "Porosity Tool 2 reading",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MPO2")]
|
|
|
|
public float? Mpo2 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 35,
|
|
|
|
/// LongMnemonic = "MFTANN",
|
|
|
|
/// ShortMnemonic = "MFTA",
|
|
|
|
/// Description = "Downhole Fluid Temp (ann)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "DEGF",
|
|
|
|
/// MetricUnits = "DEGC",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFTANN")]
|
|
|
|
public float? Mftann { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 36,
|
|
|
|
/// LongMnemonic = "MFTPIPE",
|
|
|
|
/// ShortMnemonic = "MFTP",
|
|
|
|
/// Description = "Downhole Fluid Temp (pipe)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "DEGF",
|
|
|
|
/// MetricUnits = "DEGC",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFTPIPE")]
|
|
|
|
public float? Mftpipe { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 37,
|
|
|
|
/// LongMnemonic = "MFRANN",
|
|
|
|
/// ShortMnemonic = "MFRA",
|
|
|
|
/// Description = "Downhole Fluid Resis (ann)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "OHMM",
|
|
|
|
/// MetricUnits = "OHMM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFRANN")]
|
|
|
|
public float? Mfrann { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 38,
|
|
|
|
/// LongMnemonic = "MFRPIPE",
|
|
|
|
/// ShortMnemonic = "MFRP",
|
|
|
|
/// Description = "Downhole Fluid Resis (pipe)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "OHMM",
|
|
|
|
/// MetricUnits = "OHMM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFRPIPE")]
|
|
|
|
public float? Mfrpipe { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 39,
|
|
|
|
/// LongMnemonic = "DEPTFDM",
|
|
|
|
/// ShortMnemonic = "DFDM",
|
|
|
|
/// Description = "Depth Form Density (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTFDM")]
|
|
|
|
public float? Deptfdm { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 40,
|
|
|
|
/// LongMnemonic = "DEPTFDV",
|
|
|
|
/// ShortMnemonic = "DFDV",
|
|
|
|
/// Description = "Depth Form Density (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTFDV")]
|
|
|
|
public float? Deptfdv { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 41,
|
|
|
|
/// LongMnemonic = "MFD",
|
|
|
|
/// ShortMnemonic = "MFD",
|
|
|
|
/// Description = "Formation Density",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "G/CC",
|
|
|
|
/// MetricUnits = "G/CC",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFD")]
|
|
|
|
public float? Mfd { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 42,
|
|
|
|
/// LongMnemonic = "DEPTCALM",
|
|
|
|
/// ShortMnemonic = "DCLM",
|
|
|
|
/// Description = "Depth Caliper (meas)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTCALM")]
|
|
|
|
public float? Deptcalm { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 43,
|
|
|
|
/// LongMnemonic = "DEPTCALV",
|
|
|
|
/// ShortMnemonic = "DCLV",
|
|
|
|
/// Description = "Depth Caliper (vert)",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "F",
|
|
|
|
/// MetricUnits = "M",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("DEPTCALV")]
|
|
|
|
public float? Deptcalv { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 44,
|
|
|
|
/// LongMnemonic = "MCLP",
|
|
|
|
/// ShortMnemonic = "MCLP",
|
|
|
|
/// Description = "Caliper",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "IN",
|
|
|
|
/// MetricUnits = "MM",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MCLP")]
|
|
|
|
public float? Mclp { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 45,
|
|
|
|
/// LongMnemonic = "MFPP",
|
|
|
|
/// ShortMnemonic = "MFPP",
|
|
|
|
/// Description = "Pore Pressure Grad MWD",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "PPG",
|
|
|
|
/// MetricUnits = "KGM3",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFPP")]
|
|
|
|
public float? Mfpp { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 46,
|
|
|
|
/// LongMnemonic = "MFFP",
|
|
|
|
/// ShortMnemonic = "MFFP",
|
|
|
|
/// Description = "Frac Pressure Grad MWD",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "PPG",
|
|
|
|
/// MetricUnits = "KGM3",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("MFFP")]
|
|
|
|
public float? Mffp { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 47,
|
|
|
|
/// LongMnemonic = "SPARE1",
|
|
|
|
/// ShortMnemonic = "SPR1",
|
|
|
|
/// Description = "< SPARE 1>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE1")]
|
|
|
|
public float? Spare1 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 48,
|
|
|
|
/// LongMnemonic = "SPARE2",
|
|
|
|
/// ShortMnemonic = "SPR2",
|
|
|
|
/// Description = "< SPARE 2>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE2")]
|
|
|
|
public float? Spare2 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 49,
|
|
|
|
/// LongMnemonic = "SPARE3",
|
|
|
|
/// ShortMnemonic = "SPR3",
|
|
|
|
/// Description = "< SPARE 3>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE3")]
|
|
|
|
public float? Spare3 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 50,
|
|
|
|
/// LongMnemonic = "SPARE4",
|
|
|
|
/// ShortMnemonic = "SPR4",
|
|
|
|
/// Description = "< SPARE 4>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE4")]
|
|
|
|
public float? Spare4 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 51,
|
|
|
|
/// LongMnemonic = "SPARE5",
|
|
|
|
/// ShortMnemonic = "SPR5",
|
|
|
|
/// Description = "< SPARE 5>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "---",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE5")]
|
|
|
|
public float? Spare5 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 52,
|
|
|
|
/// LongMnemonic = "SPARE6",
|
|
|
|
/// ShortMnemonic = "SPR6",
|
|
|
|
/// Description = "< SPARE 6>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE6")]
|
|
|
|
public float? Spare6 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 53,
|
|
|
|
/// LongMnemonic = "SPARE7",
|
|
|
|
/// ShortMnemonic = "SPR7",
|
|
|
|
/// Description = "< SPARE 7>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE7")]
|
|
|
|
public float? Spare7 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 54,
|
|
|
|
/// LongMnemonic = "SPARE8",
|
|
|
|
/// ShortMnemonic = "SPR8",
|
|
|
|
/// Description = "< SPARE 8>",
|
|
|
|
/// Description2 = "",
|
|
|
|
/// FPSUnits = "----",
|
|
|
|
/// MetricUnits = "----",
|
|
|
|
/// Length = 4,
|
|
|
|
/// ValueType = "F"
|
|
|
|
/// </summary>
|
|
|
|
[Column("SPARE8")]
|
|
|
|
public float? Spare8 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RecordId = 8,
|
|
|
|
/// ItemId = 55,
|
|
|
|
/// 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
|
|
|
}
|