You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- struct LatControlParams
- {
- /// \brief Corner stiffness; front
- double cf;
- /// \brief Corner stiffness; rear
- double cr;
- /// \brief Distance between front and rear wheel center
- double wheelbase;
- /// \brief Mass of the vehicle
- double mass;
- /// \brief Distance from front wheel center to COM
- double lf;
- /// \brief Distance from rear wheel center to COM
- double lr;
- /// \brief Rotational inertia
- double iz;
- /// \brief Matrix_k_(0,2) weight parameters
- double weight_param;
- /// \brief
- double y_weight_param;
- /// \brief
- double heading_weight_param;
- /// \brief
- double forward_param;
- /// \brief
- double weight_param_lat;
- };
|