Commit 0a510293 authored by claes's avatar claes

More Sev work

parent a3a5508b
! !
! Proview $Id: pwrb_c_sevhist.wb_load,v 1.1 2008-09-09 11:30:00 claes Exp $ ! Proview $Id: pwrb_c_sevhist.wb_load,v 1.2 2008-09-18 15:02:48 claes Exp $
! Copyright (C) 2005 SSAB Oxelsund AB. ! Copyright (C) 2005 SSAB Oxelsund AB.
! !
! This program is free software; you can redistribute it and/or ! This program is free software; you can redistribute it and/or
...@@ -92,7 +92,12 @@ SObject pwrb:Class ...@@ -92,7 +92,12 @@ SObject pwrb:Class
EndBody EndBody
EndObject EndObject
!/** !/**
! Not yet implemented. ! The deadband is a range around the last stored value, where no new values
! will be stored, i.e a value has to differ more than the deadband / 2 from
! the last stored value to be stored.
!
! Deadband contains the size of deadband. Note that the DeadBand bit in options also
! has to be set to activte the deadband function.
!*/ !*/
Object DeadBand $Attribute 5 Object DeadBand $Attribute 5
Body SysBody Body SysBody
...@@ -100,17 +105,18 @@ SObject pwrb:Class ...@@ -100,17 +105,18 @@ SObject pwrb:Class
EndBody EndBody
EndObject EndObject
!/** !/**
! Not yet implemented. ! Storage options.
!*/ !*/
Object HighTimeResolution $Attribute 6 Object Options $Attribute 6
Body SysBody Body SysBody
Attr TypeRef = "pwrs:Type-$Boolean" Attr TypeRef = "pwrb:Type-SevHistOptionsMask"
EndBody EndBody
EndObject EndObject
EndObject EndObject
Object Template SevHist Object Template SevHist
Body RtBody Body RtBody
Attr DeadBand = 0.0 Attr DeadBand = 0.0
Attr Options = 4
EndBody EndBody
EndObject EndObject
Object PostCreate $DbCallBack Object PostCreate $DbCallBack
......
! !
! Proview $Id: pwrb_c_sevhistmonitor.wb_load,v 1.1 2008-09-09 11:30:00 claes Exp $ ! Proview $Id: pwrb_c_sevhistmonitor.wb_load,v 1.2 2008-09-18 15:02:48 claes Exp $
! Copyright (C) 2005 SSAB Oxelsund AB. ! Copyright (C) 2005 SSAB Oxelsund AB.
! !
! This program is free software; you can redistribute it and/or ! This program is free software; you can redistribute it and/or
...@@ -52,6 +52,19 @@ SObject pwrb:Class ...@@ -52,6 +52,19 @@ SObject pwrb:Class
Attr TypeRef = "pwrs:Type-$String80" Attr TypeRef = "pwrs:Type-$String80"
EndBody EndBody
EndObject EndObject
!/**
! The scanning period, in seconds, of the sevhist monitor.
!*/
Object ScanTime $Attribute 2
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
EndObject
Object Template SevHistMonitor
Body RtBody
Attr ScanTime = 1
EndBody
EndObject EndObject
Object PostCreate $DbCallBack Object PostCreate $DbCallBack
Body SysBody Body SysBody
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment