mCore Firmware Ver 01.10
Ver 2019-Oct-29
Page
70
of
97
// =======================================
// Compressor is warmed up, and we are ready to bring compressor online.
// First, load in the correct eRCM Viewer model, and then verify it.
// =======================================
// Load in the correct file
Modbus.NumberOfDataValues = eRCM_SetViewerFileLen
Modbus.Address = eRCM_SetViewerFileStart
Modbus.Data(1) =
2
// Load in the "2Two-stg Injection.rvf" file
Modbus.Write()
Sleep 500 ms
// Verify that this file is correct. If should be a 2-stage unit with 6 throws,
// 6 cylinders, and 23 load steps.
Modbus.NumberOfDataValues = eRCM_CommonFixedDataLen
Modbus.Address = eRCM_CommonFixedDataStart
Modbus.Read()
// All must be true, else wrong file!
// NumStgs=2 AND NumCyls=6 AND NumThrows=6 AND NumLSs=23
IF Modbus.Data(11)=2 AND Modbus.Data(9)=6 AND _
Modbus.Data(12)=6 AND Modbus.Data(10)=23 AND
Modbus.Data(26)=123321 THEN
‘ 123321 is User ID value for this model.
MESSAGE “Correct eRCM Viewer model loaded.”
ELSE
ALARM “Wrong eRCM Viewer model in eRCM Express. Stop unit!”
SHUTDOWN
END
END IF
// Check to see if we can force unit to start in the safest load step.
// This is only practical if access to the
unit’s final discharge
pressure
// is known.
Unit’s “actual” discharge pressure is likely about the same as
// suction pressure since we are in bypass mode.
IF (Field Discharge Pressure is Known) THEN
Modbus.NumberOfDataValues = eRCM_CommonWritesLen
Modbus.Address = eRCM_CommonWritesStart
Modbus.Data(1) =
UnitABC.CurrentLoadStep
Modbus.Data(2) =
UnitABC.Stage1.Ps_PSIG
Modbus.Data(3) =
UnitABC.Station.Pd_PSIG // This item is SPECIAL!
Modbus.Data(4) =
UnitABC.Driver.CurrentRPM
Modbus.Data(5) =
UnitABC.Stage1.Ts_F
Modbus.Data(6) =
UnitABC.Stage2.Ts_F
Modbus.Data(7) =
0
Modbus.Data(8) =
0
Modbus.Data(9) =
0
Modbus.Data(10) =
0
Modbus.Write()
Modbus.NumberOfDataValues = eRCM_CheckSafeStartUpLen
Modbus.Address = eRCM_CheckSafeStartUp
Modbus.Data(1) =
1 // The “1” tells eRCM Express to return Safe Start Up LS
Modbus.Write()
Modbus.NumberOfDataValues = eRCM_ForceCalcsLen
Modbus.Address = eRCM_ForceCalcsStart
Modbus.Data(1) =
1 // Force a calculation of the compressor model
Содержание eRCM Express
Страница 3: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 3 of 97 eRCM Express Package Contents ...
Страница 5: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 5 of 97 eRCM Express Contact and Support ...
Страница 7: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 7 of 97 eRCM Express Unit Installation ...
Страница 10: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 10 of 97 eRCM Express mCore User Interface Initial Setup ...
Страница 13: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 13 of 97 eRCM Express Hardware and Communications ...
Страница 15: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 15 of 97 eRCM Express Sending Reading Data Rates ...
Страница 17: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 17 of 97 eRCM Express Diagnostics Software ...
Страница 19: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 19 of 97 eRCM Express Uploading Modeling File s ...
Страница 23: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 23 of 97 eRCM Express Uploading a License File ...
Страница 25: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 25 of 97 eRCM Express Updating Unit Firmware ...
Страница 27: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 27 of 97 eRCM Express Changing LAN Settings ...
Страница 29: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 29 of 97 eRCM Express General Process ...
Страница 37: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 37 of 97 eRCM Express Pseudo Code Examples ...
Страница 40: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 40 of 97 eRCM Express Using Select Features ...
Страница 45: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 45 of 97 eRCM Express Change Current Modeling File via PLC ...
Страница 48: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 48 of 97 eRCM Express Miscellaneous Notes ...
Страница 57: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 57 of 97 List of All Active Reads COMMON CONTROL ITEMS ...
Страница 60: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 60 of 97 ERROR ARRAY AB Tag Name ...
Страница 61: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 61 of 97 LOAD ARRAY AB Tag Name ...
Страница 62: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 62 of 97 FLOW ARRAY AB Tag Name ...
Страница 63: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 63 of 97 STAGE ARRAY AB Tag Name ...
Страница 64: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 64 of 97 THROW ARRAY AB Tag Name ...
Страница 65: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 65 of 97 CYL_HE ARRAY AB Tag Name ...
Страница 66: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 66 of 97 CYL_CE ARRAY AB Tag Name ...
Страница 67: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 67 of 97 RANGES ...
Страница 68: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 68 of 97 eRCM Express Sample Pseudo Start Up Code ...
Страница 77: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 77 of 97 ...
Страница 78: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 78 of 97 eRCM Express Changes to Manual by Version ...
Страница 80: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 80 of 97 eRCM Express ADDENDUM I Load Step Selection Modes ...
Страница 82: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 82 of 97 eRCM Provides the following Load Step Selection Modes ...
Страница 87: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 87 of 97 eRCM Express ADDENDUM IV Determining Calculation Times ...
Страница 89: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 89 of 97 eRCM Express ADDENDUM V mCore Operations Manual ...
Страница 90: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 90 of 97 ...
Страница 91: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 91 of 97 ...
Страница 92: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 92 of 97 ...
Страница 93: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 93 of 97 ...