Simple brake created with constant torque opposing sprocket rotation.
|
| ChTrackBrakeSimple (const std::string &name) |
|
virtual std::string | GetTemplateName () const override |
| Get the name of the vehicle subsystem template.
|
|
virtual void | Initialize (std::shared_ptr< ChChassis > chassis, std::shared_ptr< ChSprocket > sprocket) override |
| Initialize the brake by providing the chassis and associated sprocket.
|
|
virtual void | Synchronize (double time, double braking) override |
| Update the brake subsystem for the given braking driver input.
|
|
virtual double | GetBrakeTorque () override |
| Get the current brake torque.
|
|
double | GetBrakeSpeed () |
| Get the current brake angular speed (between disc and caliper) [rad/s].
|
|
virtual void | Advance (double step) |
| Advance the state of the brake subsystem by the specified time step.
|
|
const std::string & | GetName () const |
| Get the name identifier for this subsystem.
|
|
void | SetName (const std::string &name) |
| Set the name identifier for this subsystem.
|
|
bool | IsInitialized () const |
| Return flag indicating whether or not the part is fully constructed.
|
|
double | GetMass () const |
| Get the subsystem mass.
|
|
const ChFrame & | GetCOMFrame () const |
| Get the current subsystem COM frame (relative to and expressed in the subsystem's reference frame).
|
|
const ChMatrix33 & | GetInertia () const |
| Get the current subsystem inertia (relative to the subsystem COM frame).
|
|
const ChFrame & | GetTransform () const |
| Get the current subsystem position relative to the global frame.
|
|
void | SetVisualizationType (VisualizationType vis) |
| Set the visualization mode for this subsystem.
|
|
virtual void | AddVisualizationAssets (VisualizationType vis) |
| Add visualization assets to this subsystem, for the specified visualization mode.
|
|
virtual void | RemoveVisualizationAssets () |
| Remove all visualization assets from this subsystem.
|
|
virtual void | SetOutput (bool state) |
| Enable/disable output for this subsystem.
|
|
bool | OutputEnabled () const |
| Return the output state for this subsystem.
|
|
virtual void | ExportComponentList (rapidjson::Document &jsonDocument) const |
| Export this subsystem's component list to the specified JSON object.
|
|
virtual void | Output (ChVehicleOutput &database) const |
| Output data for this subsystem's component list to the specified database.
|
|
|
virtual double | GetMaxBrakingTorque ()=0 |
| Get the max braking torque (for braking = 1)
|
|
| ChTrackBrake (const std::string &name) |
|
virtual void | InitializeInertiaProperties () override |
| Initialize subsystem inertia properties.
|
|
virtual void | UpdateInertiaProperties () override |
| Update subsystem inertia properties.
|
|
| ChPart (const std::string &name) |
| Construct a vehicle subsystem with the specified name.
|
|
void | AddMass (double &mass) |
| Add this subsystem's mass.
|
|
void | AddInertiaProperties (ChVector3d &com, ChMatrix33<> &inertia) |
| Add this subsystem's inertia properties.
|
|
virtual void | Create (const rapidjson::Document &d) |
| Create a vehicle subsystem from JSON data.
|
|
void | ExportBodyList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChBody > > bodies) const |
| Export the list of bodies to the specified JSON document.
|
|
void | ExportShaftList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChShaft > > shafts) const |
| Export the list of shafts to the specified JSON document.
|
|
void | ExportJointList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChLink > > joints) const |
| Export the list of joints to the specified JSON document.
|
|
void | ExportCouplesList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChShaftsCouple > > couples) const |
| Export the list of shaft couples to the specified JSON document.
|
|
void | ExportMarkerList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChMarker > > markers) const |
| Export the list of markers to the specified JSON document.
|
|
void | ExportLinSpringList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChLinkTSDA > > springs) const |
| Export the list of translational springs to the specified JSON document.
|
|
void | ExportRotSpringList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChLinkRSDA > > springs) const |
| Export the list of rotational springs to the specified JSON document.
|
|
void | ExportBodyLoadList (rapidjson::Document &jsonDocument, std::vector< std::shared_ptr< ChLoadBodyBody > > loads) const |
| Export the list of body-body loads to the specified JSON document.
|
|