diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-03-12 13:58:59 +0200 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-03-12 13:58:59 +0200 |
| commit | 666a172dccb2f34c8b8a77cd864ef88a95ad7b87 (patch) | |
| tree | 4251a3a2a87e28da7560af3e9f4951dbd23eb290 | |
| parent | 20df5917530e27ae8ead5bf2c35d2dbcad6669ae (diff) | |
| download | Tango-666a172dccb2f34c8b8a77cd864ef88a95ad7b87.tar.gz Tango-666a172dccb2f34c8b8a77cd864ef88a95ad7b87.zip | |
tech board file
3 files changed, 99 insertions, 218 deletions
diff --git a/Software/Stubs Collection/stubs/ProcessParametersBuild.cs b/Software/Stubs Collection/stubs/ProcessParametersBuild.cs index 3564c7b14..d3f2990b1 100644 --- a/Software/Stubs Collection/stubs/ProcessParametersBuild.cs +++ b/Software/Stubs Collection/stubs/ProcessParametersBuild.cs @@ -27,19 +27,19 @@ processParameters.WinderTension = 0; processParameters.MixerTemp = 80; processParameters.HeadZone1Temp = 80; processParameters.HeadZone2Temp = 110; -processParameters.HeadZone3Temp = 135; -processParameters.HeadZone4Temp = 135; -processParameters.HeadZone5Temp = 135; +processParameters.HeadZone3Temp = 136; +processParameters.HeadZone4Temp = 137; +processParameters.HeadZone5Temp = 134; processParameters.HeadZone6Temp = 140; processParameters.DryerAirFlow = 0; processParameters.DryerZone1Temp = 160; processParameters.DryerZone2Temp = 0; processParameters.DryerZone3Temp = 0; -processParameters.DryerBufferLength = 30; +processParameters.DryerBufferLength = 20; processParameters.HeadAirFlow = 0; processParameters.TableIndex = 0; -File.WriteAllBytes("C:/temp/ProcessP.msg",processParameters.ToBytes()); +File.WriteAllBytes("C:/temp/ProcessP.cfg",processParameters.ToBytes()); }
\ No newline at end of file diff --git a/Software/Stubs Collection/stubs/ThreadLoading.cs b/Software/Stubs Collection/stubs/ThreadLoading.cs deleted file mode 100644 index 375237184..000000000 --- a/Software/Stubs Collection/stubs/ThreadLoading.cs +++ /dev/null @@ -1,119 +0,0 @@ -using System; -using System.Text; -using System.Linq; -using System.Drawing; -using System.Diagnostics; -using System.Windows.Forms; -using System.Threading; -using System.Threading.Tasks; -using System.Collections.Generic; -using Tango.PMR.Hardware; -using Tango.PMR.Printing; -using Tango.PMR.Stubs; -using Tango.Stubs.UI; - -include "D:\stubs\addedfiles\ACHeatersDefinition.cs" -include "D:\stubs\addedfiles\DCHeatersDefinition.cs" -include "D:\stubs\addedfiles\DeskSystemThreadMotorsDefinition.cs" -//include "D:\stubs\addedfiles\ThreadMotorsDefinition2.cs" - -public void OnExecute(StubManager stubManager) -{ - Thread.Sleep(10); - - -UploadHardwareConfigurationRequest uploadHardwareConfigurationRequest = new UploadHardwareConfigurationRequest(); - -HardwareConfiguration hardwareConfiguration = new HardwareConfiguration(); - -hardwareConfiguration.Motors.Add(FeederMotor); -hardwareConfiguration.Motors.Add(WinderMotor); -hardwareConfiguration.Motors.Add(DryerMotor); -hardwareConfiguration.Motors.Add(PoolerMotor); -hardwareConfiguration.Motors.Add(ScrewMotor); -hardwareConfiguration.Motors.Add(DryerLoadarm); - - -//hardwareConfiguration.Dispensers.Add(hardwareDispenser); - -hardwareConfiguration.PidControls.Add(FeederPidControl); -hardwareConfiguration.PidControls.Add(PoolerPidControl); -hardwareConfiguration.PidControls.Add(WinderPidControl); - -hardwareConfiguration.Dancers.Add(FeederDancer); -hardwareConfiguration.Dancers.Add(PoolerDancer); -hardwareConfiguration.Dancers.Add(WinderDancer); - -hardwareConfiguration.Winders.Add(Winder); - - - -stubManager.WriteLine("data.data length = " + hardwareConfiguration.CalculateSize()); - - -uploadHardwareConfigurationRequest.HardwareConfiguration = hardwareConfiguration; -var response = stubManager.Run<UploadHardwareConfigurationResponse>(uploadHardwareConfigurationRequest); - /*Thread.Sleep(5000);*/ - -JobRequest jobRequest = new JobRequest(); - -JobTicket jobTicket = new JobTicket(); -jobTicket.Name = "Stubs Job"; -jobTicket.EnableInterSegment = false; -jobTicket.InterSegmentLength = 50; -jobTicket.Length = 1000; - -ProcessParameters processParameters = new ProcessParameters(); -processParameters.DyeingSpeed = 20; - -jobTicket.ProcessParameters = processParameters; -jobTicket.WindingMethod = Tango.PMR.Printing.JobWindingMethod.Embroidery; - -JobSpool jobSpool = new JobSpool(); -jobSpool.JobSpoolType = Tango.PMR.Printing.JobSpoolType.StandardSpool; -jobSpool.Length = 800; -jobSpool.Weight = 0; -jobSpool.Diameter = 3.0; -jobSpool.StartOffsetPulses = 300; -jobSpool.BackingRate = 10; -jobSpool.SegmentOffsetPulses = 600; -jobSpool.BottomBackingRate = 70; -jobSpool.RotationsPerPassage = 7; - -jobTicket.Spool = jobSpool; - -JobSegment jobSegment = new JobSegment(); -jobSegment.Name = "Segment1"; -jobSegment.Length = 400.0; - -JobBrushStop jobBrushStop = new JobBrushStop(); -jobBrushStop.Index = 0; -jobBrushStop.OffsetPercent = 0; -jobBrushStop.OffsetMeters = 0; - -JobDispenser jobDispenser = new JobDispenser(); -jobDispenser.Index = 6; -jobDispenser.Volume = 10; -jobDispenser.DispenserStepDivision = Tango.PMR.Printing.DispenserStepDivision.Auto; -jobDispenser.NanolitterPerSecond = 0; -jobDispenser.NanoliterPerCentimeter = 10; -jobDispenser.PulsePerSecond = 500; -jobDispenser.DispenserLiquidType = Tango.PMR.Printing.DispenserLiquidType.Cyan; -jobDispenser.LiquidMaxNanoliterPerCentimeter = 40; -jobDispenser.NanoliterPerPulse = 0; -jobBrushStop.Dispensers.Add(jobDispenser); -jobSegment.BrushStops.Add(jobBrushStop); -jobTicket.Segments.Add(jobSegment); - -jobRequest.JobTicket = jobTicket; - - -int i=0; -stubManager.RunContinuous<JobResponse>(jobRequest,(response1) => - { - stubManager.WriteLine (String.Format("Data, {0}, {1} meters, {2}",++i,response1.Status.Progress*jobSegment.Length,response1.Status.Message)); - - }); - - -}
\ No newline at end of file diff --git a/Software/Stubs Collection/stubs/technician view files/lp4 Tech Board.tpf b/Software/Stubs Collection/stubs/technician view files/lp4 Tech Board.tpf index 9840ce837..a90bd4d6d 100644 --- a/Software/Stubs Collection/stubs/technician view files/lp4 Tech Board.tpf +++ b/Software/Stubs Collection/stubs/technician view files/lp4 Tech Board.tpf @@ -26,11 +26,11 @@ <Angle>0</Angle> <ItemGuid>AFB7B6F7-8FFB-4A7F-B814-04F0C163CAA1</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>701</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="ControllerItem"> <ID>ba743caa-95f2-4b20-8c32-8e5943ada3fc</ID> @@ -41,9 +41,9 @@ <Angle>0</Angle> <ItemGuid>78482AA4-3DF6-421F-944C-64328D3C3EF2</ItemGuid> <ColorNumber>-14774017</ColorNumber> + <UpdateInterval>10</UpdateInterval> <OptimalRangeMinimum>0</OptimalRangeMinimum> <OptimalRangeMaximum>70</OptimalRangeMaximum> - <UpdateInterval>10</UpdateInterval> <IsSetToDefault>true</IsSetToDefault> </TechItem> <TechItem xsi:type="DigitalOutItem"> @@ -123,13 +123,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>DryerAirHeater</HeaterType> - <SetPoint>160</SetPoint> - <CurrentValue>159.81</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>20.529999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>160</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>0ac64716-d30c-489b-939e-a26d06445866</ID> @@ -143,8 +143,8 @@ <HeaterState> <HeaterType>DryerMainHeater</HeaterType> <SetPoint>0</SetPoint> - <CurrentValue>163.75</CurrentValue> - <IsActive>true</IsActive> + <CurrentValue>21.74</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> @@ -162,7 +162,7 @@ <HeaterState> <HeaterType>DryerSecondaryHeater</HeaterType> <SetPoint>0</SetPoint> - <CurrentValue>163.43</CurrentValue> + <CurrentValue>20.759999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> @@ -180,13 +180,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone3</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>135.34</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>21.58</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>7e8dd386-cca6-4d07-8a3e-af5403756002</ID> @@ -199,13 +199,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone2</HeaterType> - <SetPoint>110</SetPoint> - <CurrentValue>110.02</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>19.82</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>110</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>32a91e5f-27c8-490d-b187-8e39b6626a13</ID> @@ -218,13 +218,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone1</HeaterType> - <SetPoint>80</SetPoint> - <CurrentValue>80</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>20.61</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>80</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>c844235a-8a29-4c2e-a964-e8f546d2ced7</ID> @@ -237,13 +237,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>MixerHeater</HeaterType> - <SetPoint>80</SetPoint> - <CurrentValue>80.02</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>22.689999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>80</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>45b121b5-cf7c-41f7-8089-6d4d6b1ed2c8</ID> @@ -256,13 +256,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone4</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>133.84</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>21.049999999999997</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>e6b3eb18-482b-450e-b8a8-d2ac6bba4fd4</ID> @@ -275,13 +275,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone5</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>135.84</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>21.099999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>efff2e67-e3a3-4667-9208-4704707d7cda</ID> @@ -294,13 +294,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone6</HeaterType> - <SetPoint>140</SetPoint> - <CurrentValue>137.94</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>20.23</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>140</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="MonitorItem"> <ID>f9936dba-cef8-41e3-a715-eb629dca1870</ID> @@ -456,11 +456,11 @@ <Angle>0</Angle> <ItemGuid>D126DB23-784B-4F0C-8F88-D89A65A7549F</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>1460</Duration> <Min>0</Min> <Max>16384</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>984b4126-3dda-4624-a79f-0646eb0e1358</ID> @@ -471,11 +471,11 @@ <Angle>0</Angle> <ItemGuid>10102BC3-0EAE-47FF-A8E5-8640780CAA3D</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>1516</Duration> <Min>0</Min> <Max>16384</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>8ebc3ab7-a02d-4b12-93b3-2563443831d7</ID> @@ -486,11 +486,11 @@ <Angle>0</Angle> <ItemGuid>C0BCCD5C-346B-4C4A-A080-39D28E9E1A0C</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>1398</Duration> <Min>0</Min> <Max>16384</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>acafb268-5e97-4277-8dc8-173250a9e3f8</ID> @@ -501,11 +501,11 @@ <Angle>0</Angle> <ItemGuid>9FBC5460-BA59-486B-8D85-BD7D8A959F98</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>1273</Duration> <Min>0</Min> <Max>100</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="MotorItem"> <ID>3ccb1485-b0e9-4d36-a931-a1b3865edeaa</ID> @@ -527,11 +527,11 @@ <Angle>0</Angle> <ItemGuid>4CE6A82E-D841-4D33-BBB2-11F0743A441C</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>514</Duration> <Min>0</Min> <Max>100000</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>75b99507-4eba-4b11-b52e-26732d4c5479</ID> @@ -542,11 +542,11 @@ <Angle>0</Angle> <ItemGuid>F1DF490B-0577-4FA7-ACA1-0EEF4F934E8F</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>4</DecimalPlaces> <Duration>1398</Duration> <Min>0</Min> <Max>100</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>4</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>a30e48de-be76-4230-92d0-d27d6f37b940</ID> @@ -557,11 +557,11 @@ <Angle>0</Angle> <ItemGuid>5F12B974-2C9E-4DDD-9B20-733251A5D7E6</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>4</DecimalPlaces> <Duration>1398</Duration> <Min>0</Min> <Max>100</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>4</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>5ac4b368-093a-4192-98d4-e9d24f229b13</ID> @@ -572,11 +572,11 @@ <Angle>0</Angle> <ItemGuid>84CF23C9-D20D-4C08-BE1D-80201FC43C06</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>4</DecimalPlaces> <Duration>1398</Duration> <Min>0</Min> <Max>100</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>4</DecimalPlaces> </TechItem> <TechItem xsi:type="MonitorRecorderItem"> <ID>9c34dc69-cfaa-48b4-9d02-8f0d9bba79dd</ID> @@ -1097,7 +1097,7 @@ <Angle>0</Angle> <ItemGuid>f3b5076e-cba3-4ad2-b3cc-0c4e907bd9ef</ItemGuid> <ColorNumber>-1</ColorNumber> - <Speed>40</Speed> + <Speed>80</Speed> </TechItem> <TechItem xsi:type="MotorItem"> <ID>7644a8f9-00a2-4e37-8f48-0667b1541114</ID> @@ -1156,11 +1156,11 @@ <Angle>0</Angle> <ItemGuid>D7585119-4A42-4370-8F1E-F3E62553E588</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>2962</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>c4e19f7c-e6e9-4f45-987e-f124456b2529</ID> @@ -1171,11 +1171,11 @@ <Angle>0</Angle> <ItemGuid>A8DB1D27-6B25-4FB4-A3F5-46A29BA51955</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>3</DecimalPlaces> <Duration>2817</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>3</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>b8b24455-1c20-417d-bd78-5fe4c7e3d023</ID> @@ -1186,11 +1186,11 @@ <Angle>0</Angle> <ItemGuid>6C0C1AB0-3EE9-40D7-8424-A79436FBC804</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>2982</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>2129a0cd-454f-4834-8197-3b048bf4b978</ID> @@ -1201,11 +1201,11 @@ <Angle>0</Angle> <ItemGuid>098F7CAB-030C-46B0-B2B8-A85AF2253032</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>2949</Duration> <Min>0</Min> <Max>100</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>892fabb7-01fa-4b39-a19e-a557fafae0ac</ID> @@ -1216,11 +1216,11 @@ <Angle>0</Angle> <ItemGuid>DACEBF90-E2B4-4CC9-A973-B8B429AA0089</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>2628</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>4859974c-7224-42d5-97ca-0e2e549372f5</ID> @@ -1231,11 +1231,11 @@ <Angle>0</Angle> <ItemGuid>246C2551-5EFD-48E9-94F6-6313C5E5018F</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>3153</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="PidItem"> <ID>81b78212-14d8-4a66-bf3a-eeea9900e0d6</ID> @@ -1306,11 +1306,11 @@ <Angle>0</Angle> <ItemGuid>AFB7B6F7-8FFB-4A7F-B814-04F0C163CAA1</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>3153</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>9330a6be-17f1-4ecb-978d-719adf9fec1f</ID> @@ -1321,11 +1321,11 @@ <Angle>0</Angle> <ItemGuid>9A3877B2-9F98-4A5C-9A93-DECA2836FA8A</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>2</DecimalPlaces> <Duration>3153</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>2</DecimalPlaces> </TechItem> <TechItem xsi:type="PidItem"> <ID>3228b2ba-83f3-4eb2-a6d2-7200301758a4</ID> @@ -1358,13 +1358,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone4</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>133.84</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>21.049999999999997</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>4fa7a50d-5155-4785-95a0-508cd40fad4d</ID> @@ -1377,13 +1377,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone1</HeaterType> - <SetPoint>80</SetPoint> - <CurrentValue>80</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>20.61</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>80</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>9da56601-7b5b-4f0f-afbf-2b31970b104f</ID> @@ -1396,13 +1396,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone3</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>135.34</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>21.58</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>b700e59d-f923-4f13-9dcc-942050548c22</ID> @@ -1415,13 +1415,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone5</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>135.84</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>21.099999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>97bf8fa2-b07f-4f0e-87ac-820ea52d236e</ID> @@ -1434,13 +1434,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>MixerHeater</HeaterType> - <SetPoint>80</SetPoint> - <CurrentValue>80.02</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>22.689999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>80</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>3941a557-05e6-4c1b-bb98-4f2a59892431</ID> @@ -1453,13 +1453,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone2</HeaterType> - <SetPoint>110</SetPoint> - <CurrentValue>110.02</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>19.82</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>110</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>3020fbc5-305e-4adf-9f1e-d7a48168e2e7</ID> @@ -1472,13 +1472,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone6</HeaterType> - <SetPoint>140</SetPoint> - <CurrentValue>137.94</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>20.23</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>140</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>a4049a51-7417-4eab-8bc1-837574307e93</ID> @@ -1491,13 +1491,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>DryerAirHeater</HeaterType> - <SetPoint>160</SetPoint> - <CurrentValue>159.81</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>20.529999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>160</SetPoint> + <SetPoint>0</SetPoint> </TechItem> </Items> </MachineTechViewProjectTab> @@ -1524,11 +1524,11 @@ <Angle>0</Angle> <ItemGuid>098F7CAB-030C-46B0-B2B8-A85AF2253032</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>10</Duration> <Min>0</Min> <Max>100</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>3bf6782d-117d-4589-a1d6-6454b67e3862</ID> @@ -1539,11 +1539,11 @@ <Angle>0</Angle> <ItemGuid>6C0C1AB0-3EE9-40D7-8424-A79436FBC804</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>10</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="SingleGraphItem"> <ID>c7a89d21-7383-4caa-941e-b42e1109b16a</ID> @@ -1554,11 +1554,11 @@ <Angle>0</Angle> <ItemGuid>246C2551-5EFD-48E9-94F6-6313C5E5018F</ItemGuid> <ColorNumber>-14774017</ColorNumber> - <DecimalPlaces>1</DecimalPlaces> <Duration>10</Duration> <Min>0</Min> <Max>300</Max> <UseAutoRange>true</UseAutoRange> + <DecimalPlaces>1</DecimalPlaces> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>4c789472-cb4f-4ede-b22a-c733591117c8</ID> @@ -1571,13 +1571,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone3</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>135.34</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>21.58</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>ddda12e1-54ad-4ffd-9f77-5845372e134f</ID> @@ -1590,13 +1590,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone4</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>133.84</CurrentValue> - <IsActive>true</IsActive> + <SetPoint>0</SetPoint> + <CurrentValue>21.049999999999997</CurrentValue> + <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="HeaterItem"> <ID>479f6fd7-25bb-4583-985e-169e045895ce</ID> @@ -1609,13 +1609,13 @@ <ColorNumber>-1</ColorNumber> <HeaterState> <HeaterType>HeaterZone5</HeaterType> - <SetPoint>135</SetPoint> - <CurrentValue>135.84</CurrentValue> + <SetPoint>0</SetPoint> + <CurrentValue>21.099999999999998</CurrentValue> <IsActive>false</IsActive> <IsRampingUp>false</IsRampingUp> <IsInSetPoint>true</IsInSetPoint> </HeaterState> - <SetPoint>135</SetPoint> + <SetPoint>0</SetPoint> </TechItem> <TechItem xsi:type="ProcessParametersItem"> <ID>2eed9e1e-31cd-4dc4-9d44-dd35798ff733</ID> @@ -1751,13 +1751,13 @@ <Angle>0</Angle> <ItemGuid>78482AA4-3DF6-421F-944C-64328D3C3EF2</ItemGuid> <ColorNumber>-14774017</ColorNumber> + <UpdateInterval>10</UpdateInterval> <OptimalRangeMinimum>0</OptimalRangeMinimum> <OptimalRangeMaximum>70</OptimalRangeMaximum> - <UpdateInterval>10</UpdateInterval> <IsSetToDefault>true</IsSetToDefault> </TechItem> </Items> </MachineTechViewProjectTab> </Tabs> - <SelectedTabIndex>2</SelectedTabIndex> + <SelectedTabIndex>3</SelectedTabIndex> </MachineTechViewProject>
\ No newline at end of file |
