Modes table#

The modes table exists to list all the modes available in the model’s network, and its main role is to support the creation of graphs directly from the SQLite project.

Note

Modes must have a unique mode_id composed of a single letter, which is case-sensitive to a total of 52 possible modes in the model.

As described in the SQL data model, all AequilibraE models are created with 4 standard modes, which can be added to or removed by the user, and would look like the following.

Modes table structure

Consistency triggers#

As it happens with the links and nodes table (Network consistency behaviour), the modes table is kept consistent with the links table through the use of database triggers.

Directly changing the modes field in the nodes table#

A trigger guarantees that the value being inserted in the field is according to the values found in the associated links’ modes field. If the user attempts to overwrite this value, it will automatically be set back to the appropriate value.

Editing a mode in the modes table#

Whenever we want to edit a mode in the modes table, we need to check for two conditions:

  • The new mode_id is exactly one character long

  • The old mode_id is not still in use on the network

For each condition, a specific trigger was built, and if any of the checks fails, the transaction will fail.

The requirements for uniqueness and non-absent values are guaranteed during the construction of the modes table by using the keys UNIQUE and NOT NULL.

Adding a new mode to the modes table#

In this case, only the first behaviour mentioned above on Editing a mode in the modes table applies, the verification that the mode_id is exactly one character long. Therefore only one new trigger is required.

Removing a mode from the modes table#

In counterpoint, only the second behaviour mentioned above on Editing a mode in the modes table applies in this case, the verification that the old mode_id is not still in use by the network. Therefore only one new trigger is required.