MRPT  2.0.4
CPTG_DiffDrive_CCS.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include "nav-precomp.h" // Precomp header
11 
14 #include <mrpt/system/os.h>
15 
16 using namespace mrpt;
17 using namespace mrpt::nav;
18 using namespace mrpt::system;
19 
22 
24  const mrpt::config::CConfigFileBase& cfg, const std::string& sSection)
25 {
27 
28  MRPT_LOAD_CONFIG_VAR_NO_DEFAULT(K, double, cfg, sSection);
29 
30  // The constant curvature turning radius used in this PTG:
31  R = V_MAX / W_MAX;
32 }
34  mrpt::config::CConfigFileBase& cfg, const std::string& sSection) const
35 {
37  const int WN = 25, WV = 30;
39 
40  cfg.write(
41  sSection, "K", K, WN, WV,
42  "K=+1 forward paths; K=-1 for backwards paths.");
43 
44  MRPT_END
45 }
46 
48  mrpt::serialization::CArchive& in, uint8_t version)
49 {
51 
52  switch (version)
53  {
54  case 0:
55  in >> K;
56  break;
57  default:
59  };
60 }
61 
62 uint8_t CPTG_DiffDrive_CCS::serializeGetVersion() const { return 0; }
64 {
66  out << K;
67 }
68 
70 {
71  char str[100];
72  os::sprintf(str, 100, "CPTG_DiffDrive_CCS,K=%i", (int)K);
73  return std::string(str);
74 }
75 
77  float alpha, float t, [[maybe_unused]] float x, [[maybe_unused]] float y,
78  [[maybe_unused]] float phi, float& v, float& w) const
79 {
80  float u = fabs(alpha) * 0.5f; // 0.14758362f; // u = atan(0.5)* alpha /
81  // PI;
82 
83  if (t < u * R / V_MAX)
84  {
85  // l-
86  v = -V_MAX;
87  w = W_MAX;
88  }
89  else if (t < (u + M_PI / 2) * R / V_MAX)
90  {
91  // l+ pi/2
92  v = V_MAX;
93  w = W_MAX;
94  }
95  else
96  {
97  // s+:
98  v = V_MAX;
99  w = 0;
100  }
101 
102  // Turn in the opposite direction??
103  if (alpha < 0) w *= -1;
104 
105  v *= K;
106  w *= K;
107 }
108 
109 bool CPTG_DiffDrive_CCS::PTG_IsIntoDomain(double x, double y) const
110 {
111  // If signs of K and X are different, it is into the domain:
112  if ((K * x) < 0) return true;
113 
114  if (fabs(y) >= R)
115  {
116  // Segmento de arriba:
117  return (fabs(x) <= R);
118  }
119  else
120  {
121  // The circle at (0,R):
122  return (square(x) + square(fabs(y) - R)) <= R;
123  }
124 }
125 
127 {
129  K = +1.0;
130 }
#define MRPT_START
Definition: exceptions.h:241
void loadFromConfigFile(const mrpt::config::CConfigFileBase &cfg, const std::string &sSection) override
Possible values in "params" (those in CParameterizedTrajectoryGenerator, which is called internally...
uint8_t serializeGetVersion() const override
Must return the current versioning number of the object.
void loadDefaultParams() override
Loads a set of default parameters; provided exclusively for the PTG-configurator tool.
IMPLEMENTS_SERIALIZABLE(CPTG_DiffDrive_CCS, CParameterizedTrajectoryGenerator, mrpt::nav) void CPTG_DiffDrive_CCS
void internal_readFromStream(mrpt::serialization::CArchive &in) override
void serializeFrom(mrpt::serialization::CArchive &in, uint8_t serial_version) override
Pure virtual method for reading (deserializing) from an abstract archive.
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:97
bool PTG_IsIntoDomain(double x, double y) const override
Returns the same than inverseMap_WS2TP() but without any additional cost.
This is the base class for any user-defined PTG.
This class allows loading and storing values and vectors of different types from a configuration text...
#define MRPT_LOAD_CONFIG_VAR_NO_DEFAULT( variableName, variableType, configFileObject, sectionNameStr)
std::string getDescription() const override
Gets a short textual description of the PTG and its parameters.
void loadFromConfigFile(const mrpt::config::CConfigFileBase &cfg, const std::string &sSection) override
Parameters accepted by this base class:
void write(const std::string &section, const std::string &name, enum_t value, const int name_padding_width=-1, const int value_padding_width=-1, const std::string &comment=std::string())
return_t square(const num_t x)
Inline function for the square of a number.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:54
const float R
mrpt::vision::TStereoCalibResults out
#define MRPT_END
Definition: exceptions.h:245
void saveToConfigFile(mrpt::config::CConfigFileBase &cfg, const std::string &sSection) const override
This method saves the options to a ".ini"-like file or memory-stored string list. ...
void serializeTo(mrpt::serialization::CArchive &out) const override
Pure virtual method for writing (serializing) to an abstract archive.
A PTG for optimal paths of type "C|C,S" (as named in PTG papers).
void loadDefaultParams() override
Loads a set of default parameters; provided exclusively for the PTG-configurator tool.
void saveToConfigFile(mrpt::config::CConfigFileBase &cfg, const std::string &sSection) const override
This method saves the options to a ".ini"-like file or memory-stored string list. ...
void ptgDiffDriveSteeringFunction(float alpha, float t, float x, float y, float phi, float &v, float &w) const override
The main method to be implemented in derived classes: it defines the differential-driven differential...
int sprintf(char *buf, size_t bufSize, const char *format,...) noexcept MRPT_printf_format_check(3
An OS-independent version of sprintf (Notice the bufSize param, which may be ignored in some compiler...
void internal_writeToStream(mrpt::serialization::CArchive &out) const override



Page generated by Doxygen 1.8.14 for MRPT 2.0.4 Git: 33de1d0ad Sat Jun 20 11:02:42 2020 +0200 at sáb jun 20 17:35:17 CEST 2020