Warning: include(php/utility.php): Failed to open stream: No such file or directory in /home/argos/argos3/doc/api/embedded/a00682_source.php on line 2

Warning: include(): Failed opening 'php/utility.php' for inclusion (include_path='.:/usr/lib64/php') in /home/argos/argos3/doc/api/embedded/a00682_source.php on line 2
The ARGoS Website

magnets_default_actuator.cpp
Go to the documentation of this file.
1 
8 #include <argos3/plugins/simulator/entities/magnet_equipped_entity.h>
9 
10 namespace argos {
11 
12  /****************************************/
13  /****************************************/
14 
16  m_pcMagnetEquippedEntity(nullptr) {
17  }
18 
19  /****************************************/
20  /****************************************/
21 
23  try {
24  /* Get the magnet equipped entity */
26  /* Allocate memory for a control interface for each instance */
28  /* Populate the interfaces */
30  m_vecInterfaces.emplace_back(s_instance.Magnet.GetId());
31  }
32  }
33  catch(CARGoSException& ex) {
34  THROW_ARGOSEXCEPTION_NESTED("Can't set robot for the magnets default actuator", ex);
35  }
36  }
37 
38  /****************************************/
39  /****************************************/
40 
42  try {
43  /* Parent class init */
45  }
46  catch(CARGoSException& ex) {
47  THROW_ARGOSEXCEPTION_NESTED("Error initializing the magnets default actuator", ex);
48  }
49  }
50 
51 
52  /****************************************/
53  /****************************************/
54 
56  for(size_t i = 0; i < m_vecInterfaces.size(); ++i) {
58  /* Update each magnet field by setting the magnet's current */
59  cMagnet.SetCurrent(m_vecInterfaces[i].Current);
60  }
61  }
62 
63  /****************************************/
64  /****************************************/
65 
67  for(SInterface& s_interface : m_vecInterfaces) {
68  /* Set the current to zero */
69  s_interface.Current = 0.0f;
70  }
71  }
72 
73  /****************************************/
74  /****************************************/
75 
77  "magnets", "default",
78  "Michael Allwright [allsey87@gmail.com]",
79  "1.0",
80  "The (electro)magnet actuator.",
81  "This actuator is used to modify the magnetic field of a magnet entity in the\n"
82  "simulation. A magnetic entity has a passive and an active field. The overall\n"
83  "field of a magnetic entity is calculated as:\n\n"
84  " field = passive_field + (current x active_field)\n\n"
85  "This actuator allows you to set the current, a scalar multiplier of the active\n"
86  "field.\n\n"
87  "REQUIRED XML CONFIGURATION\n\n"
88  " <controllers>\n"
89  " ...\n"
90  " <my_controller ...>\n"
91  " ...\n"
92  " <actuators>\n"
93  " ...\n"
94  " <magnets implementation=\"default\"/>\n"
95  " ...\n"
96  " </actuators>\n"
97  " ...\n"
98  " </my_controller>\n"
99  " ...\n"
100  " </controllers>\n\n"
101  "OPTIONAL XML CONFIGURATION\n\n"
102  "None.\n",
103  "Under development"
104  );
105 
106  /****************************************/
107  /****************************************/
108 
109 }
void SetCurrent(Real f_current)
Sets the current field of the magnet.
Definition: magnet_entity.h:75
virtual void Update()
Updates the state of the entity associated to this actuator.
REGISTER_ACTUATOR(CFootBotDistanceScannerDefaultActuator,"footbot_distance_scanner","default","Carlo Pinciroli [ilpincy@gmail.com]","1.0","The foot-bot distance scanner actuator.","This actuator controls the foot-bot distance scanner. For a complete\n""description of its usage, refer to the ci_footbot_distance_scanner_actuator\n""file.\n\n""REQUIRED XML CONFIGURATION\n\n"" <controllers>\n"" ...\n"" <my_controller ...>\n"" ...\n"" <actuators>\n"" ...\n"" <footbot_distance_scanner implementation=\"default\" />\n"" ...\n"" </actuators>\n"" ...\n"" </my_controller>\n"" ...\n"" </controllers>\n\n""OPTIONAL XML CONFIGURATION\n\n""None for the time being.\n","Usable")
CMagnetEquippedEntity * m_pcMagnetEquippedEntity
ticpp::Element TConfigurationNode
The ARGoS configuration XML node.
#define THROW_ARGOSEXCEPTION_NESTED(message, nested)
This macro throws an ARGoS exception with the passed message and nesting the passed exception...
virtual void Init(TConfigurationNode &t_tree)
Initializes the actuator from the XML configuration tree.
virtual void Init(TConfigurationNode &t_node)
Initializes the actuator from the XML configuration tree.
Definition: ci_actuator.h:54
SInterface::TVector m_vecInterfaces
Basic class for an entity that contains other entities.
CMagnetEntity & GetMagnet(UInt32 un_index)
Returns an magnet by numeric index.
virtual void SetRobot(CComposableEntity &c_entity)
Sets the entity associated to this actuator.
The exception that wraps all errors in ARGoS.
virtual void Reset()
Resets the actuator to the state it had just after Init().
A container of CMagnetEntity.
The namespace containing all the ARGoS related code.
Definition: ci_actuator.h:12
SInstance::TVector & GetInstances()
CEntity & GetComponent(const std::string &str_component)
Returns the component with the passed string label.