mCore Firmware Ver 01.10
Ver 2019-Oct-29
Page
39
of
97
Reading Data from eRCM Express™:
DIM NextLoadStepUp as Double
…
DIM LoadStepBHPs(23) As Double
Modbus.NumberOfDataValues = 1
Modbus.Address = 40275 // The address of the "IsKernelBusy" register.
// Will return false (0) when eRCM Express has completed
// all of its performance and safety calculations.
// This usually takes less than 150 ms.
Modbus.ReadData() // Read data in the "IsKernelBusy" register.
If Modbus.Data(1) = 0 Then // If 0, then calculations are now complete.
// Do the following to read specific items:
Modbus.NumberOfDataValues = 13 (1 Value = two 16-bit registers)
Modbus.Address = 40277 // Start of a block of data
Modbus.ReadData()
eRCMExpressWatchdogPulse = Modbus.Data(1)
NextLoadStepUp = Modbus.Data(2)
NextLoadStepDown = Modbus.Data(3)
NextLSUpPercentChange = Modbus.Data(4)
NextLSDownPercentChange = Modbus.Data(5)
MinSpeedCurrentLS = Modbus.Data(6)
MaxSpeedCurrentLS = Modbus.Data(7)
MinSuctPressureCurrentLS = Modbus.Data(8)
MaxSuctPressureCurrentLS = Modbus.Data(9)
FindOptimalLoadStep = Modbus.Data(10)
CurrentTorque = Modbus.Data(11)
IsentropicEfficiency = Modbus.Data(12)
FuelRate = Modbus.Data(13)
// Do the following to read an array of values at once:
// Example: Get the load for load steps 1 through 23
Modbus.NumberOfDataValues = 23
Modbus.Address = 40645 // Modbus address for start of LoadArray values (Load Step 1)
Modbus.ReadData()
LoadStepBHPs(1) = Modbus.Data(1) // Load for Load Step 1 (Address 40645)
LoadStepBHPs(2) = Modbus.Data(2) // Load for Load Step 2 (Address 40647)
LoadStepBHPs(3) = Modbus.Data(3) // Load for Load Step 3 (Address 40649)
LoadStepBHPs(4) = Modbus.Data(4) // Load for Load Step 4 (Address 40651)
…
LoadStepBHPs(23) = Modbus.Data(23) // Load for Load Step 23 (Address 40689)
…
END IF
Summary of Contents for eRCM Express
Page 3: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 3 of 97 eRCM Express Package Contents ...
Page 5: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 5 of 97 eRCM Express Contact and Support ...
Page 7: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 7 of 97 eRCM Express Unit Installation ...
Page 17: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 17 of 97 eRCM Express Diagnostics Software ...
Page 19: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 19 of 97 eRCM Express Uploading Modeling File s ...
Page 23: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 23 of 97 eRCM Express Uploading a License File ...
Page 25: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 25 of 97 eRCM Express Updating Unit Firmware ...
Page 27: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 27 of 97 eRCM Express Changing LAN Settings ...
Page 29: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 29 of 97 eRCM Express General Process ...
Page 37: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 37 of 97 eRCM Express Pseudo Code Examples ...
Page 40: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 40 of 97 eRCM Express Using Select Features ...
Page 48: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 48 of 97 eRCM Express Miscellaneous Notes ...
Page 60: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 60 of 97 ERROR ARRAY AB Tag Name ...
Page 61: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 61 of 97 LOAD ARRAY AB Tag Name ...
Page 62: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 62 of 97 FLOW ARRAY AB Tag Name ...
Page 63: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 63 of 97 STAGE ARRAY AB Tag Name ...
Page 64: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 64 of 97 THROW ARRAY AB Tag Name ...
Page 65: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 65 of 97 CYL_HE ARRAY AB Tag Name ...
Page 66: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 66 of 97 CYL_CE ARRAY AB Tag Name ...
Page 67: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 67 of 97 RANGES ...
Page 77: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 77 of 97 ...
Page 90: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 90 of 97 ...
Page 91: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 91 of 97 ...
Page 92: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 92 of 97 ...
Page 93: ...mCore Firmware Ver 01 10 Ver 2019 Oct 29 Page 93 of 97 ...