-- Title: BVM_v1.MIB -- Version: v4.2 -- -- Copyright @ 2010 DPS Inc. All Rights Reserved -- -- This MIB defines supplemental objects for the DPS BVM series RTU. -- -- DPS-MIB-BVM DEFINITIONS ::= BEGIN IMPORTS dpsAlarmControl FROM DPS-MIB-V38; dpsBVM OBJECT IDENTIFIER ::= {dpsAlarmControl 3} --Table for accessing individual cell data dpsBVMcellGrid OBJECT-TYPE SYNTAX SEQUENCE OF DPSBVMcellEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Holds information on cell monitored by the BVM" ::= {dpsBVM 1} dpsBVMcellEntry OBJECT-TYPE SYNTAX DPSBVMcellEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Information about a particular cell input." INDEX {dpsBVMcell} ::= {dpsBVMcellGrid 1} DPSBVMcellentry ::= SEQUENCE { dpsBVMcell INTEGER, dpsBVMcellenabled INTEGER, dpsBVMcellvalue DisplayString, dpsBVMcellthresholds INTEGER, dpsBVMcellavgthresholds INTEGER } dpsBVMcell OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Input cell number" ::= {dpsBVMcellEntry 1} dpsBVMcellenabled OBJECT-TYPE SYNTAX INTEGER { notenabled (0), enabled (1)} ACCESS read-only STATUS mandatory DESCRIPTION "Enable status of cell" ::= {dpsBVMcellEntry 2} dpsBVMcellvalue OBJECT-TYPE SYNTAX DisplayString (SIZE (20)) ACCESS read-only STATUS mandatory DESCRIPTION "The analog value of the cell" ::= {dpsBVMcellEntry 3} dpsBVMcellthresholds OBJECT-TYPE SYNTAX INTEGER { noalarm (0), MinorUnder (1), MinorOver (2), MajorUnder (3), MajorOver (4)} ACCESS read-only STATUS mandatory DESCRIPTION "Highest per cell threshold level crossed, if MJ, MN is assumed" ::= {dpsBVMcellEntry 4} dpsBVMcellavgthresholds OBJECT-TYPE SYNTAX INTEGER { noalarm (0), MinorUnder (1), MinorOver (2), MajorUnder (3), MajorOver (4)} ACCESS read-only STATUS mandatory DESCRIPTION "Highest average threshold level crossed, if MJ, MN is assumed. Cell is compared to average of other cells in string excluding this cell" ::= {dpsBVMcellEntry 5} --Table for accessing string data dpsBVMstringGrid OBJECT-TYPE SYNTAX SEQUENCE OF DPSBVMstringEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Holds information on battery strings monitored by the BVM" ::= {dpsBVM 2} dpsBVMstringEntry OBJECT-TYPE SYNTAX DPSBVMstringEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Information about a particular cell input." INDEX {dpsBVMstring} ::= {dpsBVMstringGrid 1} DPSBVMstringentry ::= SEQUENCE { dpsBVMstring INTEGER, dpsBVMstringenabled INTEGER, dpsBVMstringDesc DisplayString, dpsBVMstringsumvalue DisplayString, dpsBVMstringsumthresholds INTEGER } dpsBVMstring OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Input string number" ::= {dpsBVMstringEntry 1} dpsBVMstringenabled OBJECT-TYPE SYNTAX INTEGER { notenabled (0), enabled (1)} ACCESS read-only STATUS mandatory DESCRIPTION "Enable status of string" ::= {dpsBVMstringEntry 2} dpsBVMstringDesc OBJECT-TYPE SYNTAX DisplayString (SIZE (48)) ACCESS read-only STATUS mandatory DESCRIPTION "The user defined description of the battery string" ::= {dpsBVMstringEntry 3} dpsBVMstringsumvalue OBJECT-TYPE SYNTAX DisplayString (SIZE (20)) ACCESS read-only STATUS mandatory DESCRIPTION "The summed value of all cells in the string" ::= {dpsBVMstringEntry 4} dpsBVMstringsumthresholds OBJECT-TYPE SYNTAX INTEGER { noalarm (0), MinorUnder (1), MinorOver (2), MajorUnder (3), MajorOver (4)} ACCESS read-only STATUS mandatory DESCRIPTION "Highest summed (entire string) threshold level crossed, if MJ, MN is assumed" ::= {dpsBVMstringEntry 5} END