Creating a PTM Model Run

Two notebooks are included for initialising a PTM model run, including;

  • prepare_schema_folder.ipynb - this notebook creates the PTM schema folder and copies in all of the default parameter files and configurations for the run.
  • clone_existing_schema.ipynb - this notebook clones as existing PTM schema to a new run

prepare_schema_folder.ipynb

This notebook prepares a schema folder ready for the input notebook processing in PTM.

User Defined Variables

User defined variables for this notebook are shown below;

SCHEMA_INFO = {
    'SCHEMA_NAME': 'PTM_RSP_2024_t_nM_RTFS_wCls',
    'MODEL_ASSIGNMENT_TYPE': 'timetable', # timetable or frequency
    'IS_FUTURE': False,
    'IS_ELASTIC': False,
    'CROWDING_TYPE': 'crowded', # options: uncrowded, congested, capacitated, crowded (crowded only available for timetable models only - frequency models use congested or capacitated)
    'EVENTS_TYPE': '' # event type, leave blank if this is not an events specific run (ie Olympics)
}

Definitions for each of the variables are outlined below;

  • ‘SCHEMA_NAME’ - the name of the PTM run
  • ‘MODEL_ASSIGNMENT_TYPE’ - type of assignment to be run. Options include either timetable or frequency
  • ‘IS_FUTURE’ - boolean field (either TRUE or FALSE) indicating if the model is a future or base horizon year
  • ‘IS_ELASTIC’ - boolean field (either TRUE or FALSE) indicating if the model is an elastic run (ie it uses the PTM elastic function to generate new demand)
  • ‘CROWDING_TYPE’ -crowding type to be used in the model. Options include;
    • uncrowded - used for uncrowded frequency or timetable models
    • congested - used for frequency assignments where a congested assignment is used
    • capacitated - used for frequency assignments where a capacitated assignment is used
    • crowded - used for timetable models where a crowded schedule based assignment is to be used
  • ‘EVENTS_TYPE’ - to be used if modelling a special events. This field should be left blank for business as usual modelling.

clone_existing_schema.ipynb

This notebook clones an existing schema into new schemas for modelling. This allows the modeller to base a run on an existing run without initialising the model run completely.

User Defined Variables

User defined variables for this notebook are shown below;

BASE_SCHEMA_NAME = 'BASE_SCHEMA_NAME'

PROJECT_SCHEMAS_TO_BUILD = [
    'PROJECT_SCHEMA_NAME_1',
    'PROJECT_SCHEMA_NAME_2',
    'PROJECT_SCHEMA_NAME_3',
    'PROJECT_SCHEMA_NAME_4']

OBJECTS_TO_COPY = ['base_network', 'transit_network', 'parameters', 'matrices', 'lanes']

Definitions for each of the variables are outlined below;

  • ‘BASE_SCHEMA_NAME’ - name of the base schema to copy
  • ‘PROJECT_SCHEMAS_TO_BUILD’ - list of names for the new cloned schemas. Having multiple options here allows for the modeller to generate a series of runs to modify and run.
  • OBJECTS_TO_COPY - options to copy. This includes: [‘base_network’, ‘transit_network’, ‘parameters’, ‘matrices’, ‘lanes’]