Apollo 10.0
自动驾驶开放平台
hysteresis_filter.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2017 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16
18
19namespace apollo {
20namespace control {
21
22void HysteresisFilter::filter(const double input_value, const double threshold,
23 const double hysteresis_upper,
24 const double hysteresis_lower, int *state,
25 double *output_value) {
26 // Use integer to represent mode as of now, for instance,
27 // 1 is throttle, 0 is brake, then threshold is speed error
28 if (input_value > threshold + hysteresis_upper) {
29 *state = 1;
30 previous_state_ = *state;
31 *output_value = threshold + hysteresis_upper;
32 } else if (input_value < threshold - hysteresis_lower) {
33 *state = 0;
34 previous_state_ = *state;
35 *output_value = threshold - hysteresis_lower;
36 } else {
37 *state = previous_state_;
38 *output_value = input_value;
39 }
40}
41
42} // namespace control
43} // namespace apollo
void filter(const double input_value, const double threshold, const double hysteresis_upper, const double hysteresis_lower, int *state, double *output_value)
hysteresis filter
class register implement
Definition arena_queue.h:37