Releases: EMob-Lab/MnMS
Releases · EMob-Lab/MnMS
v1.0.1
What's Changed
- Feature/v2 by @floriangc in #64
- Feature/macro micro services by @floriangc in #70
- Symuflow input conversion by @floriangc in #87
- Feature/graph refactoring by @floriangc in #107
- Add costs functions to be able to define custom costs on layers, incl… by @floriangc in #113
- Feature/congested mfd by @floriangc in #115
- Add ghost accumulation by @floriangc in #116
- Feature/fix public transport by @kit4a in #117
- Feature/fix intermodality by @floriangc in #118
- Feature/mobility service dict cost by @floriangc in #120
- Ensure that the matching/request is made in a sequential way by @floriangc in #123
- Feature/dynamic space sharing by @floriangc in #122
New Contributors
Full Changelog: v1.0.0...v1.0.1
v1.0.0
First working simulation at the scale of Lyon.
What's Changed
- Feature/n shortest paths by @floriangc in #28
- Feature/coords connect by @floriangc in #31
- Add DecisionModel class for Travel decision (add a logit model) by @floriangc in #32
- Add csv result writer for DecisionModel, FlowMotor and Supervisor by @floriangc in #33
- Feature/hub by @floriangc in #35
- Feature/log by @floriangc in #38
- Feature/mf dupdate by @floriangc in #45
- Feature/observer by @floriangc in #50
- Feature/mf dupdate by @floriangc in #53
Full Changelog: v0.0.1...v1.0.0
v0.0.1
Current feature:
- Demand
- Definition of
Userclass BaseDemandManager, take user as a list and get next departureCSVDemandManager, read CSV file and load User- Random demand generation
create_random_demand
- Definition of
- Flow
MFDFlow, reservoir based flow motor- WIP:
MFDFlowEvent - Abstraction of Flow Motor
- Graph
GeoGraph, flow graph with geometric attributesTopoGraph, purely topological graph for Mobility ServicesComposedTopoGraph, composition ofTopoGraphfor shortest path computation on multiple Mobility ServicesMultiModalGraph, sum ofGeoGraphandComposedTopoGraph- Algorithms:
walk_connect, connectTopoGraphbased on distances between nodes- Shortest Paths:
dijkstraastar, take into account available Mobility Service inUserclass
- Mobility Services:
BaseMobilityService, define minimal mobility servicePublicTransport, add the notion of lines and stops
- tools:
iomodule definesave_graph,load_graphin JSON formattimemodule for the manipulation of time and dt
- simulation
- define the
Supervisorclass for the aggregation of Demand/Flow/Mobility Service/Graph
- define the