;---------------------------------------------------------------------- ; REVISIONS ; ; 26-Jul-01 TAA ; Points 1-4 added to extend PT100 curve to lower Ts ; ; 30-Sep-01 DHB ; 1) Change lookup tables for all Calibrated ROX sensors ; 2) Use Coil E primary ROX sensor as representative of all calibrated ; sensors for all uncalibrated sensors ; All calibrations and notes in ROX.nb Mathematica file in folder Fits-29sep01 ; ; 19-Dec-01 SEW ; Points 29-38 added to extend PT100 curve to higher Ts. Resistance ; values for new points are based on "DIN EN60751 European Standard" ; parameterization (see OMEGA Catalog Appendix Z252-Z254) ; ; 07-Jul-02 KN ; Added Cernox calibration curves for new sensors. ; ; 09-Jul-02 KN ; Corrected typo in point 31 of curve for CerALeadPri ; ; 28-Jul-02 KN ; Corrected inversion of lead A and lead B Cernox curves ; ; 31-Jul-02 JP ; Added MinCCMmSec parameter for new version of TempService. ; ; 07-Aug-02 SEW ; Added SD470 silicon diode curve (converted to a "resistance") ; for the LHe warm return temperature. ; ; 31-Aug-02 SEW & DTS ; Due to a number of reloads of the Edgeport driver, the com ports have been ; renumbered (again). ; ; 17-Aut-02 SEW & KN ; The COM ports in this version are appropriate to the UPSTAIRS control ; computer (It uses COM3 - COM8). ; ;---------------------------------------------------------------------- ; INI configuration file for the TempService temperature monitor ; service. See comments in the [PLC] and [Monitor1] sections for ; details (further Monitor2..N sections are not commented). See ; [ROX_Curve] section for an example for a user-defined temperature ; curve, with comments. ; ; Any changes made to this file will not take effect until either ; (1) the PC is rebooted, or ; (2) the Temperature Monitor Service is stopped and re-started, ; either from the control panel's Administrative Tools/Services ; dialog or from the TempDisplay application's Start/Stop buttons. ; ; The Temperature Monitor service logs errors to TempService.log, ; located in the same directory as this file. Examine this file ; if a problem is encountered. ; ; NOTES: ; ; (1) Do NOT add comments on the same line as key/values, these are not ; removed by Windows when reading INI file entries. ; ; (2) All temperature monitors are reset when the service first starts ; up (via the DFLT 99 command), so any configuration required for ; them needs to be specified in this file. Anything keyed in ; through the front panel will be lost when the temperature ; monitor service is restarted. ; ;---------------------------------------------------------------------- [ROX_Curve] ; ; User-defined ROX temperature curve ; ; Curve name (anything desired up to 15 characters, in this case ; "ROX_Curve") appears within brackets. This name can then be used in a ; [MonitorN] section TempCurveX key to assign a user-defined temperature ; curve to any of the temperature monitor's inputs. Names are not ; case-sensitive (TestCurve and TESTCURVE are the same name). ; ; Curve serial number, anything desired up to 10 characters ; SerialNo = ROX ; ; Curve data format (2=V/K, 3=Ohm/K, 4=log Ohm/K) ; ; IMPORTANT!!! ; ; Temperature monitor input banks A (inputs 1-4) or B (inputs 5-8) input ; type *MUST* be set to a type compatible with the given curve data format, ; if the curve is to be successfully assigned later to an input in that ; bank. Input bank types can be set via user-configuration strings ; (CfgStrCount and CfgStr1..N keys in a [MonitorN] section) using ; INTYPE commands. ; Format = 4 ; ; Curve upper temperature limit, in Kelvin ; LimitKelvin = 100 ; ; Curve temperature coefficient ; 1 = negative (signal value decreases as temperature increases) ; 2 = positive (signal value increases as temperature increases) ; Coefficient = 1 ; ; Number of points in curve, can be anything between 2 and 200 ; PointCount = 57 ; ; Curve points ; ; Format: PointX = input units(in V,Ohm or log Ohm), temp(in Kelvin) ; ; Input units and temperature may each specify up to 6 significant digits. ; ; Points do not need to be sorted in any particular order. The service will ; sort them from lowest to highest unit value before programming them in, ; as LakeShore temperature monitors require. ; Point1 = 3.20965, 1.50 Point2 = 3.18943, 1.75 Point3 = 3.17301, 2.00 Point4 = 3.15927, 2.25 Point5 = 3.14743, 2.50 Point6 = 3.13761, 2.75 Point7 = 3.12879, 3.00 Point8 = 3.12097, 3.25 Point9 = 3.11394, 3.50 Point10 = 3.10782, 3.75 Point11 = 3.10267, 4.00 Point12 = 3.09781, 4.25 Point13 = 3.09353, 4.50 Point14 = 3.08923, 4.75 Point15 = 3.08550, 5.00 Point16 = 3.07893, 5.50 Point17 = 3.07343, 6.00 Point18 = 3.06863, 6.50 Point19 = 3.06420, 7.00 Point20 = 3.06058, 7.50 Point21 = 3.05721, 8.00 Point22 = 3.05392, 8.50 Point23 = 3.05123, 9.00 Point24 = 3.04914, 9.50 Point25 = 3.04720, 10.00 Point26 = 3.04309, 11.00 Point27 = 3.03993, 12.00 Point28 = 3.03695, 13.00 Point29 = 3.03475, 14.00 Point30 = 3.03254, 15.00 Point31 = 3.03113, 16.00 Point32 = 3.02930, 17.00 Point33 = 3.02768, 18.00 Point34 = 3.02645, 19.00 Point35 = 3.02522, 20.00 Point36 = 3.02358, 22.00 Point37 = 3.02173, 24.00 Point38 = 3.02007, 26.00 Point39 = 3.01924, 28.00 Point40 = 3.01820, 30.00 Point41 = 3.01716, 32.00 Point42 = 3.01611, 34.00 Point43 = 3.01590, 36.00 Point44 = 3.01507, 38.00 Point45 = 3.01444, 40.00 Point46 = 3.01339, 45.00 Point47 = 3.01237, 50.00 Point48 = 3.01195, 55.00 Point49 = 3.01089, 60.00 Point50 = 3.01043, 65.00 Point51 = 3.00958, 70.00 Point52 = 3.00915, 75.00 Point53 = 3.00894, 80.00 Point54 = 3.00830, 85.00 Point55 = 3.00788, 90.00 Point56 = 3.00724, 95.00 Point57 = 3.00723, 100.00 ;---------------------------------------------------------------------- ; Diode curve. This curve is generated from the silicon diode temperature ; sensor curve (SD470) found at http://www.lakeshore.com/temp/sen/curve10.html ; Because we have, almost exclusively, resistive temperature senors, the ; temperature versus voltage curve provided by lakeshore has been converted ; to temperature versus log resistance, assuming 10 uA excitation current and ; a voltage divider which reduces the voltage by a factor of 0.041914 ; (made using resistors measured to be 24.55 and 1.074 MOhms) [SD470Diode] SerialNo = SD470 Format = 4 LimitKelvin = 475 Coefficient = 1 PointCount = 120 Point1 = 2.579581, 475 Point2 = 2.630574, 470 Point3 = 2.720897, 460 Point4 = 2.798014, 450 Point5 = 2.864501, 440 Point6 = 2.92254, 430 Point7 = 2.973825, 420 Point8 = 3.019654, 410 Point9 = 3.060995, 400 Point10 = 3.098624, 390 Point11 = 3.133117, 380 Point12 = 3.164946, 370 Point13 = 3.194497, 360 Point14 = 3.222055, 350 Point15 = 3.247886, 340 Point16 = 3.27215, 330 Point17 = 3.295092, 320 Point18 = 3.316822, 310 Point19 = 3.337458, 300 Point20 = 3.357109, 290 Point21 = 3.375864, 280 Point22 = 3.393798, 270 Point23 = 3.410985, 260 Point24 = 3.427457, 250 Point25 = 3.443268, 240 Point26 = 3.458454, 230 Point27 = 3.473053, 220 Point28 = 3.487094, 210 Point29 = 3.500615, 200 Point30 = 3.513644, 190 Point31 = 3.526196, 180 Point32 = 3.538306, 170 Point33 = 3.549984, 160 Point34 = 3.561242, 150 Point35 = 3.572099, 140 Point36 = 3.582557, 130 Point37 = 3.592625, 120 Point38 = 3.602302, 110 Point39 = 3.611585, 100 Point40 = 3.616076, 95 Point41 = 3.620464, 90 Point42 = 3.624748, 85 Point43 = 3.62893, 80 Point44 = 3.633005, 75 Point45 = 3.636983, 70 Point46 = 3.640862, 65 Point47 = 3.64465, 60 Point48 = 3.646141, 58 Point49 = 3.647614, 56 Point50 = 3.649079, 54 Point51 = 3.650522, 52 Point52 = 3.651956, 50 Point53 = 3.65337, 48 Point54 = 3.654767, 46 Point55 = 3.656155, 44 Point56 = 3.657531, 42 Point57 = 3.65891, 40 Point58 = 3.660305, 38 Point59 = 3.661732, 36 Point60 = 3.663213, 34 Point61 = 3.664787, 32 Point62 = 3.666513, 30 Point63 = 3.667465, 29 Point64 = 3.668509, 28 Point65 = 3.669698, 27 Point66 = 3.671172, 26 Point67 = 3.673367, 25 Point68 = 3.677728, 24 Point69 = 3.685157, 23 Point70 = 3.693152, 22 Point71 = 3.700252, 21 Point72 = 3.706719, 20 Point73 = 3.709834, 19.5 Point74 = 3.712912, 19 Point75 = 3.715965, 18.5 Point76 = 3.719017, 18 Point77 = 3.722073, 17.5 Point78 = 3.725141, 17 Point79 = 3.728232, 16.5 Point80 = 3.731352, 16 Point81 = 3.734506, 15.5 Point82 = 3.737708, 15 Point83 = 3.740963, 14.5 Point84 = 3.744285, 14 Point85 = 3.747686, 13.5 Point86 = 3.751176, 13 Point87 = 3.754768, 12.5 Point88 = 3.758472, 12 Point89 = 3.762303, 11.5 Point90 = 3.766268, 11 Point91 = 3.770389, 10.5 Point92 = 3.774685, 10 Point93 = 3.779173, 9.5 Point94 = 3.783869, 9 Point95 = 3.788787, 8.5 Point96 = 3.793917, 8 Point97 = 3.799235, 7.5 Point98 = 3.804675, 7 Point99 = 3.810152, 6.5 Point100 = 3.815557, 6 Point101 = 3.820816, 5.5 Point102 = 3.825885, 5 Point103 = 3.827849, 4.8 Point104 = 3.829776, 4.6 Point105 = 3.831658, 4.4 Point106 = 3.833483, 4.2 Point107 = 3.835245, 4 Point108 = 3.83695, 3.8 Point109 = 3.8386, 3.6 Point110 = 3.840194, 3.4 Point111 = 3.841735, 3.2 Point112 = 3.843229, 3 Point113 = 3.844671, 2.8 Point114 = 3.846051, 2.6 Point115 = 3.847356, 2.4 Point116 = 3.848576, 2.2 Point117 = 3.849694, 2 Point118 = 3.850699, 1.8 Point119 = 3.851581, 1.6 Point120 = 3.852326, 1.4 ;---------------------------------------------------------------------- ; Individual Cernox curves [CerSnTophat] SerialNo = 19913 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 45 Point1 = 1.60396, 325.0 Point2 = 1.60501, 324.0 Point3 = 1.62124, 309.0 Point4 = 1.63852, 294.0 Point5 = 1.65695, 279.0 Point6 = 1.67662, 264.0 Point7 = 1.69766, 249.0 Point8 = 1.72021, 234.0 Point9 = 1.74440, 219.0 Point10 = 1.77043, 204.0 Point11 = 1.79852, 189.0 Point12 = 1.82892, 174.0 Point13 = 1.86199, 159.0 Point14 = 1.89813, 144.0 Point15 = 1.93790, 129.0 Point16 = 1.98202, 114.0 Point17 = 2.03160, 99.0 Point18 = 2.08832, 84.0 Point19 = 2.15492, 69.0 Point20 = 2.20420, 59.5 Point21 = 2.23608, 54.0 Point22 = 2.26771, 49.0 Point23 = 2.30238, 44.0 Point24 = 2.33757, 39.4 Point25 = 2.37217, 35.3 Point26 = 2.40661, 31.6 Point27 = 2.44157, 28.2 Point28 = 2.47566, 25.2 Point29 = 2.51090, 22.4 Point30 = 2.54446, 20.0 Point31 = 2.57873, 17.8 Point32 = 2.61363, 15.8 Point33 = 2.64693, 14.1 Point34 = 2.68225, 12.5 Point35 = 2.71465, 11.2 Point36 = 2.74840, 10.0 Point37 = 2.78016, 9.0 Point38 = 2.81239, 8.1 Point39 = 2.84477, 7.3 Point40 = 2.87678, 6.6 Point41 = 2.90767, 6.0 Point42 = 2.94260, 5.4 Point43 = 2.97560, 4.9 Point44 = 3.01313, 4.4 Point45 = 3.04736, 4.0 [CerSnInPb] SerialNo = 19920 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 46 Point1 = 1.62051, 325 Point2 = 1.62148, 324 Point3 = 1.62537, 320 Point4 = 1.64058, 305 Point5 = 1.65684, 290 Point6 = 1.67425, 275 Point7 = 1.69292, 260 Point8 = 1.71296, 245 Point9 = 1.73453, 230 Point10 = 1.75778, 215 Point11 = 1.78289, 200 Point12 = 1.81009, 185 Point13 = 1.83967, 170 Point14 = 1.87197, 155 Point15 = 1.90744, 140 Point16 = 1.94667, 125 Point17 = 1.99041, 110 Point18 = 2.03992, 95 Point19 = 2.09706, 80 Point20 = 2.16491, 65 Point21 = 2.20437, 57.5 Point22 = 2.24883, 50 Point23 = 2.27782, 45.6 Point24 = 2.314, 40.6 Point25 = 2.34681, 36.5 Point26 = 2.38124, 32.6 Point27 = 2.4144, 29.2 Point28 = 2.44888, 26 Point29 = 2.46874, 24.3 Point30 = 2.4898, 22.6 Point31 = 2.52804, 19.8 Point32 = 2.55861, 17.8 Point33 = 2.59269, 15.8 Point34 = 2.62519, 14.1 Point35 = 2.65736, 12.6 Point36 = 2.69122, 11.2 Point37 = 2.7241, 10 Point38 = 2.75503, 9 Point39 = 2.78643, 8.1 Point40 = 2.81798, 7.3 Point41 = 2.84917, 6.6 Point42 = 2.87928, 6 Point43 = 2.9133, 5.4 Point44 = 2.94541, 4.9 Point45 = 2.98185, 4.4 Point46 = 3.01507, 4 [CerAvTophat] SerialNo = 19426 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 45 Point1 = 1.60273, 325 Point2 = 1.60375, 324 Point3 = 1.61962, 309 Point4 = 1.63654, 294 Point5 = 1.65459, 279 Point6 = 1.67388, 264 Point7 = 1.69452, 249 Point8 = 1.71666, 234 Point9 = 1.74045, 219 Point10 = 1.76606, 204 Point11 = 1.79371, 189 Point12 = 1.82367, 174 Point13 = 1.85628, 159 Point14 = 1.89194, 144 Point15 = 1.93122, 129 Point16 = 1.97483, 114 Point17 = 2.02385, 99 Point18 = 2.07997, 84 Point19 = 2.14592, 69 Point20 = 2.19476, 59.5 Point21 = 2.22637, 54 Point22 = 2.25774, 49 Point23 = 2.29215, 44 Point24 = 2.32707, 39.4 Point25 = 2.36143, 35.3 Point26 = 2.39563, 31.6 Point27 = 2.43035, 28.2 Point28 = 2.46421, 25.2 Point29 = 2.49917, 22.4 Point30 = 2.53253, 20 Point31 = 2.56661, 17.8 Point32 = 2.60132, 15.8 Point33 = 2.63444, 14.1 Point34 = 2.66724, 12.6 Point35 = 2.70179, 11.2 Point36 = 2.73535, 10 Point37 = 2.76696, 9 Point38 = 2.79906, 8.1 Point39 = 2.83133, 7.3 Point40 = 2.86326, 6.6 Point41 = 2.89408, 6 Point42 = 2.92892, 5.4 Point43 = 2.96179, 4.9 Point44 = 2.99908, 4.4 Point45 = 3.03303, 4 [CerAvInPb] SerialNo = 19948 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 45 Point1 = 1.56948, 325 Point2 = 1.57047, 324 Point3 = 1.5826, 312 Point4 = 1.59864, 297 Point5 = 1.61574, 282 Point6 = 1.63401, 267 Point7 = 1.65354, 252 Point8 = 1.67445, 237 Point9 = 1.6969, 222 Point10 = 1.72103, 207 Point11 = 1.74704, 192 Point12 = 1.77518, 177 Point13 = 1.80573, 162 Point14 = 1.83906, 147 Point15 = 1.87564, 132 Point16 = 1.9161, 117 Point17 = 1.96135, 102 Point18 = 2.01283, 87 Point19 = 2.07278, 72 Point20 = 2.12424, 61 Point21 = 2.15315, 55.5 Point22 = 2.18472, 50 Point23 = 2.21622, 45 Point24 = 2.24805, 40.4 Point25 = 2.28001, 36.2 Point26 = 2.31184, 32.4 Point27 = 2.34414, 28.9 Point28 = 2.3757, 25.8 Point29 = 2.40721, 23 Point30 = 2.43834, 20.5 Point31 = 2.47018, 18.2 Point32 = 2.50109, 16.2 Point33 = 2.53222, 14.4 Point34 = 2.56332, 12.8 Point35 = 2.59399, 11.4 Point36 = 2.62624, 10.1 Point37 = 2.65725, 9 Point38 = 2.68594, 8.1 Point39 = 2.71851, 7.2 Point40 = 2.7473, 6.5 Point41 = 2.77999, 5.8 Point42 = 2.80637, 5.3 Point43 = 2.83594, 4.8 Point44 = 2.86243, 4.4 Point45 = 2.8921, 4 [CerALeadPr] SerialNo = 20479 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 48 Point1 = 1.71255, 325 Point2 = 1.7137, 324 Point3 = 1.72552, 314 Point4 = 1.74418, 299 Point5 = 1.76405, 284 Point6 = 1.78526, 269 Point7 = 1.80794, 254 Point8 = 1.83224, 239 Point9 = 1.85834, 224 Point10 = 1.88645, 209 Point11 = 1.91682, 194 Point12 = 1.94975, 179 Point13 = 1.98562, 164 Point14 = 2.02492, 149 Point15 = 2.0683, 134 Point16 = 2.11666, 119 Point17 = 2.17124, 104 Point18 = 2.23392, 89 Point19 = 2.3078, 74 Point20 = 2.37836, 62 Point21 = 2.41888, 56 Point22 = 2.46395, 50 Point23 = 2.50579, 45 Point24 = 2.55151, 40.1 Point25 = 2.5953, 35.9 Point26 = 2.64069, 32 Point27 = 2.68486, 28.6 Point28 = 2.72826, 25.6 Point29 = 2.76832, 23.1 Point30 = 2.81505, 20.5 Point31 = 2.85746, 18.4 Point32 = 2.90286, 16.4 Point33 = 2.94637, 14.7 Point34 = 2.98964, 13.2 Point35 = 3.03189, 11.9 Point36 = 3.07594, 10.7 Point37 = 3.1174, 9.7 Point38 = 3.15945, 8.8 Point39 = 3.20163, 8 Point40 = 3.24323, 7.3 Point41 = 3.28327, 6.7 Point42 = 3.32839, 6.1 Point43 = 3.37085, 5.6 Point44 = 3.40874, 5.2 Point45 = 3.4509, 4.8 Point46 = 3.48591, 4.5 Point47 = 3.53821, 4.1 Point48 = 3.55248, 4 [CerALeadSe] SerialNo = 19910 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 46 Point1 = 1.61554, 325 Point2 = 1.61655, 324 Point3 = 1.62473, 316 Point4 = 1.64084, 301 Point5 = 1.65805, 286 Point6 = 1.67645, 271 Point7 = 1.69617, 256 Point8 = 1.71733, 241 Point9 = 1.74007, 226 Point10 = 1.76457, 211 Point11 = 1.79102, 196 Point12 = 1.81966, 181 Point13 = 1.85079, 166 Point14 = 1.88478, 151 Point15 = 1.92213, 136 Point16 = 1.96346, 121 Point17 = 2.00968, 106 Point18 = 2.06216, 91 Point19 = 2.12303, 76 Point20 = 2.18532, 63 Point21 = 2.22098, 56.5 Point22 = 2.26057, 50 Point23 = 2.29292, 45.2 Point24 = 2.32853, 40.4 Point25 = 2.3621, 36.3 Point26 = 2.39637, 32.5 Point27 = 2.4302, 29.1 Point28 = 2.46422, 26 Point29 = 2.49816, 23.2 Point30 = 2.53177, 20.7 Point31 = 2.56622, 18.4 Point32 = 2.59968, 16.4 Point33 = 2.63342, 14.6 Point34 = 2.66714, 13 Point35 = 2.70039, 11.6 Point36 = 2.73249, 10.4 Point37 = 2.76572, 9.3 Point38 = 2.80002, 8.3 Point39 = 2.8311, 7.5 Point40 = 2.86636, 6.7 Point41 = 2.89631, 6.1 Point42 = 2.93008, 5.5 Point43 = 2.96188, 5 Point44 = 2.99033, 4.6 Point45 = 3.03065, 4.1 Point46 = 3.03948, 4 [CerBLeadPr] SerialNo = 20464 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 47 Point1 = 1.68153, 325 Point2 = 1.6826, 324 Point3 = 1.69917, 309 Point4 = 1.71683, 294 Point5 = 1.73568, 279 Point6 = 1.75584, 264 Point7 = 1.77744, 249 Point8 = 1.80064, 234 Point9 = 1.8256, 219 Point10 = 1.85252, 204 Point11 = 1.88166, 189 Point12 = 1.91331, 174 Point13 = 1.94787, 159 Point14 = 1.98584, 144 Point15 = 2.02786, 129 Point16 = 2.07484, 114 Point17 = 2.12811, 99 Point18 = 2.18972, 84 Point19 = 2.26304, 69 Point20 = 2.31803, 59.5 Point21 = 2.37148, 51.5 Point22 = 2.4092, 46.5 Point23 = 2.45112, 41.5 Point24 = 2.49229, 37.1 Point25 = 2.53295, 33.2 Point26 = 2.57354, 29.7 Point27 = 2.61485, 26.5 Point28 = 2.64168, 24.6 Point29 = 2.66738, 22.9 Point30 = 2.71438, 20.1 Point31 = 2.75222, 18.1 Point32 = 2.79467, 16.1 Point33 = 2.83289, 14.5 Point34 = 2.87317, 13 Point35 = 2.91255, 11.7 Point36 = 2.95366, 10.5 Point37 = 2.99244, 9.5 Point38 = 3.03184, 8.6 Point39 = 3.07146, 7.8 Point40 = 3.11064, 7.1 Point41 = 3.14846, 6.5 Point42 = 3.18369, 6 Point43 = 3.22309, 5.5 Point44 = 3.25828, 5.1 Point45 = 3.29749, 4.7 Point46 = 3.34165, 4.3 Point47 = 3.37886, 4 [CerBLeadSe] SerialNo = 19919 Format = 4 LimitKelvin = 325 Coefficient = 1 PointCount = 45 Point1 = 1.61897, 325 Point2 = 1.62004, 324 Point3 = 1.63661, 309 Point4 = 1.65424, 294 Point5 = 1.67303, 279 Point6 = 1.69309, 264 Point7 = 1.71455, 249 Point8 = 1.73754, 234 Point9 = 1.76222, 219 Point10 = 1.78879, 204 Point11 = 1.81744, 189 Point12 = 1.84847, 174 Point13 = 1.8822, 159 Point14 = 1.91908, 144 Point15 = 1.95968, 129 Point16 = 2.00476, 114 Point17 = 2.05539, 99 Point18 = 2.11332, 84 Point19 = 2.18135, 69 Point20 = 2.23168, 59.5 Point21 = 2.26423, 54 Point22 = 2.29654, 49 Point23 = 2.33196, 44 Point24 = 2.36791, 39.4 Point25 = 2.40327, 35.3 Point26 = 2.43848, 31.6 Point27 = 2.47422, 28.2 Point28 = 2.50906, 25.2 Point29 = 2.54502, 22.4 Point30 = 2.57933, 20 Point31 = 2.61435, 17.8 Point32 = 2.65001, 15.8 Point33 = 2.68404, 14.1 Point34 = 2.72013, 12.5 Point35 = 2.75323, 11.2 Point36 = 2.78771, 10 Point37 = 2.82016, 9 Point38 = 2.8531, 8.1 Point39 = 2.88619, 7.3 Point40 = 2.91891, 6.6 Point41 = 2.9505, 6 Point42 = 2.98622, 5.4 Point43 = 3.01998, 4.9 Point44 = 3.05837, 4.4 Point45 = 3.09335, 4 ;---------------------------------------------------------------------- ; Individual ROX curves ; First - coils ; [ROX_CoilA] SerialNo = 40200 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.10548, 4.00 Point2 = 3.08823, 5.00 Point3 = 3.07573, 6.00 Point4 = 3.06618, 7.00 Point5 = 3.05862, 8.00 Point6 = 3.05247, 9.00 Point7 = 3.04734, 10.00 Point8 = 3.04299, 11.00 Point9 = 3.03925, 12.00 Point10 = 3.036, 13.00 Point11 = 3.03313, 14.00 Point12 = 3.03059, 15.00 Point13 = 3.02832, 16.00 Point14 = 3.02628, 17.00 Point15 = 3.02443, 18.00 Point16 = 3.02274, 19.00 Point17 = 3.0212, 20.00 Point18 = 3.01978, 21.00 Point19 = 3.01847, 22.00 Point20 = 3.01726, 23.00 Point21 = 3.01613, 24.00 Point22 = 3.01508, 25.00 Point23 = 3.0141, 26.00 Point24 = 3.01319, 27.00 Point25 = 3.01233, 28.00 Point26 = 3.01152, 29.00 Point27 = 3.01075, 30.00 Point28 = 3.01003, 31.00 Point29 = 3.00935, 32.00 Point30 = 3.0087, 33.00 Point31 = 3.00808, 34.00 Point32 = 3.0075, 35.00 Point33 = 3.00694, 36.00 Point34 = 3.00641, 37.00 Point35 = 3.0059, 38.00 Point36 = 3.00542, 39.00 Point37 = 3.00496, 40.00 [ROX_CoilB] SerialNo = 40183 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.09447, 4.00 Point2 = 3.07855, 5.00 Point3 = 3.06703, 6.00 Point4 = 3.05826, 7.00 Point5 = 3.05132, 8.00 Point6 = 3.04568, 9.00 Point7 = 3.04098, 10.00 Point8 = 3.03701, 11.00 Point9 = 3.03359, 12.00 Point10 = 3.03062, 13.00 Point11 = 3.02801, 14.00 Point12 = 3.02569, 15.00 Point13 = 3.02362, 16.00 Point14 = 3.02176, 17.00 Point15 = 3.02007, 18.00 Point16 = 3.01853, 19.00 Point17 = 3.01713, 20.00 Point18 = 3.01584, 21.00 Point19 = 3.01465, 22.00 Point20 = 3.01355, 23.00 Point21 = 3.01252, 24.00 Point22 = 3.01157, 25.00 Point23 = 3.01068, 26.00 Point24 = 3.00984, 27.00 Point25 = 3.00906, 28.00 Point26 = 3.00833, 29.00 Point27 = 3.00763, 30.00 Point28 = 3.00698, 31.00 Point29 = 3.00636, 32.00 Point30 = 3.00577, 33.00 Point31 = 3.00521, 34.00 Point32 = 3.00468, 35.00 Point33 = 3.00417, 36.00 Point34 = 3.00369, 37.00 Point35 = 3.00323, 38.00 Point36 = 3.00279, 39.00 Point37 = 3.00237, 40.00 [ROX_CoilC] SerialNo = 40182 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.10746, 4.00 Point2 = 3.08966, 5.00 Point3 = 3.07689, 6.00 Point4 = 3.06722, 7.00 Point5 = 3.05961, 8.00 Point6 = 3.05346, 9.00 Point7 = 3.04837, 10.00 Point8 = 3.04408, 11.00 Point9 = 3.0404, 12.00 Point10 = 3.03722, 13.00 Point11 = 3.03444, 14.00 Point12 = 3.03197, 15.00 Point13 = 3.02978, 16.00 Point14 = 3.02781, 17.00 Point15 = 3.02603, 18.00 Point16 = 3.02442, 19.00 Point17 = 3.02295, 20.00 Point18 = 3.0216, 21.00 Point19 = 3.02036, 22.00 Point20 = 3.01921, 23.00 Point21 = 3.01815, 24.00 Point22 = 3.01716, 25.00 Point23 = 3.01624, 26.00 Point24 = 3.01538, 27.00 Point25 = 3.01458, 28.00 Point26 = 3.01382, 29.00 Point27 = 3.01311, 30.00 Point28 = 3.01244, 31.00 Point29 = 3.01181, 32.00 Point30 = 3.01121, 33.00 Point31 = 3.01064, 34.00 Point32 = 3.0101, 35.00 Point33 = 3.00958, 36.00 Point34 = 3.0091, 37.00 Point35 = 3.00863, 38.00 Point36 = 3.00819, 39.00 Point37 = 3.00776, 40.00 [ROX_CoilD] SerialNo = 40185 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.0955, 4.00 Point2 = 3.0793, 5.00 Point3 = 3.06759, 6.00 Point4 = 3.05869, 7.00 Point5 = 3.05166, 8.00 Point6 = 3.04594, 9.00 Point7 = 3.04119, 10.00 Point8 = 3.03717, 11.00 Point9 = 3.03372, 12.00 Point10 = 3.03072, 13.00 Point11 = 3.02808, 14.00 Point12 = 3.02575, 15.00 Point13 = 3.02366, 16.00 Point14 = 3.02179, 17.00 Point15 = 3.02009, 18.00 Point16 = 3.01854, 19.00 Point17 = 3.01713, 20.00 Point18 = 3.01583, 21.00 Point19 = 3.01464, 22.00 Point20 = 3.01353, 23.00 Point21 = 3.01251, 24.00 Point22 = 3.01155, 25.00 Point23 = 3.01066, 26.00 Point24 = 3.00982, 27.00 Point25 = 3.00904, 28.00 Point26 = 3.0083, 29.00 Point27 = 3.00761, 30.00 Point28 = 3.00695, 31.00 Point29 = 3.00633, 32.00 Point30 = 3.00574, 33.00 Point31 = 3.00518, 34.00 Point32 = 3.00465, 35.00 Point33 = 3.00415, 36.00 Point34 = 3.00367, 37.00 Point35 = 3.00321, 38.00 Point36 = 3.00277, 39.00 Point37 = 3.00235, 40.00 [ROX_CoilE] SerialNo = 40217 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.0967, 4.00 Point2 = 3.08082, 5.00 Point3 = 3.06935, 6.00 Point4 = 3.06061, 7.00 Point5 = 3.05371, 8.00 Point6 = 3.04809, 9.00 Point7 = 3.04342, 10.00 Point8 = 3.03946, 11.00 Point9 = 3.03606, 12.00 Point10 = 3.03311, 13.00 Point11 = 3.03051, 14.00 Point12 = 3.02821, 15.00 Point13 = 3.02615, 16.00 Point14 = 3.02429, 17.00 Point15 = 3.02262, 18.00 Point16 = 3.02109, 19.00 Point17 = 3.0197, 20.00 Point18 = 3.01841, 21.00 Point19 = 3.01723, 22.00 Point20 = 3.01614, 23.00 Point21 = 3.01512, 24.00 Point22 = 3.01418, 25.00 Point23 = 3.01329, 26.00 Point24 = 3.01246, 27.00 Point25 = 3.01169, 28.00 Point26 = 3.01096, 29.00 Point27 = 3.01027, 30.00 Point28 = 3.00962, 31.00 Point29 = 3.009, 32.00 Point30 = 3.00842, 33.00 Point31 = 3.00786, 34.00 Point32 = 3.00734, 35.00 Point33 = 3.00683, 36.00 Point34 = 3.00636, 37.00 Point35 = 3.0059, 38.00 Point36 = 3.00546, 39.00 Point37 = 3.00505, 40.00 [ROX_CoilF] SerialNo = 40189 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.09522, 4.00 Point2 = 3.07912, 5.00 Point3 = 3.06739, 6.00 Point4 = 3.05839, 7.00 Point5 = 3.05123, 8.00 Point6 = 3.04538, 9.00 Point7 = 3.04049, 10.00 Point8 = 3.03634, 11.00 Point9 = 3.03275, 12.00 Point10 = 3.02963, 13.00 Point11 = 3.02687, 14.00 Point12 = 3.02441, 15.00 Point13 = 3.02222, 16.00 Point14 = 3.02023, 17.00 Point15 = 3.01843, 18.00 Point16 = 3.01679, 19.00 Point17 = 3.01529, 20.00 Point18 = 3.0139, 21.00 Point19 = 3.01262, 22.00 Point20 = 3.01143, 23.00 Point21 = 3.01033, 24.00 Point22 = 3.0093, 25.00 Point23 = 3.00833, 26.00 Point24 = 3.00743, 27.00 Point25 = 3.00658, 28.00 Point26 = 3.00578, 29.00 Point27 = 3.00502, 30.00 Point28 = 3.00431, 31.00 Point29 = 3.00363, 32.00 Point30 = 3.00299, 33.00 Point31 = 3.00237, 34.00 Point32 = 3.00179, 35.00 Point33 = 3.00124, 36.00 Point34 = 3.00071, 37.00 Point35 = 3.0002, 38.00 Point36 = 2.99972, 39.00 Point37 = 2.99926, 40.00 [ROX_CoilG] SerialNo = 40212 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.09516, 4.00 Point2 = 3.07917, 5.00 Point3 = 3.06765, 6.00 Point4 = 3.05891, 7.00 Point5 = 3.05201, 8.00 Point6 = 3.04642, 9.00 Point7 = 3.04178, 10.00 Point8 = 3.03786, 11.00 Point9 = 3.03449, 12.00 Point10 = 3.03157, 13.00 Point11 = 3.02901, 14.00 Point12 = 3.02674, 15.00 Point13 = 3.02472, 16.00 Point14 = 3.0229, 17.00 Point15 = 3.02125, 18.00 Point16 = 3.01976, 19.00 Point17 = 3.01839, 20.00 Point18 = 3.01714, 21.00 Point19 = 3.01598, 22.00 Point20 = 3.01491, 23.00 Point21 = 3.01392, 24.00 Point22 = 3.013, 25.00 Point23 = 3.01214, 26.00 Point24 = 3.01133, 27.00 Point25 = 3.01058, 28.00 Point26 = 3.00987, 29.00 Point27 = 3.0092, 30.00 Point28 = 3.00857, 31.00 Point29 = 3.00797, 32.00 Point30 = 3.0074, 33.00 Point31 = 3.00687, 34.00 Point32 = 3.00636, 35.00 Point33 = 3.00587, 36.00 Point34 = 3.00541, 37.00 Point35 = 3.00497, 38.00 Point36 = 3.00455, 39.00 Point37 = 3.00415, 40.00 [ROX_CoilH] SerialNo = 40187 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.10658, 4.00 Point2 = 3.08889, 5.00 Point3 = 3.07621, 6.00 Point4 = 3.06661, 7.00 Point5 = 3.05908, 8.00 Point6 = 3.05298, 9.00 Point7 = 3.04793, 10.00 Point8 = 3.04368, 11.00 Point9 = 3.04005, 12.00 Point10 = 3.0369, 13.00 Point11 = 3.03414, 14.00 Point12 = 3.03171, 15.00 Point13 = 3.02954, 16.00 Point14 = 3.02759, 17.00 Point15 = 3.02583, 18.00 Point16 = 3.02424, 19.00 Point17 = 3.02278, 20.00 Point18 = 3.02145, 21.00 Point19 = 3.02023, 22.00 Point20 = 3.0191, 23.00 Point21 = 3.01805, 24.00 Point22 = 3.01707, 25.00 Point23 = 3.01616, 26.00 Point24 = 3.01532, 27.00 Point25 = 3.01452, 28.00 Point26 = 3.01378, 29.00 Point27 = 3.01307, 30.00 Point28 = 3.01241, 31.00 Point29 = 3.01179, 32.00 Point30 = 3.01119, 33.00 Point31 = 3.01063, 34.00 Point32 = 3.0101, 35.00 Point33 = 3.0096, 36.00 Point34 = 3.00911, 37.00 Point35 = 3.00865, 38.00 Point36 = 3.00822, 39.00 Point37 = 3.0078, 40.00 ;---------------------------------------------------------------------- ; Current Lead ROX ; [ROX_ALead] SerialNo = 40207 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.10678, 4.00 Point2 = 3.08971, 5.00 Point3 = 3.0774, 6.00 Point4 = 3.06804, 7.00 Point5 = 3.06065, 8.00 Point6 = 3.05466, 9.00 Point7 = 3.04968, 10.00 Point8 = 3.04547, 11.00 Point9 = 3.04186, 12.00 Point10 = 3.03872, 13.00 Point11 = 3.03597, 14.00 Point12 = 3.03353, 15.00 Point13 = 3.03135, 16.00 Point14 = 3.0294, 17.00 Point15 = 3.02763, 18.00 Point16 = 3.02602, 19.00 Point17 = 3.02455, 20.00 Point18 = 3.0232, 21.00 Point19 = 3.02196, 22.00 Point20 = 3.02081, 23.00 Point21 = 3.01974, 24.00 Point22 = 3.01875, 25.00 Point23 = 3.01782, 26.00 Point24 = 3.01696, 27.00 Point25 = 3.01615, 28.00 Point26 = 3.01538, 29.00 Point27 = 3.01466, 30.00 Point28 = 3.01398, 31.00 Point29 = 3.01334, 32.00 Point30 = 3.01273, 33.00 Point31 = 3.01215, 34.00 Point32 = 3.0116, 35.00 Point33 = 3.01108, 36.00 Point34 = 3.01059, 37.00 Point35 = 3.01011, 38.00 Point36 = 3.00966, 39.00 Point37 = 3.00922, 40.00 [ROX_BLead] SerialNo = 40204 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.0962, 4.00 Point2 = 3.07934, 5.00 Point3 = 3.06719, 6.00 Point4 = 3.05795, 7.00 Point5 = 3.05067, 8.00 Point6 = 3.04476, 9.00 Point7 = 3.03985, 10.00 Point8 = 3.03571, 11.00 Point9 = 3.03215, 12.00 Point10 = 3.02907, 13.00 Point11 = 3.02636, 14.00 Point12 = 3.02396, 15.00 Point13 = 3.02181, 16.00 Point14 = 3.01989, 17.00 Point15 = 3.01815, 18.00 Point16 = 3.01657, 19.00 Point17 = 3.01512, 20.00 Point18 = 3.0138, 21.00 Point19 = 3.01257, 22.00 Point20 = 3.01144, 23.00 Point21 = 3.0104, 24.00 Point22 = 3.00942, 25.00 Point23 = 3.00851, 26.00 Point24 = 3.00766, 27.00 Point25 = 3.00686, 28.00 Point26 = 3.00611, 29.00 Point27 = 3.0054, 30.00 Point28 = 3.00473, 31.00 Point29 = 3.0041, 32.00 Point30 = 3.00351, 33.00 Point31 = 3.00294, 34.00 Point32 = 3.0024, 35.00 Point33 = 3.00189, 36.00 Point34 = 3.0014, 37.00 Point35 = 3.00093, 38.00 Point36 = 3.00049, 39.00 Point37 = 3.00006, 40.00 ;---------------------------------------------------------------------- ; He lines ; [ROX_CHP] SerialNo = 40201 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 39 Point1 = 3.15698, 2.00 Point2 = 3.11634, 3.00 Point3 = 3.09248, 4.00 Point4 = 3.07651, 5.00 Point5 = 3.06497, 6.00 Point6 = 3.05617, 7.00 Point7 = 3.04921, 8.00 Point8 = 3.04354, 9.00 Point9 = 3.03883, 10.00 Point10 = 3.03484, 11.00 Point11 = 3.03141, 12.00 Point12 = 3.02842, 13.00 Point13 = 3.0258, 14.00 Point14 = 3.02347, 15.00 Point15 = 3.02139, 16.00 Point16 = 3.01952, 17.00 Point17 = 3.01783, 18.00 Point18 = 3.01628, 19.00 Point19 = 3.01487, 20.00 Point20 = 3.01357, 21.00 Point21 = 3.01238, 22.00 Point22 = 3.01127, 23.00 Point23 = 3.01024, 24.00 Point24 = 3.00928, 25.00 Point25 = 3.00839, 26.00 Point26 = 3.00755, 27.00 Point27 = 3.00676, 28.00 Point28 = 3.00602, 29.00 Point29 = 3.00532, 30.00 Point30 = 3.00466, 31.00 Point31 = 3.00404, 32.00 Point32 = 3.00345, 33.00 Point33 = 3.00289, 34.00 Point34 = 3.00235, 35.00 Point35 = 3.00184, 36.00 Point36 = 3.00136, 37.00 Point37 = 3.0009, 38.00 Point38 = 3.00045, 39.00 Point39 = 3.00003, 40.00 [ROX_CHS] SerialNo = 40208 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.10798, 4.00 Point2 = 3.09006, 5.00 Point3 = 3.07714, 6.00 Point4 = 3.06732, 7.00 Point5 = 3.05957, 8.00 Point6 = 3.05328, 9.00 Point7 = 3.04806, 10.00 Point8 = 3.04365, 11.00 Point9 = 3.03986, 12.00 Point10 = 3.03658, 13.00 Point11 = 3.03369, 14.00 Point12 = 3.03114, 15.00 Point13 = 3.02886, 16.00 Point14 = 3.02681, 17.00 Point15 = 3.02496, 18.00 Point16 = 3.02328, 19.00 Point17 = 3.02174, 20.00 Point18 = 3.02033, 21.00 Point19 = 3.01903, 22.00 Point20 = 3.01783, 23.00 Point21 = 3.01671, 24.00 Point22 = 3.01567, 25.00 Point23 = 3.01471, 26.00 Point24 = 3.0138, 27.00 Point25 = 3.01295, 28.00 Point26 = 3.01215, 29.00 Point27 = 3.0114, 30.00 Point28 = 3.01069, 31.00 Point29 = 3.01002, 32.00 Point30 = 3.00939, 33.00 Point31 = 3.00878, 34.00 Point32 = 3.00821, 35.00 Point33 = 3.00767, 36.00 Point34 = 3.00715, 37.00 Point35 = 3.00665, 38.00 Point36 = 3.00618, 39.00 Point37 = 3.00573, 40.00 ;---------------------------------------------------------------------- ; Helium: bus inlet ; [ROX_LHF] SerialNo = 40203 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.09654, 4.00 Point2 = 3.07986, 5.00 Point3 = 3.06783, 6.00 Point4 = 3.05868, 7.00 Point5 = 3.05146, 8.00 Point6 = 3.04559, 9.00 Point7 = 3.04072, 10.00 Point8 = 3.03659, 11.00 Point9 = 3.03306, 12.00 Point10 = 3.02998, 13.00 Point11 = 3.02729, 14.00 Point12 = 3.0249, 15.00 Point13 = 3.02276, 16.00 Point14 = 3.02084, 17.00 Point15 = 3.01911, 18.00 Point16 = 3.01753, 19.00 Point17 = 3.01609, 20.00 Point18 = 3.01476, 21.00 Point19 = 3.01354, 22.00 Point20 = 3.01241, 23.00 Point21 = 3.01137, 24.00 Point22 = 3.01039, 25.00 Point23 = 3.00948, 26.00 Point24 = 3.00863, 27.00 Point25 = 3.00783, 28.00 Point26 = 3.00708, 29.00 Point27 = 3.00637, 30.00 Point28 = 3.0057, 31.00 Point29 = 3.00507, 32.00 Point30 = 3.00447, 33.00 Point31 = 3.00391, 34.00 Point32 = 3.00337, 35.00 Point33 = 3.00285, 36.00 Point34 = 3.00236, 37.00 Point35 = 3.00189, 38.00 Point36 = 3.00145, 39.00 Point37 = 3.00102, 40.00 ; Helium: bus outlet [ROX_LHR] SerialNo = 40215 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.09754, 4.00 Point2 = 3.08111, 5.00 Point3 = 3.06929, 6.00 Point4 = 3.06031, 7.00 Point5 = 3.05323, 8.00 Point6 = 3.04749, 9.00 Point7 = 3.04272, 10.00 Point8 = 3.0387, 11.00 Point9 = 3.03525, 12.00 Point10 = 3.03225, 13.00 Point11 = 3.02962, 14.00 Point12 = 3.0273, 15.00 Point13 = 3.02522, 16.00 Point14 = 3.02335, 17.00 Point15 = 3.02167, 18.00 Point16 = 3.02013, 19.00 Point17 = 3.01873, 20.00 Point18 = 3.01745, 21.00 Point19 = 3.01626, 22.00 Point20 = 3.01517, 23.00 Point21 = 3.01415, 24.00 Point22 = 3.01321, 25.00 Point23 = 3.01233, 26.00 Point24 = 3.0115, 27.00 Point25 = 3.01073, 28.00 Point26 = 3.01, 29.00 Point27 = 3.00932, 30.00 Point28 = 3.00867, 31.00 Point29 = 3.00806, 32.00 Point30 = 3.00748, 33.00 Point31 = 3.00693, 34.00 Point32 = 3.00641, 35.00 Point33 = 3.00591, 36.00 Point34 = 3.00544, 37.00 Point35 = 3.00499, 38.00 Point36 = 3.00456, 39.00 Point37 = 3.00415, 40.00 ; ROX Maximum, minimum (SEW) ; [ROX_MAXCC] SerialNo = 40182 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.10843, 4.00 Point2 = 3.09059, 5.00 Point3 = 3.07783, 6.00 Point4 = 3.06821, 7.00 Point5 = 3.06067, 8.00 Point6 = 3.05459, 9.00 Point7 = 3.04956, 10.00 Point8 = 3.04533, 11.00 Point9 = 3.04172, 12.00 Point10 = 3.0386, 13.00 Point11 = 3.03587, 14.00 Point12 = 3.03346, 15.00 Point13 = 3.03132, 16.00 Point14 = 3.0294, 17.00 Point15 = 3.02766, 18.00 Point16 = 3.0261, 19.00 Point17 = 3.02466, 20.00 Point18 = 3.02336, 21.00 Point19 = 3.02215, 22.00 Point20 = 3.02104, 23.00 Point21 = 3.02001, 24.00 Point22 = 3.01906, 25.00 Point23 = 3.01817, 26.00 Point24 = 3.01734, 27.00 Point25 = 3.01656, 28.00 Point26 = 3.01583, 29.00 Point27 = 3.01515, 30.00 Point28 = 3.0145, 31.00 Point29 = 3.01389, 32.00 Point30 = 3.01332, 33.00 Point31 = 3.01277, 34.00 Point32 = 3.01225, 35.00 Point33 = 3.01176, 36.00 Point34 = 3.01129, 37.00 Point35 = 3.01084, 38.00 Point36 = 3.01042, 39.00 Point37 = 3.01001, 40.00 [ROX_MINCC] SerialNo = 40182 Format = 4 LimitKelvin = 40 Coefficient = 1 PointCount = 37 Point1 = 3.09248, 4.00 Point2 = 3.07651, 5.00 Point3 = 3.06497, 6.00 Point4 = 3.05617, 7.00 Point5 = 3.04921, 8.00 Point6 = 3.04354, 9.00 Point7 = 3.03883, 10.00 Point8 = 3.03484, 11.00 Point9 = 3.03141, 12.00 Point10 = 3.02842, 13.00 Point11 = 3.0258, 14.00 Point12 = 3.02347, 15.00 Point13 = 3.02139, 16.00 Point14 = 3.01952, 17.00 Point15 = 3.01783, 18.00 Point16 = 3.01628, 19.00 Point17 = 3.01487, 20.00 Point18 = 3.01357, 21.00 Point19 = 3.01238, 22.00 Point20 = 3.01127, 23.00 Point21 = 3.01024, 24.00 Point22 = 3.00928, 25.00 Point23 = 3.00839, 26.00 Point24 = 3.00755, 27.00 Point25 = 3.00676, 28.00 Point26 = 3.00602, 29.00 Point27 = 3.00532, 30.00 Point28 = 3.00466, 31.00 Point29 = 3.00404, 32.00 Point30 = 3.00345, 33.00 Point31 = 3.00289, 34.00 Point32 = 3.00235, 35.00 Point33 = 3.00184, 36.00 Point34 = 3.00136, 37.00 Point35 = 3.0009, 38.00 Point36 = 3.00045, 39.00 Point37 = 3.00003, 40.00 ;---------------------------------------------------------------------- [PT100_Curve] ; User-defined PT-100 temperature curve ; See [Rox_Curve] section for details on keys SerialNo = PT100 Format = 3 LimitKelvin = 300 Coefficient = 2 PointCount = 38 Point1 = 3.70, 30 Point2 = 6.70, 40 Point3 = 10.30, 50 Point4 = 14.30, 60 Point5 = 18.30, 70 Point6 = 22.50, 80 Point7 = 26.70, 90 Point8 = 30.90, 100 Point9 = 35.00, 110 Point10 = 39.10, 120 Point11 = 43.20, 130 Point12 = 47.30, 140 Point13 = 51.40, 150 Point14 = 55.40, 160 Point15 = 59.40, 170 Point16 = 63.40, 180 Point17 = 67.40, 190 Point18 = 71.40, 200 Point19 = 75.30, 210 Point20 = 79.30, 220 Point21 = 83.20, 230 Point22 = 87.10, 240 Point23 = 91.10, 250 Point24 = 94.90, 260 Point25 = 98.80, 270 Point26 = 102.70, 280 Point27 = 106.50, 290 Point28 = 110.40, 300 Point29 = 114.32, 310 Point30 = 118.18, 320 Point31 = 122.03, 330 Point32 = 125.87, 340 Point33 = 129.69, 350 Point34 = 133.51, 360 Point35 = 137.31, 370 Point36 = 141.10, 380 Point37 = 144.88, 390 Point38 = 148.65, 400 ; ;---------------------------------------------------------------------- [PLC] ; ; Specifies the ethernet hardware address of our PLC. This string is ; available from the UDP/IP details in the NETEDIT program provided by ; AutomationDirect (a copy should be in the same directory as this file) ; or from the DirectSoft32 programming application's PLC/LinkSetup menu ; option (click on the "Edit" button in the pop-up dialog and select the ; "Port" tab, hardware address appears in the 6 "Ethernet" panels). ; HardwareAddress = 00-e0-62-60-08-d7 ; ; Minimum time (in msec) service should wait between writes to PLC ; (in some installations PLC gets corrupted program errors if value ; isn't at least 200 msec) ; ; MinCCMmSec = 10 MinCCMmSec = 100 ; ; Specifies the (octal) V memory address of the 16-bit register the ; service should use for keep-alive processing. A bit in this register ; (specified by KeepAliveBitNumber, below) will be periodically toggled ; to inform the PLC that the service is up and running. To skip ; keep-alives, leave KeepAliveAddress address blank or comment it out. ; ; For 405 PLCs "C" outputs appear in V memory starting at octal address ; 40600, see the AppxD.pdf file in this directory for details. ; ; The PLC expects to find the "KeepAlive Toggle" in C600. That maps to ; the LSB (bit 0) of V40630 ; KeepAliveAddress = 40630 ; ; Specifies the (octal) bit number (LSB=0, MSB=17) in the register ; specifed by KeepAliveAddress to be toggled by keep-alive processing. ; If no entry is specified, 0 will be used. ; ; NOTE: To toggle the bit, the entire 16-bit register must be read in, ; the bit in question AND-ed out or OR-ed in, and then the whole ; register written back out again. It may be desirable to allocate ; an entire register to the keep-alive bit, so that the state of ; other bits in the register are not a concern. ; KeepAliveBitNumber = 0 ;---------------------------------------------------------------------- [Monitor1] ; ; Port data ; LakeShore 218's use 9600,O,7,1 by default ; Port = COM3 BaudRate = 9600 Parity = O DataBits = 7 StopBits = 1 ; ; Substring that must be somewhere in the device's reply to a *IDN? ; command, to verify that the correct type of device is attached (also ; verifies that communication is working). ; IDSubString = LSCI,MODEL218 ; ; Command to send to the device to read all inputs. ; KRDG? asks for all readings in degrees Kelvin. ; PollAllCmd = KRDG? ; ; Channel names (not used by the service, just for display purposes in ; the TempDisplay application). ; ChanName1 = Temp 1:1 ChanName2 = Temp 1:2 ChanName3 = Temp 1:3 ChanName4 = Temp 1:4 ChanName5 = Temp 1:5 ChanName6 = Temp 1:6 ChanName7 = Temp 1:7 ChanName8 = Temp 1:8 ; ; Name of user-defined temperature curve to assign to each input. Curves ; are defined in separate sections on this INI file, see the [ROX_Curve] ; section for an example. ; TempCurve1 = CerBLeadPr TempCurve2 = CerBLeadSe TempCurve3 = CerALeadPr TempCurve4 = CerALeadSe TempCurve5 = CerSnInPb TempCurve6 = CerSnTophat TempCurve7 = CerAvInPb TempCurve8 = CerAvTophat ; ; Starting memory addresses in the PLC to write each channel's data to ; (each data point uses two words for an IEEE 4-byte real). Octal ; representation of addresses is required. Any channel can be disabled ; by commenting-out the appropriate entry or by leaving it blank. ; PLCAddr1 = 10000 PLCAddr2 = 10002 PLCAddr3 = 10004 PLCAddr4 = 10006 PLCAddr5 = 10010 PLCAddr6 = 10012 PLCAddr7 = 10014 PLCAddr8 = 10016 ; ; User configuration strings. These are sent to the temperature ; monitor as part of the configuration process when the service ; is started. ; ; CfgStrCount : number of user config strings ; CfgStr1..CfgStrN : text of config strings to send ; ; Any number of config strings may be used, no upper limit exists. ; A full list of commands for a LakeShore 218 temperature monitor can ; be found in 218V1.6.PDF, which should be in the same directory as ; this file. ; ; At a minimum, CfgStr entries should be included that set the input ; temperature probe type for the two input banks, using the INTYPE ; command. ; ; The service configures each temperature monitor as follows: ; ; 1. Sets monitor to default values via "DFLT 99" command ; (then waits 1.5 seconds for monitor to complete reset) ; 2. Sets monitor date/time to current date/time ; 3. "Blanks" the 8 input displays ; 4. Programs in temperature curves ; (waits 1 second after each curve, to allow monitor to process) ; 5. Sets 8 input displays to show degrees K ; -> 6. Sends user configuration strings ; 7. Assigns temperature curves to inputs ; ; Temperature curves are assigned LAST, so that INTYPE commands in the ; user configuration section here can properly set the input types of ; the A and B input banks. ; CfgStrCount = 2 ; ; set 'A' inputs (1-4) as Cernox ; 0 = 2.5V Diode 2 = 250 ohm Platinum 4 = 5k ohm Platinum ; 1 = 7.5V Diode 3 = 500 ohm Platinum 5 = Cernox CfgStr1 = INTYPE A,5 ; ; set 'B' inputs (5-8) as Cernox ; (inputs 5-8 not currently used on this monitor anyway) ; 0 = 2.5V Diode 2 = 250 ohm Platinum 4 = 5k ohm Platinum ; 1 = 7.5V Diode 3 = 500 ohm Platinum 5 = Cernox CfgStr2 = INTYPE B,5 ;---------------------------------------------------------------------- [Monitor2] Port = COM4 BaudRate = 9600 Parity = O DataBits = 7 StopBits = 1 IDSubString = LSCI,MODEL218 PollAllCmd = KRDG? ChanName1 = Temp 2:1 ChanName2 = Temp 2:2 ChanName3 = Temp 2:3 ChanName4 = Temp 2:4 ChanName5 = Temp 2:5 ChanName6 = Temp 2:6 ChanName7 = Temp 2:7 ChanName8 = Temp 2:8 TempCurve1 = PT100_Curve TempCurve2 = PT100_Curve TempCurve3 = PT100_Curve TempCurve4 = PT100_Curve TempCurve5 = ROX_CHP TempCurve6 = ROX_LHF TempCurve7 = ROX_LHR TempCurve8 = SD470Diode PLCAddr1 = 10020 PLCAddr2 = 10022 PLCAddr3 = 10024 PLCAddr4 = 10026 PLCAddr5 = 10030 PLCAddr6 = 10032 PLCAddr7 = 10034 PLCAddr8 = 10036 CfgStrCount = 2 CfgStr1 = INTYPE A,2 CfgStr2 = INTYPE B,5 ;---------------------------------------------------------------------- [Monitor3] Port = COM5 BaudRate = 9600 Parity = O DataBits = 7 StopBits = 1 IDSubString = LSCI,MODEL218 PollAllCmd = KRDG? ChanName1 = Temp 3:1 ChanName2 = Temp 3:2 ChanName3 = Temp 3:3 ChanName4 = Temp 3:4 ChanName5 = Temp 3:5 ChanName6 = Temp 3:6 ChanName7 = Temp 3:7 ChanName8 = Temp 3:8 TempCurve1 = PT100_Curve TempCurve2 = PT100_Curve TempCurve3 = PT100_Curve TempCurve4 = PT100_Curve TempCurve5 = PT100_Curve TempCurve6 = PT100_Curve TempCurve7 = PT100_Curve TempCurve8 = PT100_Curve PLCAddr1 = 10040 PLCAddr2 = 10042 PLCAddr3 = 10044 PLCAddr4 = 10046 PLCAddr5 = 10050 PLCAddr6 = 10052 PLCAddr7 = 10054 PLCAddr8 = 10056 CfgStrCount = 2 CfgStr1 = INTYPE A,2 CfgStr2 = INTYPE B,2 ;---------------------------------------------------------------------- [Monitor4] Port = COM6 BaudRate = 9600 Parity = O DataBits = 7 StopBits = 1 IDSubString = LSCI,MODEL218 PollAllCmd = KRDG? ChanName1 = Temp 4:1 ChanName2 = Temp 4:2 ChanName3 = Temp 4:3 ChanName4 = Temp 4:4 ChanName5 = Temp 4:5 ChanName6 = Temp 4:6 ChanName7 = Temp 4:7 ChanName8 = Temp 4:8 TempCurve1 = ROX_CoilA TempCurve2 = ROX_CoilB TempCurve3 = ROX_CoilC TempCurve4 = ROX_CoilD TempCurve5 = ROX_CoilE TempCurve6 = ROX_CoilF TempCurve7 = ROX_CoilG TempCurve8 = ROX_CoilH PLCAddr1 = 10060 PLCAddr2 = 10062 PLCAddr3 = 10064 PLCAddr4 = 10066 PLCAddr5 = 10070 PLCAddr6 = 10072 PLCAddr7 = 10074 PLCAddr8 = 10076 CfgStrCount = 2 CfgStr1 = INTYPE A,5 CfgStr2 = INTYPE B,5 ;---------------------------------------------------------------------- [Monitor5] Port = COM7 BaudRate = 9600 Parity = O DataBits = 7 StopBits = 1 IDSubString = LSCI,MODEL218 PollAllCmd = KRDG? ChanName1 = Temp 5:1 ChanName2 = Temp 5:2 ChanName3 = Temp 5:3 ChanName4 = Temp 5:4 ChanName5 = Temp 5:5 ChanName6 = Temp 5:6 ChanName7 = Temp 5:7 ChanName8 = Temp 5:8 TempCurve1 = PT100_Curve TempCurve2 = PT100_Curve TempCurve3 = PT100_Curve TempCurve4 = PT100_Curve TempCurve5 = PT100_Curve TempCurve6 = PT100_Curve TempCurve7 = PT100_Curve TempCurve8 = PT100_Curve PLCAddr1 = 10100 PLCAddr2 = 10102 PLCAddr3 = 10104 PLCAddr4 = 10106 PLCAddr5 = 10110 PLCAddr6 = 10112 PLCAddr7 = 10114 PLCAddr8 = 10116 CfgStrCount = 2 CfgStr1 = INTYPE A,2 CfgStr2 = INTYPE B,2 ;---------------------------------------------------------------------- [Monitor6] Port = COM8 BaudRate = 9600 Parity = O DataBits = 7 StopBits = 1 IDSubString = LSCI,MODEL218 PollAllCmd = KRDG? ChanName1 = Temp 6:1 ChanName2 = Temp 6:2 ChanName3 = Temp 6:3 ChanName4 = Temp 6:4 ChanName5 = Temp 6:5 ChanName6 = Temp 6:6 ChanName7 = Temp 6:7 ChanName8 = Temp 6:8 TempCurve1 = PT100_Curve TempCurve2 = PT100_Curve TempCurve3 = PT100_Curve TempCurve4 = PT100_Curve TempCurve5 = PT100_Curve TempCurve6 = PT100_Curve TempCurve7 = PT100_Curve TempCurve8 = PT100_Curve PLCAddr1 = 10120 PLCAddr2 = 10122 PLCAddr3 = 10124 PLCAddr4 = 10126 PLCAddr5 = 10130 PLCAddr6 = 10132 PLCAddr7 = 10134 PLCAddr8 = 10136 CfgStrCount = 2 CfgStr1 = INTYPE A,2 CfgStr2 = INTYPE B,2