sinusoid.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 
37 #ifndef CONTROL_TOOLBOX__SINUSOID_H_
38 #define CONTROL_TOOLBOX__SINUSOID_H_
39 
40 #include <iostream>
41 #include <tinyxml.h>
42 
43 namespace control_toolbox
44 {
45 
54 class Sinusoid
55 {
56 public:
60  Sinusoid();
61 
70  Sinusoid(double offset, double amplitude, double frequency, double phase);
71 
75  virtual ~Sinusoid();
76 
83  bool initXml(TiXmlElement *ti_xml_element);
84 
88  void debug();
89 
98  double update(double time, double& qd, double& qdd);
99 
100 private:
101  double offset_;
102  double amplitude_;
103  double frequency_;
104  double phase_;
105 };
106 
107 }
108 
109 #endif /* SINUSOID_H_ */
A basic sine class.
Definition: sinusoid.h:54
bool initXml(TiXmlElement *ti_xml_element)
Initializes the parameters of the sine wave from the given xml element.
Definition: sinusoid.cpp:54
Sinusoid()
Constructor.
Definition: sinusoid.cpp:72
double update(double time, double &qd, double &qdd)
Gets the value and derivatives of the sinusoid at a given time.
Definition: sinusoid.cpp:76


control_toolbox
Author(s): Melonee Wise, Sachin Chitta, John Hsu
autogenerated on Fri Feb 1 2019 03:25:58