Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(raw_vehicle_cmd_converter): add contents of vehicle_adaptor #9759

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
27 changes: 23 additions & 4 deletions vehicle/autoware_raw_vehicle_cmd_converter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ cmake_minimum_required(VERSION 3.14)
project(autoware_raw_vehicle_cmd_converter)

find_package(autoware_cmake REQUIRED)
find_package(pybind11 REQUIRED)
find_package(Eigen3 REQUIRED)
find_package(yaml-cpp REQUIRED)
find_package(Python REQUIRED COMPONENTS Development)
autoware_package()
add_compile_options(-fPIC)

ament_auto_add_library(actuation_map_converter SHARED
src/accel_map.cpp
Expand All @@ -15,15 +20,29 @@ ament_auto_add_library(actuation_map_converter SHARED

ament_auto_add_library(vehicle_adaptor SHARED
src/vehicle_adaptor/vehicle_adaptor.cpp
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/src/vehicle_adaptor_compensator.cpp
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/src/inputs_prediction.cpp
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/src/nominal_dynamics.cpp
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/src/transform_vehicle_adaptor_model.cpp
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/src/inputs_ref_smoother.cpp
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/src/vehicle_adaptor_utils.cpp
)
target_include_directories(vehicle_adaptor PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/include
)

ament_auto_add_library(autoware_raw_vehicle_cmd_converter_node_component SHARED
src/node.cpp
)

include_directories(
src/vehicle_adaptor/autoware_vehicle_adaptor/autoware_vehicle_adaptor/include
${EIGEN3_INCLUDE_DIR}
${Python_INCLUDE_DIRS}
)
target_link_libraries(autoware_raw_vehicle_cmd_converter_node_component
actuation_map_converter
vehicle_adaptor
vehicle_adaptor yaml-cpp
${Python_LIBRARIES}
pybind11::embed
)

rclcpp_components_register_node(autoware_raw_vehicle_cmd_converter_node_component
Expand All @@ -50,7 +69,7 @@ ament_auto_package(INSTALL_TO_SHARE
launch
test
)

target_compile_definitions(vehicle_adaptor PRIVATE BUILD_PATH=\"${CMAKE_CURRENT_SOURCE_DIR}/src/vehicle_adaptor/autoware_vehicle_adaptor\")
install(PROGRAMS scripts/plot_accel_brake_map.py
DESTINATION lib/${PROJECT_NAME}
)
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#ifndef AUTOWARE_RAW_VEHICLE_CMD_CONVERTER__VEHICLE_ADAPTOR__VEHICLE_ADAPTOR_HPP_
#define AUTOWARE_RAW_VEHICLE_CMD_CONVERTER__VEHICLE_ADAPTOR__VEHICLE_ADAPTOR_HPP_

#include "vehicle_adaptor_compensator.h"

#include <autoware_adapi_v1_msgs/msg/operation_mode_state.hpp>
#include <autoware_control_msgs/msg/control.hpp>
#include <autoware_control_msgs/msg/control_horizon.hpp>
Expand Down Expand Up @@ -44,6 +46,9 @@ class VehicleAdaptor
[[maybe_unused]] const ControlHorizon & control_horizon);

private:
Proxima::VehicleAdaptor proxima_vehicle_adaptor_;
double yaw_prev_ = 0.0;
bool initialized_ = false;
};
} // namespace autoware::raw_vehicle_cmd_converter

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.ipynb_checkpoints
# Files generated when installing
build/
*.egg-info/
.cspell.json

*.so
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<p align="center">
<a href="https://proxima-ai-tech.com/">
<img width="500px" src="./images/proxima_logo.png">
</a>
</p>

# Autoware Vehicle Adaptor

In order to perform adaptive control that allows various vehicles to operate without detailed parameter calibration, it is placed in the lower part of the controller and corrects the input so that the ideal state based on the internal model of the controller is achieved according to the learned model.
However, if you are not going to do any learning and simply want to drive on Autoware with the default NN model, you do not need to follow this installation procedure, and it is sufficient to just do the normal Autoware setup.

# Provided features

To use all the functions of this package, execute the following setup command on the autoware_vehicle_adaptor directory:

```bash
pip3 install .
```

For the upcoming setup, execute the following command:

```bash
pip3 install -U .
```

## Trajectory following with vehicle adaptor

## Training and its evaluation

## Brief simulation using a python simulator

# Parameter description

# Limitation
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__/
*.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.836,0.57,0.379,0.17,0.08,0.07,0.068,0.027,-0.03,-0.117,-0.251
0.2,1.129,0.863,0.672,0.542,0.4,0.38,0.361,0.32,0.263,0.176,0.042
0.3,1.559,1.293,1.102,0.972,0.887,0.832,0.791,0.75,0.694,0.606,0.472
0.4,2.176,1.909,1.718,1.588,1.503,1.448,1.408,1.367,1.31,1.222,1.089
0.5,3.027,2.76,2.57,2.439,2.354,2.299,2.259,2.218,2.161,2.074,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.466,0.08,-0.1,-0.121,-0.206,-0.261,-0.302,-0.343,-0.399,-0.487,-0.621
0.2,0.1,0.05,-0.165,-0.296,-0.381,-0.436,-0.476,-0.517,-0.574,-0.661,-0.795
0.3,-0.1,-0.207,-0.398,-0.528,-0.613,-0.668,-0.709,-0.75,-0.807,-0.894,-1.028
0.4,-0.281,-0.547,-0.738,-0.868,-0.953,-1.008,-1.049,-1.09,-1.146,-1.234,-1.367
0.5,-0.776,-1.042,-1.233,-1.364,-1.449,-1.504,-1.544,-1.585,-1.642,-1.729,-1.863
0.6,-1.476,-1.743,-1.934,-2.064,-2.149,-2.204,-2.244,-2.285,-2.342,-2.43,-2.563
0.7,-2.43,-2.697,-2.887,-3.018,-3.103,-3.158,-3.198,-3.239,-3.296,-3.383,-3.517
0.8,-3.687,-3.953,-4.144,-4.274,-4.359,-4.414,-4.455,-4.496,-4.552,-4.64,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.836,0.57,0.379,0.17,0.08,0.07,0.068,0.027,-0.03,-0.117,-0.251
0.2,1.129,0.863,0.672,0.542,0.4,0.38,0.361,0.32,0.263,0.176,0.042
0.3,1.559,1.293,1.102,0.972,0.887,0.832,0.791,0.75,0.694,0.606,0.472
0.4,2.176,1.909,1.718,1.588,1.503,1.448,1.408,1.367,1.31,1.222,1.089
0.5,3.027,2.76,2.57,2.439,2.354,2.299,2.259,2.218,2.161,2.074,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.466,0.08,-0.1,-0.121,-0.206,-0.261,-0.302,-0.343,-0.399,-0.487,-0.621
0.2,0.1,0.05,-0.165,-0.296,-0.381,-0.436,-0.476,-0.517,-0.574,-0.661,-0.795
0.3,-0.1,-0.207,-0.398,-0.528,-0.613,-0.668,-0.709,-0.75,-0.807,-0.894,-1.028
0.4,-0.281,-0.547,-0.738,-0.868,-0.953,-1.008,-1.049,-1.09,-1.146,-1.234,-1.367
0.5,-0.776,-1.042,-1.233,-1.364,-1.449,-1.504,-1.544,-1.585,-1.642,-1.729,-1.863
0.6,-1.476,-1.743,-1.934,-2.064,-2.149,-2.204,-2.244,-2.285,-2.342,-2.43,-2.563
0.7,-2.43,-2.697,-2.887,-3.018,-3.103,-3.158,-3.198,-3.239,-3.296,-3.383,-3.517
0.8,-3.687,-3.953,-4.144,-4.274,-4.359,-4.414,-4.455,-4.496,-4.552,-4.64,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.836,0.57,0.379,0.17,0.08,0.07,0.068,0.027,-0.03,-0.117,-0.251
0.2,1.129,0.863,0.672,0.542,0.4,0.38,0.361,0.32,0.263,0.176,0.042
0.3,1.559,1.293,1.102,0.972,0.887,0.832,0.791,0.75,0.694,0.606,0.472
0.4,2.176,1.909,1.718,1.588,1.503,1.448,1.408,1.367,1.31,1.222,1.089
0.5,3.027,2.76,2.57,2.439,2.354,2.299,2.259,2.218,2.161,2.074,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.466,0.08,-0.1,-0.121,-0.206,-0.261,-0.302,-0.343,-0.399,-0.487,-0.621
0.2,0.1,0.05,-0.165,-0.296,-0.381,-0.436,-0.476,-0.517,-0.574,-0.661,-0.795
0.3,-0.1,-0.207,-0.398,-0.528,-0.613,-0.668,-0.709,-0.75,-0.807,-0.894,-1.028
0.4,-0.281,-0.547,-0.738,-0.868,-0.953,-1.008,-1.049,-1.09,-1.146,-1.234,-1.367
0.5,-0.776,-1.042,-1.233,-1.364,-1.449,-1.504,-1.544,-1.585,-1.642,-1.729,-1.863
0.6,-1.476,-1.743,-1.934,-2.064,-2.149,-2.204,-2.244,-2.285,-2.342,-2.43,-2.563
0.7,-2.43,-2.697,-2.887,-3.018,-3.103,-3.158,-3.198,-3.239,-3.296,-3.383,-3.517
0.8,-3.687,-3.953,-4.144,-4.274,-4.359,-4.414,-4.455,-4.496,-4.552,-4.64,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.554,0.0263,-0.319,-0.32,-0.321,-0.322,-0.323,-0.324,-0.325,-0.326,-0.456
0.1,0.839,0.512,0.133,-0.0174,-0.132,-0.133,-0.134,-0.135,-0.136,-0.137,-0.251
0.2,1.13,1.01,0.617,0.41,0.38,0.311,0.31,0.309,0.163,0.163,0.042
0.3,1.56,1.29,1.1,1.02,0.894,0.832,0.69,0.689,0.68,0.606,0.472
0.4,2.18,1.91,1.72,1.59,1.5,1.45,1.41,1.37,1.31,1.22,1.09
0.5,3.03,2.76,2.57,2.44,2.35,2.3,2.26,2.22,2.16,2.07,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.554,0.0263,-0.319,-0.32,-0.321,-0.322,-0.323,-0.324,-0.325,-0.326,-0.456
0.1,0.445,0.0253,-0.32,-0.321,-0.322,-0.323,-0.326,-0.333,-0.399,-0.487,-0.621
0.2,0.00641,-0.166,-0.43,-0.444,-0.445,-0.488,-0.501,-0.502,-0.574,-0.661,-0.795
0.3,-0.139,-0.517,-0.614,-0.615,-0.616,-0.668,-0.709,-0.75,-0.807,-0.894,-1.03
0.4,-0.441,-0.685,-0.788,-1.02,-1.02,-1.03,-1.05,-1.09,-1.15,-1.23,-1.37
0.5,-0.786,-1.06,-1.23,-1.36,-1.45,-1.5,-1.54,-1.58,-1.64,-1.73,-1.86
0.6,-1.48,-1.74,-1.93,-2.06,-2.15,-2.2,-2.24,-2.29,-2.34,-2.43,-2.56
0.7,-2.43,-2.7,-2.89,-3.02,-3.1,-3.16,-3.2,-3.24,-3.3,-3.38,-3.52
0.8,-3.69,-3.95,-4.14,-4.27,-4.36,-4.41,-4.46,-4.5,-4.55,-4.64,-4.77
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.394,0.0006,-0.139,-0.289,-0.291,-0.356,-0.358,-0.359,-0.36,-0.363,-0.456
0.1,0.904,0.531,0.329,-0.0508,-0.0912,-0.181,-0.185,-0.186,-0.187,-0.188,-0.251
0.2,1.13,0.798,0.693,0.434,0.27,0.0815,0.0572,0.0562,0.0474,0.0395,0.0385
0.3,1.56,1.41,1.11,0.885,0.783,0.559,0.558,0.442,0.305,0.292,0.291
0.4,2.18,1.91,1.66,1.47,1.29,0.946,0.945,0.806,0.805,0.804,0.803
0.5,3.03,2.76,2.57,2.44,2.35,2.3,2.26,2.22,2.16,2.07,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.394,0.0006,-0.139,-0.289,-0.291,-0.356,-0.358,-0.359,-0.36,-0.363,-0.456
0.1,0.224,-0.0722,-0.221,-0.375,-0.443,-0.465,-0.466,-0.496,-0.604,-0.691,-0.836
0.2,-0.362,-0.377,-0.748,-0.758,-0.759,-0.859,-0.86,-0.921,-1.28,-1.4,-1.53
0.3,-0.646,-0.864,-1.19,-1.22,-1.28,-1.31,-1.4,-1.45,-1.5,-1.6,-1.73
0.4,-0.923,-1.44,-1.66,-1.74,-1.95,-2.01,-2.04,-2.08,-2.14,-2.22,-2.33
0.5,-1.48,-1.74,-2.36,-2.36,-2.45,-2.55,-2.6,-2.65,-2.75,-2.86,-2.94
0.6,-2.43,-2.7,-3.34,-3.56,-3.65,-3.7,-3.73,-3.78,-3.81,-3.81,-3.92
0.7,-3.69,-3.95,-4.14,-4.16,-4.33,-4.41,-4.46,-4.5,-4.55,-4.64,-4.77
0.8,-4.89,-5.12,-5.33,-5.41,-5.96,-6.01,-6.11,-6.16,-6.2,-6.3,-6.4
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.836,0.57,0.379,0.17,0.08,0.07,0.068,0.027,-0.03,-0.117,-0.251
0.2,1.129,0.863,0.672,0.542,0.4,0.38,0.361,0.32,0.263,0.176,0.042
0.3,1.559,1.293,1.102,0.972,0.887,0.832,0.791,0.75,0.694,0.606,0.472
0.4,2.176,1.909,1.718,1.588,1.503,1.448,1.408,1.367,1.31,1.222,1.089
0.5,3.027,2.76,2.57,2.439,2.354,2.299,2.259,2.218,2.161,2.074,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.466,0.08,-0.1,-0.121,-0.206,-0.261,-0.302,-0.343,-0.399,-0.487,-0.621
0.2,0.1,0.05,-0.165,-0.296,-0.381,-0.436,-0.476,-0.517,-0.574,-0.661,-0.795
0.3,-0.1,-0.207,-0.398,-0.528,-0.613,-0.668,-0.709,-0.75,-0.807,-0.894,-1.028
0.4,-0.281,-0.547,-0.738,-0.868,-0.953,-1.008,-1.049,-1.09,-1.146,-1.234,-1.367
0.5,-0.776,-1.042,-1.233,-1.364,-1.449,-1.504,-1.544,-1.585,-1.642,-1.729,-1.863
0.6,-1.476,-1.743,-1.934,-2.064,-2.149,-2.204,-2.244,-2.285,-2.342,-2.43,-2.563
0.7,-2.43,-2.697,-2.887,-3.018,-3.103,-3.158,-3.198,-3.239,-3.296,-3.383,-3.517
0.8,-3.687,-3.953,-4.144,-4.274,-4.359,-4.414,-4.455,-4.496,-4.552,-4.64,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.836,0.57,0.379,0.17,0.08,0.07,0.068,0.027,-0.03,-0.117,-0.251
0.2,1.129,0.863,0.672,0.542,0.4,0.38,0.361,0.32,0.263,0.176,0.042
0.3,1.559,1.293,1.102,0.972,0.887,0.832,0.791,0.75,0.694,0.606,0.472
0.4,2.176,1.909,1.718,1.588,1.503,1.448,1.408,1.367,1.31,1.222,1.089
0.5,3.027,2.76,2.57,2.439,2.354,2.299,2.259,2.218,2.161,2.074,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.11,-0.04,-0.04,-0.041,-0.096,-0.137,-0.178,-0.234,-0.322,-0.456
0.1,0.466,0.08,-0.1,-0.121,-0.206,-0.261,-0.302,-0.343,-0.399,-0.487,-0.621
0.2,0.1,0.05,-0.165,-0.296,-0.381,-0.436,-0.476,-0.517,-0.574,-0.661,-0.795
0.3,-0.1,-0.207,-0.398,-0.528,-0.613,-0.668,-0.709,-0.75,-0.807,-0.894,-1.028
0.4,-0.281,-0.547,-0.738,-0.868,-0.953,-1.008,-1.049,-1.09,-1.146,-1.234,-1.367
0.5,-0.776,-1.042,-1.233,-1.364,-1.449,-1.504,-1.544,-1.585,-1.642,-1.729,-1.863
0.6,-1.476,-1.743,-1.934,-2.064,-2.149,-2.204,-2.244,-2.285,-2.342,-2.43,-2.563
0.7,-2.43,-2.697,-2.887,-3.018,-3.103,-3.158,-3.198,-3.239,-3.296,-3.383,-3.517
0.8,-3.687,-3.953,-4.144,-4.274,-4.359,-4.414,-4.455,-4.496,-4.552,-4.64,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.586,0.064,-0.183,-0.238,-0.239,-0.246,-0.247,-0.249,-0.252,-0.296,-0.451
0.100,0.861,0.577,0.181,-0.054,-0.081,-0.089,-0.094,-0.102,-0.103,-0.125,-0.252
0.200,1.187,1.117,0.767,0.471,0.283,0.232,0.174,0.170,0.169,0.122,0.042
0.300,1.567,1.493,1.370,1.009,0.846,0.761,0.739,0.707,0.668,0.595,0.472
0.400,2.176,1.915,1.762,1.520,1.289,1.063,0.966,0.955,0.829,0.828,0.827
0.500,3.027,2.760,2.568,2.348,2.084,1.798,1.509,1.262,1.126,1.551,1.913
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.586,0.064,-0.183,-0.238,-0.239,-0.246,-0.247,-0.249,-0.252,-0.296,-0.451
0.100,0.475,0.063,-0.184,-0.239,-0.240,-0.288,-0.321,-0.349,-0.396,-0.486,-0.621
0.200,0.103,0.041,-0.356,-0.393,-0.433,-0.461,-0.477,-0.517,-0.558,-0.654,-0.795
0.300,-0.030,-0.279,-0.600,-0.645,-0.660,-0.708,-0.730,-0.751,-0.790,-0.884,-1.028
0.400,-0.349,-0.701,-0.956,-1.032,-1.078,-1.104,-1.105,-1.106,-1.121,-1.227,-1.367
0.500,-0.891,-1.179,-1.338,-1.353,-1.378,-1.450,-1.451,-1.523,-1.619,-1.729,-1.863
0.600,-1.484,-1.715,-1.892,-1.973,-2.100,-2.133,-2.195,-2.284,-2.342,-2.430,-2.563
0.700,-2.430,-2.696,-2.884,-3.017,-3.103,-3.158,-3.198,-3.239,-3.296,-3.383,-3.517
0.800,-3.687,-3.953,-4.144,-4.274,-4.359,-4.414,-4.455,-4.496,-4.552,-4.640,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.464,-0.079,-0.183,-0.263,-0.264,-0.307,-0.339,-0.340,-0.342,-0.419,-0.420
0.100,0.835,0.518,0.154,-0.041,-0.116,-0.167,-0.170,-0.176,-0.187,-0.245,-0.253
0.200,1.149,1.011,0.628,0.388,0.223,0.222,0.160,-0.025,-0.026,-0.031,-0.032
0.300,1.568,1.435,1.281,0.969,0.769,0.627,0.457,0.446,0.429,0.394,0.393
0.400,2.175,1.839,1.664,1.416,1.291,1.090,0.810,0.608,0.607,0.606,0.605
0.500,3.027,2.758,2.521,2.247,1.891,1.799,1.758,1.634,2.087,1.754,1.848
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.464,-0.079,-0.183,-0.263,-0.264,-0.307,-0.339,-0.340,-0.342,-0.419,-0.420
0.100,0.463,-0.080,-0.184,-0.277,-0.308,-0.310,-0.340,-0.345,-0.399,-0.482,-0.616
0.200,0.106,-0.141,-0.416,-0.444,-0.472,-0.475,-0.524,-0.528,-0.574,-0.658,-0.795
0.300,-0.028,-0.213,-0.687,-0.712,-0.719,-0.774,-0.774,-0.775,-0.832,-0.896,-1.028
0.400,-0.386,-0.593,-1.057,-1.064,-1.071,-1.103,-1.105,-1.107,-1.123,-1.226,-1.367
0.500,-0.845,-1.033,-1.328,-1.368,-1.430,-1.433,-1.465,-1.489,-1.590,-1.708,-1.863
0.600,-1.377,-1.622,-1.909,-1.914,-1.915,-1.962,-2.038,-2.129,-2.303,-2.407,-2.563
0.700,-2.411,-2.596,-2.612,-2.614,-2.665,-2.885,-2.905,-3.008,-3.065,-3.339,-3.517
0.800,-3.687,-3.951,-3.989,-3.887,-4.006,-4.095,-4.011,-4.135,-4.380,-4.607,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.086,-0.208,-0.262,-0.289,-0.290,-0.314,-0.332,-0.333,-0.335,-0.456
0.100,0.858,0.612,0.140,-0.093,-0.142,-0.143,-0.147,-0.153,-0.193,-0.194,-0.252
0.200,1.151,0.985,0.735,0.464,0.242,0.241,0.228,0.157,0.020,0.019,0.019
0.300,1.561,1.396,1.241,0.970,0.761,0.570,0.509,0.493,0.492,0.491,0.470
0.400,2.176,1.912,1.724,1.550,1.337,1.101,0.793,0.727,0.726,0.725,0.724
0.500,3.027,2.760,2.570,2.438,2.344,2.250,2.030,1.929,2.112,2.074,1.940
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.086,-0.208,-0.262,-0.289,-0.290,-0.314,-0.332,-0.333,-0.335,-0.456
0.100,0.466,0.043,-0.209,-0.274,-0.290,-0.291,-0.316,-0.348,-0.397,-0.487,-0.621
0.200,0.100,-0.037,-0.226,-0.303,-0.389,-0.466,-0.525,-0.545,-0.574,-0.661,-0.795
0.300,-0.146,-0.382,-0.612,-0.613,-0.748,-0.801,-0.803,-0.808,-0.808,-0.894,-1.028
0.400,-0.329,-0.665,-0.860,-0.980,-1.212,-1.227,-1.228,-1.230,-1.230,-1.234,-1.367
0.500,-0.843,-1.271,-1.445,-1.500,-1.537,-1.551,-1.551,-1.583,-1.642,-1.729,-1.863
0.600,-1.510,-1.782,-1.952,-2.062,-2.150,-2.199,-2.230,-2.282,-2.342,-2.430,-2.563
0.700,-2.383,-2.624,-2.845,-2.943,-2.983,-3.025,-3.190,-3.239,-3.296,-3.383,-3.517
0.800,-3.687,-3.953,-4.144,-4.273,-4.326,-4.403,-4.455,-4.496,-4.552,-4.640,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.086,-0.208,-0.262,-0.289,-0.290,-0.314,-0.332,-0.333,-0.335,-0.456
0.100,0.858,0.612,0.140,-0.093,-0.142,-0.143,-0.147,-0.153,-0.193,-0.194,-0.252
0.200,1.151,0.985,0.735,0.464,0.242,0.241,0.228,0.157,0.020,0.019,0.019
0.300,1.561,1.396,1.241,0.970,0.761,0.570,0.509,0.493,0.492,0.491,0.470
0.400,2.176,1.912,1.724,1.550,1.337,1.101,0.793,0.727,0.726,0.725,0.724
0.500,3.027,2.760,2.570,2.438,2.344,2.250,2.030,1.929,2.112,2.074,1.940
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
default,0,1.39,2.78,4.17,5.56,6.94,8.33,9.72,11.11,12.5,13.89
0,0.570,0.086,-0.208,-0.262,-0.289,-0.290,-0.314,-0.332,-0.333,-0.335,-0.456
0.100,0.466,0.043,-0.209,-0.274,-0.290,-0.291,-0.316,-0.348,-0.397,-0.487,-0.621
0.200,0.100,-0.037,-0.226,-0.303,-0.389,-0.466,-0.525,-0.545,-0.574,-0.661,-0.795
0.300,-0.146,-0.382,-0.612,-0.613,-0.748,-0.801,-0.803,-0.808,-0.808,-0.894,-1.028
0.400,-0.329,-0.665,-0.860,-0.980,-1.212,-1.227,-1.228,-1.230,-1.230,-1.234,-1.367
0.500,-0.843,-1.271,-1.445,-1.500,-1.537,-1.551,-1.551,-1.583,-1.642,-1.729,-1.863
0.600,-1.510,-1.782,-1.952,-2.062,-2.150,-2.199,-2.230,-2.282,-2.342,-2.430,-2.563
0.700,-2.383,-2.624,-2.845,-2.943,-2.983,-3.025,-3.190,-3.239,-3.296,-3.383,-3.517
0.800,-3.687,-3.953,-4.144,-4.273,-4.326,-4.403,-4.455,-4.496,-4.552,-4.640,-4.774
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
default,0,13.89
0.0,0.57,-0.456
0.5,3.027,1.94
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
default,0,13.89
0.0,0.57,-0.456
0.8,-3.687,-4.774
Loading
Loading