Spawner

Spawners are responsible to populate the world. In order to do so, several spawners can be used.

PreRunSpawner

The PreRunSpawner is responsible for populating the scenery/world with Common-Agents before the simulator starts. This Spawner only acts once before the simulator starts and is not active during the simulation run. The PreRunSpawner needs a list of SpawnZones that define where it will spawn agents and a list of weighted TrafficGroups that defines the type and parameters of the spawned agents. The SpawnZones have the following parameters:

Parameter

Type

Unit

optional

Description

Roads

StringVector

no

List of linked Roads on which to spawn Agents. Intermediate roads may be omitted. If a road is not linked to the previous in the list (or doesn’t exist), this road and the roads after it are ignored. This means in particular, that if the first road in the list does not exist, the entire SpawnZone is ignored.

Lanes

IntVector

yes

The LaneIDs of the Lanes of the Road on which to spawn Agents (given on SStart). Inexistent lanes are ignored. If omitted all lanes are used.

SStart

Double

m

yes

The S position on the first road specifying the start of the range within which to spawn Agents If omitted the whole road is included

SEnd

Double

m

yes

The S position on the last road specifying the start of the range within which to spawn Agents

SLength

Double

m

yes

Length of spawned area calculated from SStart This is ignored if SEnd is explicitly defined. If neither is given the whole road is included

Note

Lanes of two SpawnZones should not intersect each other. The behavior in this case is undefined. The PreRunSpawner is not required to fill the SpawnZones in the given order.

SStart, SEnd and SLength may be out of range for the road. In this case they are cropped such that the spawn range is maximum within the road’s bounds. It is also possible to define the MinimumSeparationBuffer either as fixed parameter of type double or as stochastic distribution:

Parameter

Type

Unit

optional

Description

MinimumSeparationBuffer

Double (or any stochastic distribution)

m

yes

Required minimum distance on lane between two agents

If the MinimumSeparationBuffer isn’t defined the default value of 5m is used.

<Profile Name="DefaultPreRunCommon">
  <List Name="SpawnZones">
    <ListItem>
      <StringVector Key="Roads" Value="1"/>
      <IntVector Key="Lanes" Value="-1,-2,-3,-4,-5"/>
      <Double Key="SStart" Value="0.0"/>
      <Double Key="SEnd" Value="1000.0"/>
    </ListItem>
  </List>
  <List Name="TrafficGroups">
    <ListItem>
      <Double Key="Weight" Value="4"/>
      <Reference Type="TrafficGroup" Name="LightVehicles"/>
    </ListItem>
    <ListItem>
      <Double Key="Weight" Value="1"/>
      <Reference Type="TrafficGroup" Name="HeavyVehicles"/>
    </ListItem>
  </List>
  <NormalDistribution Key="MinimumSeparationBuffer" Mean="3.47" SD="1.13" Min="2.0" Max="6.0"/>
</Profile>

The PreRunCommonSpawner will spawn common agents on the specified Lanes of the specified continuous Road sequence (= RoadStream) inside the specified s interval based on the parameters of the TrafficGroups. The following restrictions apply:

  • The PreRunCommonSpawner only spawns on the following OpenDRIVE lane types:
    • Driving

    • OnRamp

    • OffRamp

    • ConnectingRamp

  • If the ScenarioSpawner spawned Scenario Agents (including the Ego agent) before this Spawner is triggered (in the intended order of these Spawners), ranges between the Scenario Agents are invalid for spawning by this Spawner. The spawn ranges will only be augmented by Scenario Agents on the same Lane. As such, there are 7 different potential scenarios that may arise in terms of how the valid spawn ranges of the spawner may be impacted:

    1. Two Scenario Agents on the same Lane

      One before S-Start position and one after S-End position: This invalidates the entirety of the spawning range; no agents may be spawned here

    2. Two Scenario Agents on the same Lane

      One between S-Start position and S-End position and one either before S-Start or after S-End: The only valid spawn range is that on the opposite side of the in-specified-range Agent from the outside-specified-range agent

    3. Two Scenario Agents on the same Lane

      Both within the specified S-Start and S-End positions The valid spawn ranges are between S-Start and the first car and between the second car and S-End

    4. Two Scenario Agents on the same Lane

      Both outside the specified S-Start and S-End positions on the same side (both before S-Start or both after S-End): The specified spawn range is entirely valid

    5. One Scenario Agent on the same Lane

      Within specified S-Start and S-End positions: The valid spawn ranges include all but the bounds of the Agent within the specified S-Start and S-End positions

    6. One Scenario Agent on the same Lane

      Outside specified S-Start and S-End positions: The specified spawn range is entirely valid

    7. No Scenario Agents on the same Lane

      The specified spawn range is entirely valid

  • If only non-existent lanes on SStart are specified, no spawning will occur

  • If some specified lanes exist and some are non-existent, spawning will occur for the lanes which do exist

Once the spawning ranges are determined the PreRunSpawner will spawn for each spawning area based on the following logic:

  1. First the agentprofile needs to be determined. If the current spawn position evaluate to a right lane, the pool from which the agentprofile is drafted is extended by all traffic groups which contain the RightLaneOnly flag set to true.

  2. Then the time gap between the new agent and the closest existing agent is sampled.

  3. Afterwards the velocity of the new agent is being sampled under consideration of the homogeneity.

  4. The gap and velocity are used to calculate the distance between the new agent and the next agent in this spawnarea. Here a minimum distance of 5m between agents is required.

  5. A random route is sampled starting at the appropriate road

  6. Based on the distance and the velocity the TTC (2s) conditions are evaluated.If the TTC is critical the spawn velocity is reduced to fulfill the TTC requirements.

  7. As a final step the spawnzone evaluates the spawncoordinates. If they are valid the agent is created, else the spawnzone moves on to the next spawning range.

RuntimeSpawner

The RuntimeSpawner (included in library “SpawnerRuntimeCommon_OSI”) is responsible for maintaining a populated scenery throughout the simulation runtime. It acts at each timestep throughout the simulation run and attempts to spawn Common Agents at the specified location(s). The RuntimeSpawner needs a list of SpawnZones that define where it will spawn agents and a list of weighted TrafficGroups that defines the type and parameters of the spawned agents. The SpawnZones have the following parameters:

Parameter

Type

Unit

Description

Roads

StringVector

The RoadIDs of the Roads on which to spawn Agents

Lanes

IntVector

The LaneIDs of the Lanes of the Road on which to spawn Agents

S-Position

Double

m

The S position specifying at which point to spawn Agents

It is also possible to define the MinimumSeparationBuffer either as fixed parameter of type double or as stochastic distribution:

Parameter

Type

Unit

optional

Description

MinimumSeparationBuffer

Double (or any stochastic distribution)

m

yes

Required minimum distance on lane between two agents

If the MinimumSeparationBuffer isn’t defined the default value of 5m is used.

<Profile Name="DefaultRuntimeCommon">
  <List Name="SpawnPoints">
    <ListItem>
      <StringVector Key="Roads" Value="1"/>
      <IntVector Key="Lanes" Value="-1,-2,-3,-4,-5"/>
      <Double Key="SCoordinate" Value="0.0"/>
    </ListItem>
  </List>
  <List Name="TrafficGroups">
    <ListItem>
      <Double Key="Weight" Value="4"/>
      <Reference Type="TrafficGroup" Name="LightVehicles"/>
    </ListItem>
    <ListItem>
      <Double Key="Weight" Value="1"/>
      <Reference Type="TrafficGroup" Name="HeavyVehicles"/>
    </ListItem>
  </List>
  <NormalDistribution Key="MinimumSeparationBuffer" Mean="3.47" SD="1.13" Min="2.0" Max="6.0"/>
</Profile>

The RuntimeSpawner will spawn based on the following logic:

  • First the agentprofile needs to be determined. If the current spawn position evaluates to a right lane, the pool from which the agentprofile is drafted is extended by all traffic groups which contain the RightLaneOnly flag set to true.

  • Then the gap between the spawn time of the new agent and the previously spawned agent is sampled.

  • Afterwards the velocity of the new agent is being sampled under consideration of the homogeneity.

  • A random route is sampled starting at the appropriate road

  • Once the timely gap expires, the spawnpoint evaluate if the TTC (2s) conditions and a minimum required distance between agents (5m) are met. If the TTC is critical the spawn velocity is reduced to fullfill the TTC requriements. If the minimum distance is not fullfilled, the agent will be held back.

  • If all requirements were fullfilled the agent is spawned.

The RuntimeSpawner only spawns on the following OpenDRIVE lane types: Driving, OnRamp

TrafficGroups

Both the PreRunSpawner and the RuntimeSpawner need one or more TrafficGroup. These are typically defined in a separate ProfileGroup of type “TrafficGroup” and then reference by the spawner profile. In this way both spawner can use the same TrafficGroups.

Parameter

Type

Unit

Description

AgentProfiles

<List>

A set of <ListItem>s which define potential AgentProfile values for the Agents spawned in the SpawnArea and the probability at which the TrafficVolume will be selected

Velocity

Distribution

m/s

A stochastic distribution describing the velocity of the spawned Agents

TGap

Distribution

s

A stochastic distribution describing the time gap between spawned Agents

Homogeneity

DoubleVector

OPTIONAL: A vector describing the velocity increments for left lanes

RightLaneOnly

Bool

OPTIONAL: A flag determining whether this TrafficGroup can only be applied to the right most lane

<Profile Name="LightVehicles">
  <List Name="AgentProfiles">
    <ListItem>
      <String Key="Name" Value="LuxuryClassCarAgent"/>
      <Double Key="Weight" Value="0.4"/>
    </ListItem>
    <ListItem>
      <String Key="Name" Value="MiddleClassCarAgent"/>
      <Double Key="Weight" Value="0.6"/>
    </ListItem>
  </List>
  <NormalDistribution Key="Velocity" Max="43.685" Mean="31.475" Min="19.265" SD="6.105"/>
  <LogNormalDistribution Key="TGap" Max="80" Min="0.5" Mu="1.5" Sigma="1.7"/>
  <DoubleVector Key="Homogeneity" Value="0.820, 1.0"/>
</Profile>