20211010_CZPM_upperpc/垂直剖面浮标临时测试软件v1.8/垂直剖面浮标临时测试软件/Model/Buoy_sensor_othModel.cs
2023-07-27 11:01:29 +08:00

61 lines
2.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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_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;
//气象_温度
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;
}
}