Skip to content

GeorgiosEtsias/Time-series-prediction-NARX

Repository files navigation

Time series prediction using NARX

The project uses a nonlinear autoregressive exogenous (NARX) model to make time-series prediction on data obtained from drive cycling testing on buses. In total 25 data-series (bus2data.m), corresponding to three different drive cycles were obtained from the same bus. In each dataset four variables were experimentally quantified: engine torque, engine speed, air temperature intake, and exhaust fume temperature. Exhaust fume temperature served as the output variable, while the remaining 3 were the inputs of the NARX.

alt text

Figure 1: A bus in the streets of Belfast (source)

Code description

Five different MATLAB scripts were included in the repository:

Repository structure

┌── Data/
│ │── AllData.png
│ └── Bus2Data.mat
│── OptimallyTrainedANNs/
│ │── netbest.mat
│ └── netcbest.mat 
│── Photos/
│ └── BusBelfast.jpg
│── Results/
│ └── Prediction.png
│── DataPreProcessingBus2.m
│── Prediction.m
│── PredictionOpenClose.m
│── README.md
│── TrainANN.m
└── TrainANNsinLoop.m

Data pre-processing

Data pre-processing is conducted in DataPreProcessingBus2.m. The data are modified in order to create a single training dataset, containing 22 of the 25 time series. Three datasets, one from each corresponding driving cycle, were not involved in training, instead they were used to evaluate NARX’s generalization ability.

alt text Figure 2: The 25 utilized exhaust fume temperature timeseries

Training

Two different scripts for ANN training are included. TrainANN.m trains a NARX with 10 hidden neurons and an input delay of 2. This network architecture was decided via trial and error. A typical divison of the training data sat in training (70%), validation (15%), and testing (%) subsets was used to prevent overfitting. TrainANNsinLoop.m includes the same training procedure in a loop. A number of models are trained, their performance on the 3 testing datasets is quantified but only the ‘best’ model is saved.

Prediction

Two variation of prediction scripts were included. The first one (Prediction.m)makes a strictly closed-loop prediction of the tree testing datasets, while PredictionOpenClose.m uses executes an open-loop prediction for the initial 1/3 of the test sets and a closed-loop prediction for the remaining data-points.

Results

The optimally trained NARX was able to successfully predict all 3 testing datasets, each one corresponding to a single driving cycle. For the first 1/3 of the prediction an opened loop NARX version was utilised, while for the remaining time series data points a closed-loop one was employed.

alt text

Figure 3: Real and predicted values of exhaust fume temperature on the testing dataset corresponding to drive cycle1 (upper), drive cycle 2 (middle) and drive cycle 3 (bottom).

About

The project uses a nonlinear autoregressive exogenous (NARX), model to make time-series prediction on data obtained from drive cycling testing on buses

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages