aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/TestResultsExcelModel.cs
blob: 58d48f62e7db5431294d0790457ded88abd89f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.ThreadExtensions.Models
{
    public class TestResultsExcelModel
    {
        public String Thread_name_test_results { get; set; }
        public String Machine_number { get; set; }
        public String Test_results_name__tab { get; set; }

        public int Dryer_temp { get; set; }
        public int Dryer_flow { get; set; }
        public int Tunnel_temp { get; set; }
        public int Tunnel_flow { get; set; }

        public String Tension_in_head { get; set; }
        public String Tension_after_dryer { get; set; }
        public String Tension_in_winder { get; set; }
        public String BTSR { get; set; }
        public String Puller_tension { get; set; }
        public String Winder_tension { get; set; }
        
        public double Rubbing_K_100___DE { get; set; }
        public double Rubbing_K_100___GS { get; set; }
        public double Rubbing_K_200___DE { get; set; }
        public double Rubbing_K_200___GS { get; set; }
        public double Rubbing_C_100___DE { get; set; }
        public double Rubbing_C_100___GS { get; set; }
        public double Rubbing_C_200___DE { get; set; }
        public double Rubbing_C_200___GS { get; set; }
        public double Rubbing_Y_100___DE { get; set; }
        public double Rubbing_Y_100___GS { get; set; }
        public double Rubbing_Y_200___DE { get; set; }
        public double Rubbing_Y_200___GS { get; set; }
        public double Rubbing_M_100___DE { get; set; }
        public double Rubbing_M_100___GS { get; set; }
        public double Rubbing_M_200___DE { get; set; }
        public double Rubbing_M_200___GS { get; set; }

        public String Color_REF { get; set; }
        public double Load__N_REF { get; set; }
        public double STDEV_REF { get; set; }
        public double REF_Strain { get; set; }
        public double STDEV_Strain_REF { get; set; }

        public int Color_100_C { get; set; }
        public String C_color_100_C { get; set; }
        public double Load_N_100_C { get; set; }
        public double STDEV_100_C { get; set; }
        public double Change_100_C { get; set; }
        public double Strain_100_C { get; set; }
        public double STDEV_100_C_2 { get; set; }
        public double Change_100_C_2 { get; set; }

        public int Color_100_K { get; set; }
        public String C_color_100_K { get; set; }
        public double Load__N_100_K { get; set; }
        public double STDEV_100_K { get; set; }
        public double Change__100_K { get; set; }
        public double Strain_100_K { get; set; }
        public double STDEV_100_K_2 { get; set; }
        public double Change_100_K_2 { get; set; }

        public int Color_200_C { get; set; }
        public String C_color_200_C { get; set; }
        public double Load__N_200_C { get; set; }
        public double STDEV_200_C { get; set; }
        public double Change_200_C { get; set; }
        public double Strain_200_C { get; set; }
        public double STDEV_200_C_2 { get; set; }
        public double Change_200_C_2 { get; set; }

        public int Color_200_K { get; set; }
        public String C_color_200_K { get; set; }
        public double Load__N_200_K { get; set; }
        public double STDEV_200_K { get; set; }
        public double Change_200_K { get; set; }
        public double Strain_200_K { get; set; }
        public double STDEV_200_K_2 { get; set; }
        public double Change_200_K_2 { get; set; }
        
        public String Uniformity_Zone_1 { get; set; }
        public String Uniformity_Zone_2 { get; set; }
        
        public double COF_REF { get; set; }
        public double CV_REF { get; set; }
        public double COF_Black { get; set; }
        public double CV_Black { get; set; }
        //for twine inly
        public double lub_amount { get; set; }
        
        public String Comments { get; set; }
        public String Conclusion { get; set; }

        public TestResultsExcelModel()
        {
            Comments = Conclusion = "";
            C_color_100_C = "Cyan";
            Color_100_C = 100;
            Load__N_100_K = STDEV_100_K = Change__100_K = Strain_100_K = STDEV_100_K_2 = Change_100_K_2 = 0.0;

            C_color_200_C = "Cyan";
            Color_200_C = 200;
            Load__N_200_C = STDEV_200_C = Change_200_C = Strain_200_C = STDEV_200_C_2 = Change_200_C_2 = 0.0;

            C_color_100_K = "Black";
            Color_100_K = 100;
            Load__N_100_K = STDEV_100_K = Change__100_K = Strain_100_K = STDEV_100_K_2 = Change_100_K_2 = 0.0;

            C_color_200_K = "Black";
            Color_200_K = 200;
            Load__N_200_K = STDEV_200_K = Change_200_K = Strain_200_K = STDEV_200_K_2 = Change_200_K_2 = 0.0;

            Color_REF = "REF";
            Load__N_REF = STDEV_REF = REF_Strain = STDEV_Strain_REF = 0;
        }

    }
}