LiftDrag Class Reference
The LiftDrag system computes lift and drag forces enabling simulation of aerodynamic robots. More...
#include <LiftDrag.hh>
Public Member Functions | |
| LiftDrag () | |
| Constructor.   | |
| ~LiftDrag () override=default | |
| Destructor.   | |
| void | Configure (const Entity &_entity, const std::shared_ptr< const sdf::Element > &_sdf, EntityComponentManager &_ecm, EventManager &_eventMgr) override | 
| Configure the system.   | |
| void | PreUpdate (const UpdateInfo &_info, EntityComponentManager &_ecm) final | 
| Documentation inherited.   | |
  Public Member Functions inherited from System | |
| System ()=default | |
| Constructor.   | |
| virtual | ~System ()=default | 
| Destructor.   | |
Additional Inherited Members | |
  Public Types inherited from System | |
| using | PriorityType = int32_t | 
| Signed integer type used for specifying priority of the execution order of PreUpdate and Update phases.   | |
  Static Public Attributes inherited from System | |
| static constexpr PriorityType | kDefaultPriority = {0} | 
| Default priority value for execution order of the PreUpdate and Update phases.   | |
| static constexpr std::string_view | kPriorityElementName | 
| Name of the XML element from which the priority value will be parsed.   | |
Detailed Description
The LiftDrag system computes lift and drag forces enabling simulation of aerodynamic robots.
System Parameters
<link_name>: Name of the link affected by the group of lift/drag properties. This can be a scoped name to reference links in nested models.- See also
 - entitiesFromScopedName to learn more about scoped names.
 
<air_density>: Density of the fluid this model is suspended in.<radial_symmetry>: True if the shape is aerodynamically radially symmetric about the forward direction.<reversible>: True if the airfoil is symmetric when the inflow is reversed (for example reversible propellers)<area>: Surface area of the link.<a0>: The initial "alpha" or initial angle of attack. a0 is also the y-intercept of the alpha-lift coefficient curve.<cla>: The ratio of the coefficient of lift and alpha slope before stall. Slope of the first portion of the alpha-lift coefficient curve.<cda>: The ratio of the coefficient of drag and alpha slope before stall.<cma>: The ratio of the coefficient of moment and alpha slope before stall.<cp>: Center of pressure. The forces due to lift and drag will be applied here.<forward>: 3-vector representing the forward direction of motion in the link frame.<upward>: 3-vector representing the direction of lift or drag.<alpha_stall>: Angle of attack at stall point; the peak angle of attack.<cla_stall>: The ratio of coefficient of lift and alpha slope after stall. Slope of the second portion of the alpha-lift coefficient curve.<cda_stall>: The ratio of coefficient of drag and alpha slope after stall.<cda_stall>: The ratio of coefficient of moment and alpha slope after stall.<control_joint_name>: Name of joint that actuates a control surface for this lifting body (Optional)<cm_delta>: How much Cm changes with a change in control surface deflection angle<control_joint_rad_to_cl>: How much to change CL per radian of control joint surface angle.
Constructor & Destructor Documentation
◆ LiftDrag()
| LiftDrag | ( | ) | 
Constructor.
◆ ~LiftDrag()
      
  | 
  overridedefault | 
Destructor.
Member Function Documentation
◆ Configure()
      
  | 
  overridevirtual | 
Configure the system.
- Parameters
 - 
  
[in] _entity The entity this plugin is attached to. [in] _sdf The SDF Element associated with this system plugin. [in] _ecm The EntityComponentManager of the given simulation instance. [in] _eventMgr The EventManager of the given simulation instance.  
Implements ISystemConfigure.
◆ PreUpdate()
      
  | 
  finalvirtual | 
Documentation inherited.
Implements ISystemPreUpdate.
The documentation for this class was generated from the following file:
 Public Member Functions inherited from