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 { /// /// 计算参数类 /// public class Calculate_Parameters { static double _HalfTime = 0.0; /// /// 半升温时间 /// public double HalfTime { get { return _HalfTime; } set { _HalfTime = value; } } static double _Density = 0.0; /// /// 密度 /// public double Density { get { return _Density; } set { _Density = value; } } static double _Specific_heat_capacity; /// /// 比热容 /// public double Specific_heat_capacity { get { return _Specific_heat_capacity; } set { _Specific_heat_capacity = value; } } static double _Thermal_diffusivity; /// /// 热扩散系数 /// public double Thermal_diffusivity { get { return _Thermal_diffusivity; } set { _Thermal_diffusivity = value; } } static double _Thickness; /// /// 样品厚度 /// public double Thickness { get { return _Thickness; } set { _Thickness = value; } } static double _Thermal_conductivity; /// /// 导热系数 /// public double Thermal_conductivity { get { return _Thermal_conductivity; } set { _Thermal_conductivity = value; } } static double _Xishu = 0.0; /// /// 系数 /// public double Xishu { get { return _Xishu; } set { _Xishu = value; } } static int _Sample_Step; /// /// 优化步 /// public int Sample_Step { get { return _Sample_Step; } set { _Sample_Step = value; } } static string _Batch_number; /// /// 批号 /// public string Batch_number { get { return _Batch_number; } set { _Batch_number = value; } } static string _Test_Name; /// /// 品名 /// public string Test_Name { get { return _Test_Name; } set { _Test_Name = value; } } static string _Window; public string Window { get { return _Window; } set { _Window = value; } } } }