ADORe
ADORe is a modular open source software library and toolkit for decision making, planning, control and simulation of automated vehicles
ap_emergency_operation.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2017-2020 German Aerospace Center (DLR).
3  * Eclipse ADORe, Automated Driving Open Research https://eclipse.org/adore
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License 2.0 which is available at
7  * http://www.eclipse.org/legal/epl-2.0.
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  * Jan Lauermann - initial API and implementation
13  ********************************************************************************/
14 
15 #pragma once
16 namespace adore
17 {
18  namespace params
19  {
25  {
26  public:
27  //lateral path tracking gain for terminal maneuver
28  virtual double getKy()const =0;
29  //lateral path tracking gain for terminal maneuver
30  virtual double getKpsi()const =0;
31  //hard coded longitudinal minimum acceleration
32  virtual double getamin()const =0;
33  //hard coded maximum longitudinal acceleration
34  virtual double getamax()const =0;
35  virtual double getDeltaMax()const=0;
36  virtual double getDeltaMin()const =0;
37  virtual double getEmergencyManeuverAMin()const =0;
38  virtual double getEmergencyManeuverAMax()const =0;
39  virtual double getEmergencyManeuverAStall()const =0;
40  virtual double getEmergencyManeuverTStall()const =0;
41  virtual double getEmergencyManeuverJMin()const =0;
42  };
43  }
44 }
abstract class containing parameters concerning emergency operation behaviour
Definition: ap_emergency_operation.h:25
virtual double getEmergencyManeuverAMax() const =0
virtual double getEmergencyManeuverJMin() const =0
virtual double getEmergencyManeuverAMin() const =0
virtual double getDeltaMin() const =0
virtual double getamax() const =0
virtual double getEmergencyManeuverAStall() const =0
virtual double getamin() const =0
virtual double getKpsi() const =0
virtual double getEmergencyManeuverTStall() const =0
virtual double getKy() const =0
virtual double getDeltaMax() const =0
Definition: areaofeffectconverter.h:20