All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Mini Project - Vehicle Direction Determination General Overview: Identifying the direction of the vehicle is one of the important & diverse features in Autonomous driving & Advanced Driver Assistance Features. This particular sub-feature…
Racha Pavan Kumar
updated on 02 Apr 2022
Mini Project - Vehicle Direction Determination
General Overview:
Identifying the direction of the vehicle is one of the important & diverse features in Autonomous driving & Advanced Driver Assistance Features. This particular sub-feature of identifying the direction of vehicle is basically identifying the direction the vehicle is taking based on the camera input.
Camera reads the road signs & stores into its memory with unique values for left turn, right turn & straight drive. Depending on the direction it is taking, final indication is given to the driver – as an indication if he is driving in the recommended direction or not.
Vehicle Direction Determination can also be coupled along - side features like GPS systems to identify whether the vehicle is reaching its destination in an optimized manner. This sub feature can also be used along with Lane Detection, Highway Warning, Ramp Entry / Exit in Wrong Way Detection etc.
Objective of Mini Project:
Requirement - 1:
Requirement – 2:
Signals & Calibration Data List:
Signal / Calibration Name |
Signal Type |
Data Type |
Dimension |
Min |
Max |
Initial Value |
Units |
SteeringWheel_YawDegreeInput |
Input |
Int16 |
1 |
-180 |
180 |
- |
Deg |
CameraInput_RoadSign |
Input |
Boolean |
1 |
0 |
1 |
- |
- |
Vehicle_Turn_Status |
Local |
Int16 |
1 |
-180 |
180 |
- |
Deg |
Right_Turn_AngularLimit |
Calibration |
Int16 |
[1 1] |
-180 |
180 |
30 |
Deg |
Left_Turn_AngularLimit |
Calibration |
Int16 |
[1 1] |
-180 |
180 |
-120 |
Deg |
Straight_Drive_Steering_Angle |
Calibration |
Int16 |
[1 1] |
-180 |
180 |
0 |
Deg |
RightTurn_RoadSign |
Calibration |
Int16 |
[1 1] |
-180 |
180 |
30 |
|
LeftTurn_RoadSign |
Calibration |
Int16 |
[1 1] |
-180 |
180 |
-120 |
|
Straight_RoadSign |
Calibration |
Int16 |
[1 1] |
-180 |
180 |
0 |
|
Vehicle_Direction_Indicator |
Output |
Boolean |
1 |
0 |
1 |
- |
- |
AIM:
AIM:
Here we have to develop a MATLAB / Simulink model of vehicle_direction_determination as per the requirement of document
Here we have to do tagging to the model i.e. tagging requirement 1 & requirement 2 to their corresponding subsystems is fine
We have to create Simulink data dictionary, model in loop in testing and software in loop testing and also code generation
Here they have given 2 requirement’s Requirement 1 & Requirement 2
Requirement - 1:
Requirement – 2:
Below fig: is the main subsystem with 2 inputs SteeringWheel_YawDegreeInput & CameraInput_RoadSign and Single Output Vehicle_Direction_indicator
It is further more divided into two subsystems they are Requirement 1 & Requirement 2
Requirement_1:
Here in the Requirment_1 SteeringWheel_YawDegreeInput is Compared against 3 Calibration Values Right_Turn_AngularLimit, Left_Turn_AngularLimit & Straight_Drive_Steering_Angle and we have used the Switch blocks if else logic in these subsystems to achieve the output and the output of this logic is fed to Vehicle_Turn_Status again these Vehicle_Turn_Status is fed as input to Requirement_2
Requirement_2
In these requirement_2 the output of requirement_1 Vehicle_Turn_Status is fed as input to the requirement_2 subsystem and these is compared against 3 Calibration values i.e. RightTurn_RoadSign, LeftTurn_RoadSign & Staright_RoadSign if the values of these Road signs are found equal and they are compared aginst CameraInput_RoadSign and output is fed to Vehicle_Direction_Indicator
Creation Of Simulink Data Dictionary file (SLDD):
SLDD file contains all the inputs, outputs & calibration parameters used in the Simulink model to create sldd file open the required Simulink file then go to modeling in that again go to link to data dictionary create a new SLDD file
SLDD file:
MAAB GUIDELINES CHECK IN THE MODEL ADVISOR:
This is performed using model advisor tool in Simulink it is done to make sure that the developed model meets the modeling standards for MAAB
Go to modeling in that select model advisor
select the required model model
after that select by task and tick the modeling standard for MAB
Then run selected checks a report will be generated as shown in the below figure
CREATION OF MODEL IN LOOP (MIL) for Vehicle_Direction Subsystem:
In order to create MIL select Vehicle_Direction Subsystem right click on it select Test Harness create Subsystem select Signal Builder as input and outport block as output as shown in below fig:
Here input test signals are SteeringWheel_YawDegreeInput & CameraInput_RoadSign
Create Harness input in Excel file and import these input harness signals into signal builder block
After importing the input harness Run the model:
CREATION OF SOFTWARE IN LOOP for Vehicle_Direction
Before creating SIL Template Test, we have to change configuration parameters in modeling i.e. type should be changed to fixed step and solver to discreate (no continuous state) as shown below:
Same in configuration parameters select code generation option i.e. system target file should be ert.tlc embedded coder
Open the input model and create a subsystem as below:
next right click on model > go to C/C++ Code > go to generate S function > tick the create software in loop (SIL) block > click on build option this method will generate the code from the subsystem and also creates SIL block
Generated code :
Vehicle_Direction0.c
/*
* File: Vehicle_Direction0.c
*
* Code generated for Simulink model 'Vehicle_Direction0'.
*
* Model version : 1.16
* Simulink Coder version : 9.5 (R2021a) 14-Nov-2020
* C/C++ source code generated on : Wed Mar 30 19:23:03 2022
*
* Target selection: ert.tlc
* Embedded hardware selection: Intel->x86-64 (Windows64)
* Code generation objectives: Unspecified
* Validation result: Not run
*/
#include "Vehicle_Direction0.h"
#include "Vehicle_Direction0_private.h"
/* External inputs (root inport signals with default storage) */
ExtU_Vehicle_Direction0_T Vehicle_Direction0_U;
/* External outputs (root outports fed by signals with default storage) */
ExtY_Vehicle_Direction0_T Vehicle_Direction0_Y;
/* Real-time model */
static RT_MODEL_Vehicle_Direction0_T Vehicle_Direction0_M_;
RT_MODEL_Vehicle_Direction0_T *const Vehicle_Direction0_M =
&Vehicle_Direction0_M_;
/* Model step function */
void Vehicle_Direction0_step(void)
{
int32_T rtb_Vehicle_Turn_Status;
/* Switch: '
* Constant: '
* Constant: '
* Constant: '
* Constant: '
* Inport: '
* RelationalOperator: '
* RelationalOperator: '
* RelationalOperator: '
* Switch: '
* Switch: '
*/
if (Vehicle_Direction0_U.SteeringWheel_YawDeegreInput ==
Right_Turn_AngularLimit) {
rtb_Vehicle_Turn_Status = Right_Turn_AngularLimit;
} else if (Vehicle_Direction0_U.SteeringWheel_YawDeegreInput ==
Left_Turn_AngularLimit) {
/* Switch: '
* Constant: '
*/
rtb_Vehicle_Turn_Status = Left_Turn_AngularLimit;
} else if (Vehicle_Direction0_U.SteeringWheel_YawDeegreInput ==
Straight_Drive_Steering_Angle) {
/* Switch: '
* Constant: '
* Switch: '
*/
rtb_Vehicle_Turn_Status = Straight_Drive_Steering_Angle;
} else {
/* Switch: '
* Constant: '
* Switch: '
*/
rtb_Vehicle_Turn_Status = 0;
}
/* End of Switch: '
/* Outport: '
* Constant: '
* Constant: '
* Constant: '
* Inport: '
* Logic: '
* Logic: '
* Logic: '
* RelationalOperator: '
* RelationalOperator: '
* RelationalOperator: '
*/
Vehicle_Direction0_Y.Vehicle_Direction_indicator[0] = (CameraInput_RoadSign ||
(rtb_Vehicle_Turn_Status == RightTurn_RoadSign));
Vehicle_Direction0_Y.Vehicle_Direction_indicator[1] = (CameraInput_RoadSign ||
(rtb_Vehicle_Turn_Status == LeftTurn_RoadSign));
Vehicle_Direction0_Y.Vehicle_Direction_indicator[2] = (CameraInput_RoadSign ||
(rtb_Vehicle_Turn_Status == Straight_RoadSign));
}
/* Model initialize function */
void Vehicle_Direction0_initialize(void)
{
/* (no initialization code required) */
}
/* Model terminate function */
void Vehicle_Direction0_terminate(void)
{
/* (no terminate code required) */
}
/*
* File trailer for generated code.
*
* [EOF]
*/
Open the input model and create a subsystem as below:
AGAIN, WE HAVE to create test harness and input should be signal builder block and output should be out ports as below:
Next we have to import input data harness input (test signals) from excel file to signal builder block
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 1 Understanding Different Battery Chemistry
Week 1 Understanding Different Battery Chemistry 1.Prepare a table which includes materials & chemical reactions occurring at the anode and cathode of LCO, LMO, NCA,…
01 Aug 2022 04:43 PM IST
Project 2-Highway Assistant-Lane Changing Assistant
Highway Assistant – Lane Changing Assistant Introduction to the Feature: The Highway Assistant supports the driver and takes over the longitudinal and lateral guidance of the vehicle in monotonous driving situations on highways. The partially automated function can automatically start, accelerate, brake as well as…
29 Jul 2022 05:52 PM IST
Project 1- Traffic Jam Assistant Feature
Traffic Jam Assistant Feature Aim: - Development of a single feature of Traffic Jam Assist Model using MATLAB &…
14 Jun 2022 05:12 PM IST
Project 2 Adaptive Cruise Control
AIM: Adaptive cruise control (ACC) is an available cruise control advanced driver-assistance system for road vehicles that automatically adjusts the vehicle speed to maintain a safe distance from vehicles ahead. As of 2019, it is also called by 20 unique names that describe that basic functionality. This is also known…
26 Apr 2022 03:59 PM IST
Related Courses
8 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.