SlideShare a Scribd company logo
A generic approach
for the rescheduling
of public transit
services Dimitris Rizopoulos, M.Sc. student
Prof. Georgios K.D. Saharidis
University of Thessaly
Presentation for the 5th International Conference on Energy, Sustainability and Climate Change
Contents of the presentation
1. The problem of rescheduling timetables
2. The data & the literature
3. Outline of the approach and the modelling assumptions
4. Pre-optimization stage of the approach
5. The mathematical models used for the optimization of the timetables
6. Post-optimization stage of the approach
7. Case study: Athens’ metro system
8. Meaning of results and next steps
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
2
The problem (1)
Definition: Given a timetable of a set of routes R, a set of trips T and a set of
stops S of a public transit agency, decide on the changes* on the timetable that
will result on a new timetable whose routes and trips will reduce the waiting
time at the stops of the network where a passenger can make a transition
from one route to another
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
3
Important note: The problem is interconnected with
the problem of journey/route planning and multi-
modality. In order for us to consider Waiting Time,
we need to first analyze a network and check where
and when a passenger can change modes of
transport or hop on and off a bus/metro route
The problem (2)
• A graphical representation of a journey that can be rescheduled
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
4
• The whole multi-modal trip from Larisa to Volos
in Central Greece
• The part of the journey inside Volos which could benefit from our
rescheduling optimization approach
The data & the literature (1)
The data – General transit feed
specification(GTFS)
A set of rules according to which every public
transport agency should publish their
schedules and information about their
network
Goal of the specification: Provide a framework
through which those data could be
incorporated into any platform or digital
system
A single feed of GTFS data is a collection of 6
up to 13 files in .csv format contained within
a .zip file.
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
5
The data & the literature (2)
Previous work on the problem
The scheduling of transit networks or problem of timetabling has been addressed in several studies.
Differences between the studies refer to:
• Definition of the welfare of the passengers or the operators of the services
• Definition of what waiting time is
• Definition of a transitional node – Nodes that a passenger can make a transition from one mode or trip to
another
• Techniques to model and solve the problem – Genetic algorithms, Global optimization, Variable
neighborhood search
What we noticed: Great results, but most approaches were case-specific and ad-hoc.
What our work is proposing
Create a way to solve a problem based on GTFS integration models which will work for any agency that will
provide their data in GTFS format
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
6
Outline of the approach & modelling
assumptions
The analysis happens in three stages:
1. Pre-optimization phase: The data are analyzed and only specific parts of them are kept and
stored in specific data structures
2. Optimization phase: The mathematical models introduced are utilized to produce the results
3. Post-optimization phase: Results are combined into a weekly schedule that can be used by the
public transit agencies
Assumptions:
• Arrival time at a stop of the network is the same the departure time and we will call it Time of
Service(ToS) of the stop
• Waiting time exists only between two services of different routes that serve a single node of the network
• Waiting time exists only between two services whose difference in ToS is only between 2 min at minimum
and 20 at maximum
• Waiting time exists only between services that start in the same day – Daily analysis
• All analysis of ToS happens in minutes
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
7
Pre-optimization stage
The goal: Analyze the network and find the smallest
part of the data that should incorporated into the
model and analyzed.
Steps to follow:
• GTFS data are read, analyzed and stored in the
appropriate data structures
• The nodes of the network where there is an
intersection and create a simplified network
• A number of feasible transitions are measured
between at the nodes where pairs of routes intersect
• Group the several feasible transactions into separate
days – in order to reduce size of models
• We decide on the number of variables and constraints
that should be declared in the main-optimization
phase of the approach.
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
8
Mathematical models used
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
9
Indices
r
Index used to indicate route
𝑡
Index used to indicate trip
𝑠
Index used to indicate the stop
Parameters
𝑁𝑆𝐷𝑇𝒔𝒓𝒕
Non-synchronized departure times
for route r and trip t at stop s
(current)
𝑁𝑆𝐴𝑇𝒔𝒓𝒕
Non-synchronized arrival times for
route r and trip t at stop s (current)
𝐴𝑃𝑟𝑡
Allowed Percentage of change in
departure or arrival time for route
r (determined in pre-optimization)
𝑅𝐹𝑟𝑡
Route Frequency of the execution
of the trips for a route r (calculated
in pre-optimization)
𝑇𝑇𝑠1 𝑠2 𝑟𝑡
Transportation time between stop s1,
stop s2, route r and trip t
𝑻𝑹 𝒔,𝒓𝟏,𝒕𝟏,𝒓𝟐,𝒕𝟐
Time required for the transition
between service of r1 and t1, and
service of r2 and t2
Decision Variables
𝑇𝑂𝑆𝑠𝑟𝑡
Time when route r with trip t
serves the stop s
The mathematical model used
Post-optimization analysis
Goal of the analysis is to turn the optimization results into a meaningful
result for the agency operating the public transit services
*Notice: We have optimized the waiting time for the transitions for each separate day of the week
Since we have a set of 7 solutions for the same problem, they need to be efficiently combined in order
to produce a pareto-optimal solution.
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
10
Use the schedule
for each day as is
Create a new solution space
for the problem and solve a
LP
Sweet spot in the analysis:
Use optimized parts of the schedule that are
unique for a specific day and optimize on a
second level the parts of the opt. schedule that
run for multiple days
Final decision depends completely on the operators and their criteria.
Let’s move on to see a case study for our approach ..
Case study of Athens’ Metro (1)
The network investigated
• Number of stations: 65
• Number of stations that a transition can happen: 4
• Number of routes: 3
• Number of trips throughout the week: 3636
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
11
Route Route(from –
to)
Number of
stations
Avg.
duration of
trips
Established
in
Last
development
happened in
1 Piraius –
Kifissia
24 51 min 1869 2004
2 Anthoupoli –
Elliniko
20 29 min 2000 2013
3 Agia Marina
– El.
Venizelos
Airport
21 50 min 2000 2013
Results matrix for the case of Athens
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
12
Monday Tuesday Wednesday Thursday Friday Saturday Sunday Weekly
Non-synced 290520 min 290520 min 290520 min 290520 min 301867 min 91665 min 88943 min 1.644.555 min
Parameter(
𝑨𝑷 𝒓𝒕, 𝑹𝑭 𝒓𝒕)
285566
1.7%
285556
1.7%
285566
1.7%
285566
1.7%
296761
1.69%
88560
3.37%
86017
3.28%
1.613.602
1.88%
±𝟏𝟓 280122
3.57%
280122
3.57%
280122
3.57%
280122
3.57%
291263
3.51%
87539
4.49%
84757
4.7%
1.584.047
3.67%
±𝟑𝟎 271122
6.67%
271122
6.67%
271122
6.67%
271122
6.67%
281876
6.62%
84548
7.76%
82029
7.77%
1.532.941
6.78%
±𝟒𝟓 264236
9.04%
264236
9.04%
264236
9.04%
264236
9.04%
274966
8.91%
82105
10.4%
79636
10.4%
1.493.651
9.17%
Time needed for
preprocessing
5309.77 s 5703.70 s 5396.80 s 4893.29 s 6438.14 s 1936.56 s 2095.94 s
-
Time needed for the
optimization(avg.)
2.09 s 1.70 s 2.06 s 1.95 s 2.06 s 0.57 s 0.50 s
-
Cells that refer to the optimization cases
( 𝑤𝑎𝑖𝑡𝑖𝑛𝑔 𝑡𝑖𝑚𝑒 𝑎𝑓𝑡𝑒𝑟 𝑜𝑝𝑡𝑖𝑚𝑖𝑧𝑎𝑡𝑖𝑜𝑛
𝑝𝑒𝑟𝑐𝑒𝑛𝑡𝑎𝑔𝑒 𝑜𝑓 𝑟𝑒𝑑𝑢𝑐𝑡𝑖𝑜𝑛)
Case study of Athens’ Metro (2)
Meaning of results & next steps
For the specific application of rescheduling:
• Less overall waiting time is feasible to be achieved by rescheduling but messing with the schedule of the agency can be
tricky, so any kind of changes require effective communication in order to be applied
For the methodology and how to approach such problems:
• Multi-stage analysis and the use of appropriate data structures can lead to smaller model sizes by selecting parts of the data
to include in the optimization phase – where exhaustive search is applied
• A pre-optimization stage requires(in most of the cases) a post optimization phase
• A pre-optimization phase gives us more flexibility on how to model the problem and solve a model that is not associated with
meaning for the physical system without a post-optimization phase
Questions to be answered:
• How does the execution times change with bigger networks and datasets?
• How to include the criteria for the systems operators?
• What is the best way to communicate the results to the agencies?
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
13
Thank you for your attention.
5thInternationalConferenceonEnergy,Sustainabilityand
ClimateChange,ESCC,4-6June2018,Mykonos,Greece
14
Are there any questions?
P.S. Send us data from your region to reschedule them.
dimrizopoulos@gmail.com

More Related Content

What's hot

MACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORING
MACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORINGMACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORING
MACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORING
VisionGEOMATIQUE2014
 
Load shedding in power system using the AHP algorithm and Artificial Neural N...
Load shedding in power system using the AHP algorithm and Artificial Neural N...Load shedding in power system using the AHP algorithm and Artificial Neural N...
Load shedding in power system using the AHP algorithm and Artificial Neural N...
IJAEMSJORNAL
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
IJERD Editor
 
IRJET- Optimal Generation Scheduling for Thermal Units
IRJET- Optimal Generation Scheduling for Thermal UnitsIRJET- Optimal Generation Scheduling for Thermal Units
IRJET- Optimal Generation Scheduling for Thermal Units
IRJET Journal
 
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Editor IJCATR
 
Improved Max-Min Scheduling Algorithm
Improved Max-Min Scheduling AlgorithmImproved Max-Min Scheduling Algorithm
Improved Max-Min Scheduling Algorithm
iosrjce
 
IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...
IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...
IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...
IRJET Journal
 
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
IRJET Journal
 
Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol...
 Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol... Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol...
Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol...
hydrologyproject001
 
Bulk transfer scheduling and path reservations in research networks
Bulk transfer scheduling and path reservations in research networksBulk transfer scheduling and path reservations in research networks
Bulk transfer scheduling and path reservations in research networks
International Journal of Engineering Inventions www.ijeijournal.com
 
Self-adaptive container monitoring with performance-aware Load-Shedding policies
Self-adaptive container monitoring with performance-aware Load-Shedding policiesSelf-adaptive container monitoring with performance-aware Load-Shedding policies
Self-adaptive container monitoring with performance-aware Load-Shedding policies
NECST Lab @ Politecnico di Milano
 
C1803052327
C1803052327C1803052327
C1803052327
IOSR Journals
 
Pdcs2010 balman-presentation
Pdcs2010 balman-presentationPdcs2010 balman-presentation
Pdcs2010 balman-presentation
balmanme
 
Energy efficiency in virtual machines allocation for cloud data centers with ...
Energy efficiency in virtual machines allocation for cloud data centers with ...Energy efficiency in virtual machines allocation for cloud data centers with ...
Energy efficiency in virtual machines allocation for cloud data centers with ...
IJECEIAES
 
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
IRJET Journal
 
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
IRJET Journal
 
Scheduling and Allocation Algorithm for an Elliptic Filter
Scheduling and Allocation Algorithm for an Elliptic FilterScheduling and Allocation Algorithm for an Elliptic Filter
Scheduling and Allocation Algorithm for an Elliptic Filter
ijait
 
Fitness Inheritance in Evolutionary and
Fitness Inheritance in Evolutionary andFitness Inheritance in Evolutionary and
Fitness Inheritance in Evolutionary and
Pier Luca Lanzi
 
Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...
Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...
Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...
Marcellus Drilling News
 

What's hot (19)

MACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORING
MACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORINGMACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORING
MACHINE LEARNING FOR SATELLITE-GUIDED WATER QUALITY MONITORING
 
Load shedding in power system using the AHP algorithm and Artificial Neural N...
Load shedding in power system using the AHP algorithm and Artificial Neural N...Load shedding in power system using the AHP algorithm and Artificial Neural N...
Load shedding in power system using the AHP algorithm and Artificial Neural N...
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
IRJET- Optimal Generation Scheduling for Thermal Units
IRJET- Optimal Generation Scheduling for Thermal UnitsIRJET- Optimal Generation Scheduling for Thermal Units
IRJET- Optimal Generation Scheduling for Thermal Units
 
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
 
Improved Max-Min Scheduling Algorithm
Improved Max-Min Scheduling AlgorithmImproved Max-Min Scheduling Algorithm
Improved Max-Min Scheduling Algorithm
 
IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...
IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...
IRJET- Advance Approach for Load Balancing in Cloud Computing using (HMSO) Hy...
 
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
 
Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol...
 Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol... Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol...
Download-manuals-surface water-waterlevel-38howtododatavalidationusinghydrol...
 
Bulk transfer scheduling and path reservations in research networks
Bulk transfer scheduling and path reservations in research networksBulk transfer scheduling and path reservations in research networks
Bulk transfer scheduling and path reservations in research networks
 
Self-adaptive container monitoring with performance-aware Load-Shedding policies
Self-adaptive container monitoring with performance-aware Load-Shedding policiesSelf-adaptive container monitoring with performance-aware Load-Shedding policies
Self-adaptive container monitoring with performance-aware Load-Shedding policies
 
C1803052327
C1803052327C1803052327
C1803052327
 
Pdcs2010 balman-presentation
Pdcs2010 balman-presentationPdcs2010 balman-presentation
Pdcs2010 balman-presentation
 
Energy efficiency in virtual machines allocation for cloud data centers with ...
Energy efficiency in virtual machines allocation for cloud data centers with ...Energy efficiency in virtual machines allocation for cloud data centers with ...
Energy efficiency in virtual machines allocation for cloud data centers with ...
 
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
 
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
 
Scheduling and Allocation Algorithm for an Elliptic Filter
Scheduling and Allocation Algorithm for an Elliptic FilterScheduling and Allocation Algorithm for an Elliptic Filter
Scheduling and Allocation Algorithm for an Elliptic Filter
 
Fitness Inheritance in Evolutionary and
Fitness Inheritance in Evolutionary andFitness Inheritance in Evolutionary and
Fitness Inheritance in Evolutionary and
 
Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...
Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...
Resource Assessment of Potentially Producible Natural Gas Volumes From the Ma...
 

Similar to ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Rizopoulos D, Saharidis GKD

First online hangout SC5 - Big Data Europe first pilot-presentation-hangout
First online hangout SC5 - Big Data Europe  first pilot-presentation-hangoutFirst online hangout SC5 - Big Data Europe  first pilot-presentation-hangout
First online hangout SC5 - Big Data Europe first pilot-presentation-hangout
BigData_Europe
 
TSO Reliability Management: a probabilistic approach for better balance betwe...
TSO Reliability Management: a probabilistic approach for better balance betwe...TSO Reliability Management: a probabilistic approach for better balance betwe...
TSO Reliability Management: a probabilistic approach for better balance betwe...
Leonardo ENERGY
 
TIMES-GTAP soft-link methodology and interface
TIMES-GTAP soft-link methodology and interfaceTIMES-GTAP soft-link methodology and interface
TIMES-GTAP soft-link methodology and interface
IEA-ETSAP
 
Service Management: Forecasting Hydrogen Demand
Service Management: Forecasting Hydrogen DemandService Management: Forecasting Hydrogen Demand
Service Management: Forecasting Hydrogen Demand
irrosennen
 
White paper: How to build a real-time vehicle route optimiser
White paper: How to build a real-time vehicle route optimiserWhite paper: How to build a real-time vehicle route optimiser
White paper: How to build a real-time vehicle route optimiser
Philip Welch
 
IRJET- Comparative Analysis between Critical Path Method and Monte Carlo S...
IRJET- 	  Comparative Analysis between Critical Path Method and Monte Carlo S...IRJET- 	  Comparative Analysis between Critical Path Method and Monte Carlo S...
IRJET- Comparative Analysis between Critical Path Method and Monte Carlo S...
IRJET Journal
 
Paper 3189
Paper 3189Paper 3189
Paper 3189
euroFOT
 
unischeduler_pakdd_v3
unischeduler_pakdd_v3unischeduler_pakdd_v3
unischeduler_pakdd_v3
Luís Moreira-Matias
 
T rec-e.492-199602-i!!pdf-e
T rec-e.492-199602-i!!pdf-eT rec-e.492-199602-i!!pdf-e
T rec-e.492-199602-i!!pdf-e
Olivier Rostaing
 
20120140502016
2012014050201620120140502016
20120140502016
IAEME Publication
 
Advanced Automated Approach for Interconnected Power System Congestion Forecast
Advanced Automated Approach for Interconnected Power System Congestion ForecastAdvanced Automated Approach for Interconnected Power System Congestion Forecast
Advanced Automated Approach for Interconnected Power System Congestion Forecast
Power System Operation
 
Towards a new intelligent traffic system based on deep learning and data int...
Towards a new intelligent traffic system based on deep learning  and data int...Towards a new intelligent traffic system based on deep learning  and data int...
Towards a new intelligent traffic system based on deep learning and data int...
IJECEIAES
 
IRJET- Agricultural Productivity System
IRJET- Agricultural Productivity SystemIRJET- Agricultural Productivity System
IRJET- Agricultural Productivity System
IRJET Journal
 
Comp prese (1)
Comp prese (1)Comp prese (1)
Comp prese (1)
Mohmmad Khasawneh
 
A Review on Traffic Signal Identification
A Review on Traffic Signal IdentificationA Review on Traffic Signal Identification
A Review on Traffic Signal Identification
ijtsrd
 
Survey on deep learning applied to predictive maintenance
Survey on deep learning applied to predictive maintenance Survey on deep learning applied to predictive maintenance
Survey on deep learning applied to predictive maintenance
IJECEIAES
 
Bde sc3 2nd_workshop_2016_10_04_p10_maja_skrjanc
Bde sc3 2nd_workshop_2016_10_04_p10_maja_skrjancBde sc3 2nd_workshop_2016_10_04_p10_maja_skrjanc
Bde sc3 2nd_workshop_2016_10_04_p10_maja_skrjanc
BigData_Europe
 
Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...
Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...
Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...
Leonardo ENERGY
 
Effective Utilization of CPU
Effective Utilization of CPUEffective Utilization of CPU
Effective Utilization of CPU
IRJET Journal
 
Detailed Operational Data as a Means to Improve Air Emissions Management_paper
Detailed Operational Data as a Means to Improve Air Emissions Management_paperDetailed Operational Data as a Means to Improve Air Emissions Management_paper
Detailed Operational Data as a Means to Improve Air Emissions Management_paper
Rodrigo Chaves C de Oliveira
 

Similar to ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Rizopoulos D, Saharidis GKD (20)

First online hangout SC5 - Big Data Europe first pilot-presentation-hangout
First online hangout SC5 - Big Data Europe  first pilot-presentation-hangoutFirst online hangout SC5 - Big Data Europe  first pilot-presentation-hangout
First online hangout SC5 - Big Data Europe first pilot-presentation-hangout
 
TSO Reliability Management: a probabilistic approach for better balance betwe...
TSO Reliability Management: a probabilistic approach for better balance betwe...TSO Reliability Management: a probabilistic approach for better balance betwe...
TSO Reliability Management: a probabilistic approach for better balance betwe...
 
TIMES-GTAP soft-link methodology and interface
TIMES-GTAP soft-link methodology and interfaceTIMES-GTAP soft-link methodology and interface
TIMES-GTAP soft-link methodology and interface
 
Service Management: Forecasting Hydrogen Demand
Service Management: Forecasting Hydrogen DemandService Management: Forecasting Hydrogen Demand
Service Management: Forecasting Hydrogen Demand
 
White paper: How to build a real-time vehicle route optimiser
White paper: How to build a real-time vehicle route optimiserWhite paper: How to build a real-time vehicle route optimiser
White paper: How to build a real-time vehicle route optimiser
 
IRJET- Comparative Analysis between Critical Path Method and Monte Carlo S...
IRJET- 	  Comparative Analysis between Critical Path Method and Monte Carlo S...IRJET- 	  Comparative Analysis between Critical Path Method and Monte Carlo S...
IRJET- Comparative Analysis between Critical Path Method and Monte Carlo S...
 
Paper 3189
Paper 3189Paper 3189
Paper 3189
 
unischeduler_pakdd_v3
unischeduler_pakdd_v3unischeduler_pakdd_v3
unischeduler_pakdd_v3
 
T rec-e.492-199602-i!!pdf-e
T rec-e.492-199602-i!!pdf-eT rec-e.492-199602-i!!pdf-e
T rec-e.492-199602-i!!pdf-e
 
20120140502016
2012014050201620120140502016
20120140502016
 
Advanced Automated Approach for Interconnected Power System Congestion Forecast
Advanced Automated Approach for Interconnected Power System Congestion ForecastAdvanced Automated Approach for Interconnected Power System Congestion Forecast
Advanced Automated Approach for Interconnected Power System Congestion Forecast
 
Towards a new intelligent traffic system based on deep learning and data int...
Towards a new intelligent traffic system based on deep learning  and data int...Towards a new intelligent traffic system based on deep learning  and data int...
Towards a new intelligent traffic system based on deep learning and data int...
 
IRJET- Agricultural Productivity System
IRJET- Agricultural Productivity SystemIRJET- Agricultural Productivity System
IRJET- Agricultural Productivity System
 
Comp prese (1)
Comp prese (1)Comp prese (1)
Comp prese (1)
 
A Review on Traffic Signal Identification
A Review on Traffic Signal IdentificationA Review on Traffic Signal Identification
A Review on Traffic Signal Identification
 
Survey on deep learning applied to predictive maintenance
Survey on deep learning applied to predictive maintenance Survey on deep learning applied to predictive maintenance
Survey on deep learning applied to predictive maintenance
 
Bde sc3 2nd_workshop_2016_10_04_p10_maja_skrjanc
Bde sc3 2nd_workshop_2016_10_04_p10_maja_skrjancBde sc3 2nd_workshop_2016_10_04_p10_maja_skrjanc
Bde sc3 2nd_workshop_2016_10_04_p10_maja_skrjanc
 
Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...
Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...
Overview of the FlexPlan project. Focus on EU regulatory analysis and TSO-DSO...
 
Effective Utilization of CPU
Effective Utilization of CPUEffective Utilization of CPU
Effective Utilization of CPU
 
Detailed Operational Data as a Means to Improve Air Emissions Management_paper
Detailed Operational Data as a Means to Improve Air Emissions Management_paperDetailed Operational Data as a Means to Improve Air Emissions Management_paper
Detailed Operational Data as a Means to Improve Air Emissions Management_paper
 

More from LIFE GreenYourMove

Gym 7th research activity day
Gym 7th research activity dayGym 7th research activity day
Gym 7th research activity day
LIFE GreenYourMove
 
Benders Decomposition
Benders Decomposition Benders Decomposition
Benders Decomposition
LIFE GreenYourMove
 
co-modal emission calculation and inventory-presentation
co-modal emission calculation and inventory-presentationco-modal emission calculation and inventory-presentation
co-modal emission calculation and inventory-presentation
LIFE GreenYourMove
 
ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...
ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...
ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...
LIFE GreenYourMove
 
LIFE GreenYourMove Project - GTFS data
LIFE GreenYourMove Project - GTFS data LIFE GreenYourMove Project - GTFS data
LIFE GreenYourMove Project - GTFS data
LIFE GreenYourMove
 
LIFE GreenYourMove Project
LIFE GreenYourMove ProjectLIFE GreenYourMove Project
LIFE GreenYourMove Project
LIFE GreenYourMove
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, Greece
LIFE GreenYourMove
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, Greece
LIFE GreenYourMove
 
LIFE GYM 5th Hellenic forum for science technology and innovation
LIFE GYM 5th Hellenic forum for science technology and innovation LIFE GYM 5th Hellenic forum for science technology and innovation
LIFE GYM 5th Hellenic forum for science technology and innovation
LIFE GreenYourMove
 
LIFE GreenYourMove project: 1st workshop
LIFE GreenYourMove project: 1st workshop LIFE GreenYourMove project: 1st workshop
LIFE GreenYourMove project: 1st workshop
LIFE GreenYourMove
 
Presentation escc 2016
Presentation escc 2016Presentation escc 2016
Presentation escc 2016
LIFE GreenYourMove
 
Presentation data collection and gtfs
Presentation data collection and gtfsPresentation data collection and gtfs
Presentation data collection and gtfs
LIFE GreenYourMove
 
Presentation 3rd CSUM
Presentation 3rd CSUM Presentation 3rd CSUM
Presentation 3rd CSUM
LIFE GreenYourMove
 
Conference Volos
Conference VolosConference Volos
Conference Volos
LIFE GreenYourMove
 
3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility
LIFE GreenYourMove
 
GreenYourMove 1st workshop
GreenYourMove  1st workshop GreenYourMove  1st workshop
GreenYourMove 1st workshop
LIFE GreenYourMove
 
GreenYourMove Presentation
GreenYourMove Presentation GreenYourMove Presentation
GreenYourMove Presentation
LIFE GreenYourMove
 

More from LIFE GreenYourMove (17)

Gym 7th research activity day
Gym 7th research activity dayGym 7th research activity day
Gym 7th research activity day
 
Benders Decomposition
Benders Decomposition Benders Decomposition
Benders Decomposition
 
co-modal emission calculation and inventory-presentation
co-modal emission calculation and inventory-presentationco-modal emission calculation and inventory-presentation
co-modal emission calculation and inventory-presentation
 
ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...
ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...
ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Fragkogios A., Sah...
 
LIFE GreenYourMove Project - GTFS data
LIFE GreenYourMove Project - GTFS data LIFE GreenYourMove Project - GTFS data
LIFE GreenYourMove Project - GTFS data
 
LIFE GreenYourMove Project
LIFE GreenYourMove ProjectLIFE GreenYourMove Project
LIFE GreenYourMove Project
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, Greece
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, Greece
 
LIFE GYM 5th Hellenic forum for science technology and innovation
LIFE GYM 5th Hellenic forum for science technology and innovation LIFE GYM 5th Hellenic forum for science technology and innovation
LIFE GYM 5th Hellenic forum for science technology and innovation
 
LIFE GreenYourMove project: 1st workshop
LIFE GreenYourMove project: 1st workshop LIFE GreenYourMove project: 1st workshop
LIFE GreenYourMove project: 1st workshop
 
Presentation escc 2016
Presentation escc 2016Presentation escc 2016
Presentation escc 2016
 
Presentation data collection and gtfs
Presentation data collection and gtfsPresentation data collection and gtfs
Presentation data collection and gtfs
 
Presentation 3rd CSUM
Presentation 3rd CSUM Presentation 3rd CSUM
Presentation 3rd CSUM
 
Conference Volos
Conference VolosConference Volos
Conference Volos
 
3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility3rd Conference on Sustainable Urban Mobility
3rd Conference on Sustainable Urban Mobility
 
GreenYourMove 1st workshop
GreenYourMove  1st workshop GreenYourMove  1st workshop
GreenYourMove 1st workshop
 
GreenYourMove Presentation
GreenYourMove Presentation GreenYourMove Presentation
GreenYourMove Presentation
 

Recently uploaded

CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURSCompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
RamonNovais6
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
Gas agency management system project report.pdf
Gas agency management system project report.pdfGas agency management system project report.pdf
Gas agency management system project report.pdf
Kamal Acharya
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
upoux
 
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
ecqow
 
morris_worm_intro_and_source_code_analysis_.pdf
morris_worm_intro_and_source_code_analysis_.pdfmorris_worm_intro_and_source_code_analysis_.pdf
morris_worm_intro_and_source_code_analysis_.pdf
ycwu0509
 
Generative AI Use cases applications solutions and implementation.pdf
Generative AI Use cases applications solutions and implementation.pdfGenerative AI Use cases applications solutions and implementation.pdf
Generative AI Use cases applications solutions and implementation.pdf
mahaffeycheryld
 
Object Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOADObject Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOAD
PreethaV16
 
Digital Twins Computer Networking Paper Presentation.pptx
Digital Twins Computer Networking Paper Presentation.pptxDigital Twins Computer Networking Paper Presentation.pptx
Digital Twins Computer Networking Paper Presentation.pptx
aryanpankaj78
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 
TIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptxTIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptx
CVCSOfficial
 
AI for Legal Research with applications, tools
AI for Legal Research with applications, toolsAI for Legal Research with applications, tools
AI for Legal Research with applications, tools
mahaffeycheryld
 
Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...
Prakhyath Rai
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
Atif Razi
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
PKavitha10
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
SCALING OF MOS CIRCUITS m .pptx
SCALING OF MOS CIRCUITS m                 .pptxSCALING OF MOS CIRCUITS m                 .pptx
SCALING OF MOS CIRCUITS m .pptx
harshapolam10
 

Recently uploaded (20)

CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURSCompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
Gas agency management system project report.pdf
Gas agency management system project report.pdfGas agency management system project report.pdf
Gas agency management system project report.pdf
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
 
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
 
morris_worm_intro_and_source_code_analysis_.pdf
morris_worm_intro_and_source_code_analysis_.pdfmorris_worm_intro_and_source_code_analysis_.pdf
morris_worm_intro_and_source_code_analysis_.pdf
 
Generative AI Use cases applications solutions and implementation.pdf
Generative AI Use cases applications solutions and implementation.pdfGenerative AI Use cases applications solutions and implementation.pdf
Generative AI Use cases applications solutions and implementation.pdf
 
Object Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOADObject Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOAD
 
Digital Twins Computer Networking Paper Presentation.pptx
Digital Twins Computer Networking Paper Presentation.pptxDigital Twins Computer Networking Paper Presentation.pptx
Digital Twins Computer Networking Paper Presentation.pptx
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 
TIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptxTIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptx
 
AI for Legal Research with applications, tools
AI for Legal Research with applications, toolsAI for Legal Research with applications, tools
AI for Legal Research with applications, tools
 
Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
SCALING OF MOS CIRCUITS m .pptx
SCALING OF MOS CIRCUITS m                 .pptxSCALING OF MOS CIRCUITS m                 .pptx
SCALING OF MOS CIRCUITS m .pptx
 

ESCC2018, Mykonos, Greece, June 4-8, 2018, presentation by Rizopoulos D, Saharidis GKD

  • 1. A generic approach for the rescheduling of public transit services Dimitris Rizopoulos, M.Sc. student Prof. Georgios K.D. Saharidis University of Thessaly Presentation for the 5th International Conference on Energy, Sustainability and Climate Change
  • 2. Contents of the presentation 1. The problem of rescheduling timetables 2. The data & the literature 3. Outline of the approach and the modelling assumptions 4. Pre-optimization stage of the approach 5. The mathematical models used for the optimization of the timetables 6. Post-optimization stage of the approach 7. Case study: Athens’ metro system 8. Meaning of results and next steps 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 2
  • 3. The problem (1) Definition: Given a timetable of a set of routes R, a set of trips T and a set of stops S of a public transit agency, decide on the changes* on the timetable that will result on a new timetable whose routes and trips will reduce the waiting time at the stops of the network where a passenger can make a transition from one route to another 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 3 Important note: The problem is interconnected with the problem of journey/route planning and multi- modality. In order for us to consider Waiting Time, we need to first analyze a network and check where and when a passenger can change modes of transport or hop on and off a bus/metro route
  • 4. The problem (2) • A graphical representation of a journey that can be rescheduled 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 4 • The whole multi-modal trip from Larisa to Volos in Central Greece • The part of the journey inside Volos which could benefit from our rescheduling optimization approach
  • 5. The data & the literature (1) The data – General transit feed specification(GTFS) A set of rules according to which every public transport agency should publish their schedules and information about their network Goal of the specification: Provide a framework through which those data could be incorporated into any platform or digital system A single feed of GTFS data is a collection of 6 up to 13 files in .csv format contained within a .zip file. 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 5
  • 6. The data & the literature (2) Previous work on the problem The scheduling of transit networks or problem of timetabling has been addressed in several studies. Differences between the studies refer to: • Definition of the welfare of the passengers or the operators of the services • Definition of what waiting time is • Definition of a transitional node – Nodes that a passenger can make a transition from one mode or trip to another • Techniques to model and solve the problem – Genetic algorithms, Global optimization, Variable neighborhood search What we noticed: Great results, but most approaches were case-specific and ad-hoc. What our work is proposing Create a way to solve a problem based on GTFS integration models which will work for any agency that will provide their data in GTFS format 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 6
  • 7. Outline of the approach & modelling assumptions The analysis happens in three stages: 1. Pre-optimization phase: The data are analyzed and only specific parts of them are kept and stored in specific data structures 2. Optimization phase: The mathematical models introduced are utilized to produce the results 3. Post-optimization phase: Results are combined into a weekly schedule that can be used by the public transit agencies Assumptions: • Arrival time at a stop of the network is the same the departure time and we will call it Time of Service(ToS) of the stop • Waiting time exists only between two services of different routes that serve a single node of the network • Waiting time exists only between two services whose difference in ToS is only between 2 min at minimum and 20 at maximum • Waiting time exists only between services that start in the same day – Daily analysis • All analysis of ToS happens in minutes 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 7
  • 8. Pre-optimization stage The goal: Analyze the network and find the smallest part of the data that should incorporated into the model and analyzed. Steps to follow: • GTFS data are read, analyzed and stored in the appropriate data structures • The nodes of the network where there is an intersection and create a simplified network • A number of feasible transitions are measured between at the nodes where pairs of routes intersect • Group the several feasible transactions into separate days – in order to reduce size of models • We decide on the number of variables and constraints that should be declared in the main-optimization phase of the approach. 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 8
  • 9. Mathematical models used 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 9 Indices r Index used to indicate route 𝑡 Index used to indicate trip 𝑠 Index used to indicate the stop Parameters 𝑁𝑆𝐷𝑇𝒔𝒓𝒕 Non-synchronized departure times for route r and trip t at stop s (current) 𝑁𝑆𝐴𝑇𝒔𝒓𝒕 Non-synchronized arrival times for route r and trip t at stop s (current) 𝐴𝑃𝑟𝑡 Allowed Percentage of change in departure or arrival time for route r (determined in pre-optimization) 𝑅𝐹𝑟𝑡 Route Frequency of the execution of the trips for a route r (calculated in pre-optimization) 𝑇𝑇𝑠1 𝑠2 𝑟𝑡 Transportation time between stop s1, stop s2, route r and trip t 𝑻𝑹 𝒔,𝒓𝟏,𝒕𝟏,𝒓𝟐,𝒕𝟐 Time required for the transition between service of r1 and t1, and service of r2 and t2 Decision Variables 𝑇𝑂𝑆𝑠𝑟𝑡 Time when route r with trip t serves the stop s The mathematical model used
  • 10. Post-optimization analysis Goal of the analysis is to turn the optimization results into a meaningful result for the agency operating the public transit services *Notice: We have optimized the waiting time for the transitions for each separate day of the week Since we have a set of 7 solutions for the same problem, they need to be efficiently combined in order to produce a pareto-optimal solution. 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 10 Use the schedule for each day as is Create a new solution space for the problem and solve a LP Sweet spot in the analysis: Use optimized parts of the schedule that are unique for a specific day and optimize on a second level the parts of the opt. schedule that run for multiple days Final decision depends completely on the operators and their criteria. Let’s move on to see a case study for our approach ..
  • 11. Case study of Athens’ Metro (1) The network investigated • Number of stations: 65 • Number of stations that a transition can happen: 4 • Number of routes: 3 • Number of trips throughout the week: 3636 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 11 Route Route(from – to) Number of stations Avg. duration of trips Established in Last development happened in 1 Piraius – Kifissia 24 51 min 1869 2004 2 Anthoupoli – Elliniko 20 29 min 2000 2013 3 Agia Marina – El. Venizelos Airport 21 50 min 2000 2013
  • 12. Results matrix for the case of Athens 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 12 Monday Tuesday Wednesday Thursday Friday Saturday Sunday Weekly Non-synced 290520 min 290520 min 290520 min 290520 min 301867 min 91665 min 88943 min 1.644.555 min Parameter( 𝑨𝑷 𝒓𝒕, 𝑹𝑭 𝒓𝒕) 285566 1.7% 285556 1.7% 285566 1.7% 285566 1.7% 296761 1.69% 88560 3.37% 86017 3.28% 1.613.602 1.88% ±𝟏𝟓 280122 3.57% 280122 3.57% 280122 3.57% 280122 3.57% 291263 3.51% 87539 4.49% 84757 4.7% 1.584.047 3.67% ±𝟑𝟎 271122 6.67% 271122 6.67% 271122 6.67% 271122 6.67% 281876 6.62% 84548 7.76% 82029 7.77% 1.532.941 6.78% ±𝟒𝟓 264236 9.04% 264236 9.04% 264236 9.04% 264236 9.04% 274966 8.91% 82105 10.4% 79636 10.4% 1.493.651 9.17% Time needed for preprocessing 5309.77 s 5703.70 s 5396.80 s 4893.29 s 6438.14 s 1936.56 s 2095.94 s - Time needed for the optimization(avg.) 2.09 s 1.70 s 2.06 s 1.95 s 2.06 s 0.57 s 0.50 s - Cells that refer to the optimization cases ( 𝑤𝑎𝑖𝑡𝑖𝑛𝑔 𝑡𝑖𝑚𝑒 𝑎𝑓𝑡𝑒𝑟 𝑜𝑝𝑡𝑖𝑚𝑖𝑧𝑎𝑡𝑖𝑜𝑛 𝑝𝑒𝑟𝑐𝑒𝑛𝑡𝑎𝑔𝑒 𝑜𝑓 𝑟𝑒𝑑𝑢𝑐𝑡𝑖𝑜𝑛) Case study of Athens’ Metro (2)
  • 13. Meaning of results & next steps For the specific application of rescheduling: • Less overall waiting time is feasible to be achieved by rescheduling but messing with the schedule of the agency can be tricky, so any kind of changes require effective communication in order to be applied For the methodology and how to approach such problems: • Multi-stage analysis and the use of appropriate data structures can lead to smaller model sizes by selecting parts of the data to include in the optimization phase – where exhaustive search is applied • A pre-optimization stage requires(in most of the cases) a post optimization phase • A pre-optimization phase gives us more flexibility on how to model the problem and solve a model that is not associated with meaning for the physical system without a post-optimization phase Questions to be answered: • How does the execution times change with bigger networks and datasets? • How to include the criteria for the systems operators? • What is the best way to communicate the results to the agencies? 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 13
  • 14. Thank you for your attention. 5thInternationalConferenceonEnergy,Sustainabilityand ClimateChange,ESCC,4-6June2018,Mykonos,Greece 14 Are there any questions? P.S. Send us data from your region to reschedule them. dimrizopoulos@gmail.com