Apollo 11.0
自动驾驶开放平台
mrac_conf.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.control;
4
5message MracConf {
6 optional int32 mrac_model_order = 1 [default = 1];
7 optional double reference_time_constant = 2;
8 optional double reference_natural_frequency = 3;
9 optional double reference_damping_ratio = 4;
10 // state gain size must be not higher than the mrac_model_order
11 repeated double adaption_state_gain = 5;
12 optional double adaption_desired_gain = 6;
13 optional double adaption_nonlinear_gain = 7;
14 // adaption matrix size must match the model matrix size based on
15 // mrac_model_order
16 repeated double adaption_matrix_p = 8;
17 optional double mrac_saturation_level = 9 [default = 1.0];
18 // compensation gain size must be not higher than the mrac_model_order
19 repeated double anti_windup_compensation_gain = 10;
20 optional double clamping_time_constant = 11;
21}
syntax