├── Cell_Transmission_Model.py ├── Cell_Transmission_Model_Old.py ├── Density_profile_Corridor-1-LOOP_CLOCKWISE.csv ├── Density_profile_Corridor-1-LOOP_COUNTERCLOCKWISE.csv ├── Density_profile_Corridor-1-LOOP_EASTBOUND.csv ├── Density_profile_Corridor-1-LOOP_NORTHBOUND.csv ├── Density_profile_Corridor-1-LOOP_SOUTHBOUND.csv ├── Density_profile_Corridor-1-LOOP_WESTBOUND.csv ├── Docs ├── User guide (English).pdf └── 用户指南.pdf ├── Example_of_Use_CTM_Externally.py ├── Examples ├── Example 1 - Cubic form demand and constant capacity │ ├── Cell_Transmission_Model.py │ ├── Density_profile_Corridor-1.csv │ ├── Flow_profile_Corridor-1.csv │ ├── calculate_lambda.xlsx │ ├── demand.csv │ ├── link.csv │ └── supply.csv ├── Example 2 - Constant demand and quadratic capacity │ ├── Cell_Transmission_Model.py │ ├── Density_profile_Corridor-1.csv │ ├── Flow_profile_Corridor-1.csv │ ├── calculate_lambda.xlsx │ ├── demand.csv │ ├── link.csv │ └── supply.csv ├── Example 3 - Merge cell with quadratic demand │ ├── Cell_Transmission_Model.py │ ├── Density_profile_Corridor-1.csv │ ├── Flow_profile_Corridor-1.csv │ ├── calculate_lambda.xlsx │ ├── demand.csv │ ├── link.csv │ └── supply.csv ├── Example 4 - Dynamic freeflow speed and jam density │ ├── Cell_Transmission_Model.py │ ├── Density_profile_Corridor-1.csv │ ├── Flow_profile_Corridor-1.csv │ ├── calculate_lambda.xlsx │ ├── demand.csv │ ├── link.csv │ └── supply.csv └── How to use dynamic lambda and mu in CTM.docx ├── Flow_profile_Corridor-1-LOOP_CLOCKWISE.csv ├── Flow_profile_Corridor-1-LOOP_COUNTERCLOCKWISE.csv ├── Flow_profile_Corridor-1-LOOP_EASTBOUND.csv ├── Flow_profile_Corridor-1-LOOP_NORTHBOUND.csv ├── Flow_profile_Corridor-1-LOOP_SOUTHBOUND.csv ├── Flow_profile_Corridor-1-LOOP_WESTBOUND.csv ├── LICENSE ├── README.md ├── Tools └── Generate_time_period_for_supply.py ├── __pycache__ └── Cell_Transmission_Model_Stepcontrol.cpython-310.pyc ├── demand.csv ├── link.csv └── supply.csv /Cell_Transmission_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Cell_Transmission_Model.py -------------------------------------------------------------------------------- /Cell_Transmission_Model_Old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Cell_Transmission_Model_Old.py -------------------------------------------------------------------------------- /Density_profile_Corridor-1-LOOP_CLOCKWISE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Density_profile_Corridor-1-LOOP_CLOCKWISE.csv -------------------------------------------------------------------------------- /Density_profile_Corridor-1-LOOP_COUNTERCLOCKWISE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Density_profile_Corridor-1-LOOP_COUNTERCLOCKWISE.csv -------------------------------------------------------------------------------- /Density_profile_Corridor-1-LOOP_EASTBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Density_profile_Corridor-1-LOOP_EASTBOUND.csv -------------------------------------------------------------------------------- /Density_profile_Corridor-1-LOOP_NORTHBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Density_profile_Corridor-1-LOOP_NORTHBOUND.csv -------------------------------------------------------------------------------- /Density_profile_Corridor-1-LOOP_SOUTHBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Density_profile_Corridor-1-LOOP_SOUTHBOUND.csv -------------------------------------------------------------------------------- /Density_profile_Corridor-1-LOOP_WESTBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Density_profile_Corridor-1-LOOP_WESTBOUND.csv -------------------------------------------------------------------------------- /Docs/User guide (English).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Docs/User guide (English).pdf -------------------------------------------------------------------------------- /Docs/用户指南.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Docs/用户指南.pdf -------------------------------------------------------------------------------- /Example_of_Use_CTM_Externally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Example_of_Use_CTM_Externally.py -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/Cell_Transmission_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/Cell_Transmission_Model.py -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/Density_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/Density_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/Flow_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/Flow_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/calculate_lambda.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/calculate_lambda.xlsx -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/demand.csv -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/link.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/link.csv -------------------------------------------------------------------------------- /Examples/Example 1 - Cubic form demand and constant capacity/supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 1 - Cubic form demand and constant capacity/supply.csv -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/Cell_Transmission_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/Cell_Transmission_Model.py -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/Density_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/Density_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/Flow_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/Flow_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/calculate_lambda.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/calculate_lambda.xlsx -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/demand.csv -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/link.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/link.csv -------------------------------------------------------------------------------- /Examples/Example 2 - Constant demand and quadratic capacity/supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 2 - Constant demand and quadratic capacity/supply.csv -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/Cell_Transmission_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/Cell_Transmission_Model.py -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/Density_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/Density_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/Flow_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/Flow_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/calculate_lambda.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/calculate_lambda.xlsx -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/demand.csv -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/link.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/link.csv -------------------------------------------------------------------------------- /Examples/Example 3 - Merge cell with quadratic demand/supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 3 - Merge cell with quadratic demand/supply.csv -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/Cell_Transmission_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/Cell_Transmission_Model.py -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/Density_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/Density_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/Flow_profile_Corridor-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/Flow_profile_Corridor-1.csv -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/calculate_lambda.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/calculate_lambda.xlsx -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/demand.csv -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/link.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/link.csv -------------------------------------------------------------------------------- /Examples/Example 4 - Dynamic freeflow speed and jam density/supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/Example 4 - Dynamic freeflow speed and jam density/supply.csv -------------------------------------------------------------------------------- /Examples/How to use dynamic lambda and mu in CTM.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Examples/How to use dynamic lambda and mu in CTM.docx -------------------------------------------------------------------------------- /Flow_profile_Corridor-1-LOOP_CLOCKWISE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Flow_profile_Corridor-1-LOOP_CLOCKWISE.csv -------------------------------------------------------------------------------- /Flow_profile_Corridor-1-LOOP_COUNTERCLOCKWISE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Flow_profile_Corridor-1-LOOP_COUNTERCLOCKWISE.csv -------------------------------------------------------------------------------- /Flow_profile_Corridor-1-LOOP_EASTBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Flow_profile_Corridor-1-LOOP_EASTBOUND.csv -------------------------------------------------------------------------------- /Flow_profile_Corridor-1-LOOP_NORTHBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Flow_profile_Corridor-1-LOOP_NORTHBOUND.csv -------------------------------------------------------------------------------- /Flow_profile_Corridor-1-LOOP_SOUTHBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Flow_profile_Corridor-1-LOOP_SOUTHBOUND.csv -------------------------------------------------------------------------------- /Flow_profile_Corridor-1-LOOP_WESTBOUND.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Flow_profile_Corridor-1-LOOP_WESTBOUND.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Generate_time_period_for_supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/Tools/Generate_time_period_for_supply.py -------------------------------------------------------------------------------- /__pycache__/Cell_Transmission_Model_Stepcontrol.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/__pycache__/Cell_Transmission_Model_Stepcontrol.cpython-310.pyc -------------------------------------------------------------------------------- /demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/demand.csv -------------------------------------------------------------------------------- /link.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/link.csv -------------------------------------------------------------------------------- /supply.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanyueliu/Cell_Transmission_Model_Python/HEAD/supply.csv --------------------------------------------------------------------------------