128 lines
2.9 KiB
C#
128 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
|
|
|
|
namespace 激光闪光法测试仪.Data
|
|
{
|
|
/// <summary>
|
|
/// 计算参数类
|
|
/// </summary>
|
|
public class Calculate_Parameters
|
|
{
|
|
|
|
static double _HalfTime = 0.0;
|
|
/// <summary>
|
|
/// 半升温时间
|
|
/// </summary>
|
|
public double HalfTime
|
|
{
|
|
get { return _HalfTime; }
|
|
set { _HalfTime = value; }
|
|
}
|
|
|
|
|
|
static double _Density = 0.0;
|
|
/// <summary>
|
|
/// 密度
|
|
/// </summary>
|
|
public double Density
|
|
{
|
|
get { return _Density; }
|
|
set { _Density = value; }
|
|
}
|
|
|
|
|
|
static double _Specific_heat_capacity;
|
|
/// <summary>
|
|
/// 比热容
|
|
/// </summary>
|
|
public double Specific_heat_capacity
|
|
{
|
|
get { return _Specific_heat_capacity; }
|
|
set { _Specific_heat_capacity = value; }
|
|
}
|
|
|
|
|
|
static double _Thermal_diffusivity;
|
|
/// <summary>
|
|
/// 热扩散系数
|
|
/// </summary>
|
|
public double Thermal_diffusivity
|
|
{
|
|
get { return _Thermal_diffusivity; }
|
|
set { _Thermal_diffusivity = value; }
|
|
}
|
|
|
|
|
|
static double _Thickness;
|
|
/// <summary>
|
|
/// 样品厚度
|
|
/// </summary>
|
|
public double Thickness
|
|
{
|
|
get { return _Thickness; }
|
|
set { _Thickness = value; }
|
|
}
|
|
|
|
static double _Thermal_conductivity;
|
|
/// <summary>
|
|
/// 导热系数
|
|
/// </summary>
|
|
public double Thermal_conductivity
|
|
{
|
|
get { return _Thermal_conductivity; }
|
|
set { _Thermal_conductivity = value; }
|
|
}
|
|
|
|
static double _Xishu = 0.0;
|
|
/// <summary>
|
|
/// 系数
|
|
/// </summary>
|
|
public double Xishu
|
|
{
|
|
get { return _Xishu; }
|
|
set { _Xishu = value; }
|
|
}
|
|
|
|
static int _Sample_Step;
|
|
/// <summary>
|
|
/// 优化步
|
|
/// </summary>
|
|
public int Sample_Step
|
|
{
|
|
get { return _Sample_Step; }
|
|
set { _Sample_Step = value; }
|
|
}
|
|
|
|
static string _Batch_number;
|
|
/// <summary>
|
|
/// 批号
|
|
/// </summary>
|
|
public string Batch_number
|
|
{
|
|
get { return _Batch_number; }
|
|
set { _Batch_number = value; }
|
|
}
|
|
|
|
static string _Test_Name;
|
|
/// <summary>
|
|
/// 品名
|
|
/// </summary>
|
|
public string Test_Name
|
|
{
|
|
get { return _Test_Name; }
|
|
set { _Test_Name = value; }
|
|
}
|
|
|
|
static string _Window;
|
|
public string Window
|
|
{
|
|
get { return _Window; }
|
|
set { _Window = value; }
|
|
}
|
|
}
|
|
}
|