observation.h
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2009, Willow Garage, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of the Willow Garage nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 #ifndef POWER_MONITOR_OBSERVATION_H
36 #define POWER_MONITOR_OBSERVATION_H
37 
38 #include <stdlib.h>
39 
40 #include "ros/ros.h"
41 
42 #include "pr2_msgs/PowerBoardState.h"
43 
44 namespace power_monitor {
45 
46 class BatteryObservation;
47 
52 {
53 public:
55  PowerObservation(const ros::Time& stamp, int8_t master_state, const std::vector<BatteryObservation>& batteries);
56 
57  const ros::Time& getStamp() const;
58  int8_t getMasterState() const;
59  const std::vector<BatteryObservation>& getBatteries() const;
60 
61  unsigned int getAcCount() const;
62  float getTotalPower() const;
63  float getMinVoltage() const;
64  unsigned int getMinRelativeStateOfCharge() const;
65  float getTotalRemainingCapacity() const;
68 
69 private:
71  int8_t master_state_;
72  std::vector<BatteryObservation> batteries_;
73 };
74 
79 {
80 public:
81  BatteryObservation(const ros::Time& stamp, bool ac_present, float voltage, float current,
82  unsigned int relative_state_of_charge, float remaining_capacity, const ros::Duration& time_to_empty, const ros::Duration& time_to_full);
83 
84  const ros::Time& getStamp() const;
85 
86  bool isAcPresent() const;
87  float getVoltage() const;
88  float getCurrent() const;
89  unsigned int getRelativeStateOfCharge() const;
90  float getRemainingCapacity() const;
91  const ros::Duration& getTimeToEmpty() const;
92  const ros::Duration& getTimeToFull() const;
93 
94  float getPower() const;
95 
96 private:
99  float voltage_; // V
100  float current_; // A (-ve if discharging)
101  unsigned int relative_state_of_charge_; // % [0-100]
102  float remaining_capacity_; // Ah
105 };
106 
107 }
108 
109 #endif /* POWER_MONITOR_OBSERVATION_H */
ros::Duration getMinTimeToEmpty(const ros::Time &t) const
unsigned int getAcCount() const
Definition: observation.cpp:56
unsigned int getMinRelativeStateOfCharge() const
Definition: observation.cpp:90
std::vector< BatteryObservation > batteries_
Definition: observation.h:72
const ros::Time & getStamp() const
Definition: observation.cpp:52
float getTotalRemainingCapacity() const
Definition: observation.cpp:99
const std::vector< BatteryObservation > & getBatteries() const
Definition: observation.cpp:54
ros::Duration getMaxTimeToFull(const ros::Time &t) const


power_monitor
Author(s): Tim Field, Curt Meyers
autogenerated on Wed Jun 5 2019 20:40:38