In many cases, MATSim uses a terminology that is different from the mainstream terminology. In most cases, the reason is that the concepts are only similar, but not identical, and we wanted to avoid the confusion of using the same term for aspects that are similar but not identical. The following attempts some commented approximate ”translations” from more standard teminology to MATSim terminology. 

Choice set → “plan set” of an agent

During MATSim iterations, agent accumulate plans. This can be interpreted as building a choice set over time. A problem is that the process that generates the choice set at this point is not systematic.

Possible future developments: Once it has been made explicit that ”plans generation” means ”choice set generation”, the terminology may be made standard.

Choice set generation → Time mutation/re-route/... ; ”innovation”

As said above, the set of MATSim plans can be seen as this agent’s choice set. MATSim generates new plans ”on-the-fly”, i.e. while the simulation is running. We sometimes call this ”innovation”, since agents create new plans (= add entries to the choice set), rather than choosing between existing plans.

Choice set generation, choice → replanning

In MATSim, there is no strict separation between ”choice set generation” and ”choice”: at the replanning step, for each agent, a replanning strategy is randomly choosen. This strategy may consist in selecting a random plan to use to generate a new plan by mutation (”choice set generation” part), or just to select a past plan based on the experienced score (”choice” part). 

Convergence → learning rate

Scores in matsim are computed as
  scorenew = (1 − α) · scoreold + α · scoresim ,

where scoresim is the score that is obtained from the execution of the plans (= network loading). 

μ (logit model scaling factor) → beta brain

MATSim scoring function:

BrainExpBeta i β i x i

Typical logit model formulation:

μ i β i x i

As is well known, μ or βi are not independently identifiable from estimation. For simulation, they are hence somewhat arbitrary. The default value for ”BrainExpBeta” is 2 for historical reasons, but it should be set to 1 if the parameters of the scoring function are estimated rather than hand-calibrated.

Possible future development: Default value of BrainExpBeta should be set to 1 instead of 2.

Multinomial logit → ExpBetaPlanSelector

Comments:

Possible future developments: None of this is ideal, since, after the introduction of a policy, it is not clear which behavioral switches are due to the policy, and which are due to sampling. In theory, one should have unbiased samples before and after the introduction of the policy, but at this point this is not implemented and it is also computationally considerably more expensive than what is done now. 

Network loading → mobsim, mobility simulation, physical simulation

The standard terminology has the ”network loading” on the ”supply side”. In my (KN’s) view, the ”simulation of the physical system” is not the supply side, but what in economics is called ”technology”. This can for example be seen in the fact that ”lane changing” is part of the mobsim, but this is, in my view, not a ”supply side” aspect.

Possible future developments: May switch to ”network loading” if there is agreement that this is a better name. 

Stationary → relaxed

“stationary” means that the probability distribution does not shift any more. However, as long as ”innovation” is still switched in on MATSim (new routes, new times, ...), the result is not truly stationary. Thus we avoid the word. If innovation is switched off, the result is indeed a statinary process, but limited to the set of plans that every agent has at that point in time.

Possible future developments: not clear. Minimally, publications should be precise.

<module name="strategy" >
  <!-- iteration after which module will be disabled. ... -->
  <param name="ModuleDisableAfterIteration_1" value="null" />
  <param name="ModuleDisableAfterIteration_2" value="950" />

  <!-- probability that a strategy is applied to a given person. ... -->
  <param name="ModuleProbability_1" value="0.9" />
  <param name="ModuleProbability_2" value="0.1" />

  <!-- name of strategy ... -->
  <param name="Module_1" value="ChangeExpBeta" />
  <param name="Module_2" value="ReRoute" />

  <!-- maximum number of plans per agent ... -->
  <param name="maxAgentPlanMemorySize" value="4" />
</module>

The above means:

Utility ↔ score

Configuration: At least when using random utility models (such as multinomial logit aka ExpBeta...), the score has the same function as the deterministic utility.