-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added description to Fuzzy Controller and Console
- Loading branch information
1 parent
5fd1f1b
commit cc54103
Showing
3 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,68 @@ | ||
# console | ||
## How this module works | ||
``` | ||
Welcome to SDC console! | ||
>> sdc | ||
SDC CONSOLE APP | ||
SDC stands for Self-Driving Cars. | ||
So this app allows you to simulate some modules of SDC within a console. | ||
All modules can be called by: | ||
sdc module --mode | ||
All information modules can be called by: | ||
sdc -commands | ||
sdc -help | ||
Main modules: | ||
imu | Inertial Measurement Unit (GPS, gyro, accelerometer) | ||
gps | GPS | ||
gyro | Gyroscope | ||
accel | Accelerometer | ||
lidar | Lidar | ||
fuzzy | Fuzzy Controller | ||
nn | Neural Network | ||
test | Unit-tests for each module | ||
exit | Exit | ||
``` | ||
``` | ||
>> sdc -commands | ||
Main modules: | ||
imu | Inertial Measurement Unit (GPS, gyro, accelerometer) | ||
gps | GPS | ||
gyro | Gyroscope | ||
accel | Accelerometer | ||
lidar | Lidar | ||
fuzzy | Fuzzy Controller | ||
nn | Neural Network | ||
test | Unit-tests for each module | ||
exit | Exit | ||
``` | ||
``` | ||
>> sdc -help | ||
SDC CONSOLE APP | ||
SDC stands for Self-Driving Cars. | ||
So this app allows you to simulate some modules of SDC within a console. | ||
All modules can be called by: | ||
sdc module --mode | ||
All information modules can be called by: | ||
sdc -commands | ||
sdc -help | ||
``` | ||
``` | ||
>> sdc gps | ||
sdc gps: | ||
--p | GPS (position) | ||
--v | GPS (velocity) | ||
--a | GPS (acceleration) | ||
``` | ||
``` | ||
>> sdc gyro | ||
sdc gyro: | ||
--const | Gyroscope (constant angle) | ||
--nu | Gyroscope (non-uniform rotation) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,48 @@ | ||
# fuzzy_controller | ||
The **Fuzzy Controller** module is used for counting speed of a car according to the *distance* between it and *next* and *previous* points on the map. | ||
In this program we need to pass a value of distance to the input of the **fuzzy controller** and get a value of speed as an output. | ||
## How this module works | ||
``` | ||
Welcome to SDC console! | ||
>> sdc | ||
SDC CONSOLE APP | ||
SDC stands for Self-Driving Cars. | ||
So this app allows you to simulate some modules of SDC within a console. | ||
All modules can be called by: | ||
sdc module --mode | ||
All information modules can be called by: | ||
sdc -commands | ||
sdc -help | ||
Main modules: | ||
imu | Inertial Measurement Unit (GPS, gyro, accelerometer) | ||
gps | GPS | ||
gyro | Gyroscope | ||
accel | Accelerometer | ||
lidar | Lidar | ||
fuzzy | Fuzzy Controller | ||
nn | Neural Network | ||
test | Unit-tests for each module | ||
exit | Exit | ||
``` | ||
``` | ||
>> sdc fuzzy | ||
Select one of these options: | ||
1) Enter distance and get speed once, | ||
2) Describe relationship between distance and speed in the graph. | ||
Please, enter 1 or 2: 1 | ||
Distance (m): 14 | ||
Speed = 30.0 km/h | ||
``` | ||
``` | ||
>> sdc fuzzy | ||
Select one of these options: | ||
1) Enter distance and get speed once, | ||
2) Describe relationship between distance and speed in the graph. | ||
Please, enter 1 or 2: 2 | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.