45 lines
1.5 KiB
C#
45 lines
1.5 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace 垂直剖面浮标临时测试软件.Model
|
|||
|
|
{
|
|||
|
|
public class Conbox_sensor_othModel
|
|||
|
|
{
|
|||
|
|
//下位机时间
|
|||
|
|
public DateTime datetime_Sensor { get; set; }
|
|||
|
|
//CH4_压力值 / μatm
|
|||
|
|
public float CH4_Pre { get; set; } = (float)0;
|
|||
|
|
//CH4_甲烷浓度 / ppm
|
|||
|
|
public float CH4_Con { get; set; } = (float)0;
|
|||
|
|
//CO2_压力值 / μatm
|
|||
|
|
public float CO2_Pre { get; set; } = (float)0;
|
|||
|
|
//CO2_甲烷浓度 / ppm
|
|||
|
|
public float CO2_Con { get; set; } = (float)0;
|
|||
|
|
//METS_Methane / μatm
|
|||
|
|
public float METS_Meth { get; set; } = (float)0;
|
|||
|
|
//METS_温度 / ℃
|
|||
|
|
public float METS_Tem { get; set; } = (float)0;
|
|||
|
|
//CTD_温度 / ℃
|
|||
|
|
public float CTD_Tem { get; set; } = (float)0;
|
|||
|
|
//CTD_电导率 /(s/m)
|
|||
|
|
public float CTD_Con { get; set; } = (float)0;
|
|||
|
|
//CTD_压力 / (dbar)
|
|||
|
|
public float CTD_Pre { get; set; } = (float)0;
|
|||
|
|
//倾角传感器x方向
|
|||
|
|
public float Angle_sensor_x { get; set; } = (float)0;
|
|||
|
|
//倾角传感器y方向
|
|||
|
|
public float Angle_sensor_y { get; set; } = (float)0;
|
|||
|
|
//倾角传感器z方向
|
|||
|
|
public float Angle_sensor_z { get; set; } = (float)0;
|
|||
|
|
//CTD叶绿素
|
|||
|
|
public float CTD_YLS { get; set; }
|
|||
|
|
//CTD浊度
|
|||
|
|
public float CTD_ZD { get; set; }
|
|||
|
|
//CTD_溶解氧
|
|||
|
|
public float CTD_Rjy { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|