sinusoid.cpp
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 
38 #include <cmath>
39 #include <iostream>
40 
41 using namespace std;
42 
43 namespace control_toolbox
44 {
45 
46 Sinusoid::Sinusoid(double offset, double amplitude, double frequency, double phase):
47  offset_(offset),
48  amplitude_(amplitude),
49  frequency_(frequency),
50  phase_(phase)
51 {
52 }
53 
54 bool Sinusoid::initXml(TiXmlElement *ti_xml_element)
55 {
56  const char* attr;
57  attr = ti_xml_element->Attribute("offset");
58  offset_ = attr ? atof(attr) : 0.0;
59  attr = ti_xml_element->Attribute("amplitude");
60  amplitude_ = attr ? atof(attr) : 0.0;
61  attr = ti_xml_element->Attribute("frequency");
62  frequency_ = attr ? atof(attr) : 0.0;
63  attr = ti_xml_element->Attribute("phase");
64  phase_ = attr ? atof(attr) : 0.0;
65  return true; // does not fail for now, we assume a default of 0 for all params
66 }
67 
69 {
70 }
71 
73 {
74 }
75 
76 double Sinusoid::update(double time, double& qd, double& qdd)
77 {
78  double angular_frequency = 2.0*M_PI*frequency_;
79  double p = phase_ + angular_frequency*time;
80  double sin_p = sin(p);
81  double cos_p = cos(p);
82  double q = offset_ + amplitude_*sin_p;
83  qd = angular_frequency*amplitude_*cos_p;
84  qdd = -angular_frequency*angular_frequency*amplitude_*sin_p;
85  return q;
86 }
87 
89 {
90  cout << "offset=" << offset_ << " amplitude=" << amplitude_ << " phase=" << phase_ << " frequency=" << frequency_ << endl;
91 }
92 
93 } // namespace control_toolbox
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