61 lines
2.3 KiB
C#
61 lines
2.3 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace 垂直剖面浮标临时测试软件.Model
|
||
{
|
||
public class Buoy_sensor_othModel
|
||
{
|
||
//下位机时间
|
||
public DateTime datetime { 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;
|
||
//气象_温度
|
||
public float Air_Tem { get; set; } = (float)0;
|
||
//气象_湿度
|
||
public float Air_Hum { get; set; } = (float)0;
|
||
//气象_大气压
|
||
public float Air_Pre { get; set; } = (float)0;
|
||
//气象_风向
|
||
public float Wind_Dir { get; set; } = (float)0;
|
||
//气象_风速/m/s
|
||
public float Wind_Speed { get; set; } = (float)0;
|
||
//气象_最大风速/m/s
|
||
public float Wind_Speed_Max { get; set; } = (float)0;
|
||
//气象_辐照度
|
||
public float Fzd { get; set; } = (float)0;
|
||
//气象_雨量/inches
|
||
public float RainFall { get; set; } = (float)0;
|
||
//走航甲烷ch4_dry / ppm
|
||
public float Go_sailing_CH4_Dry { get; set; } = (float)0;
|
||
//走航甲烷h2o / ppm
|
||
public float Go_sailing_CH4_H2O { get; set; } = (float)0;
|
||
//走航甲烷 C2H6 /ppb
|
||
public float Go_sailing_CH4_C2H6 { get; set; } = (float)0;
|
||
//温度(value/1000* 100)
|
||
public float Tem { get; set; } = (float)0;
|
||
//湿度(value/1000* 100/3)
|
||
public float Hum { get; set; } = (float)0;
|
||
//24V电池输入电压
|
||
public float Vol_24_in { get; set; } = (float)0;
|
||
//24V电池输入电流
|
||
public float Cur_24_in { get; set; } = (float)0;
|
||
//48V输出电压
|
||
public float Vol_48_out { get; set; } = (float)0;
|
||
//95V输出电压
|
||
public float Vol_95_out { get; set; } = (float)0;
|
||
}
|
||
}
|