Skip to content

Commit

Permalink
update docs; refs #8873 #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Schwamborn committed Aug 6, 2021
1 parent c5f58e5 commit 1dd4e55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ These values have the following meanings:
| containerCapacity | int | 0 | The number of containers the vehicle can transport. |
| boardingDuration | float | 0.5 | The time required by a person to board the vehicle. |
| loadingDuration | float | 90.0 | The time required to load a container onto the vehicle. |
| latAlignment | string | *center* | The preferred lateral alignment when using the [sublane-model](Simulation/SublaneModel.md). One of (*left, right, center, compact, nice, arbitrary*). |
| latAlignment | float, "left", "right", "center", "compact", "nice", "arbitrary" | "center" | The preferred lateral alignment when using the [sublane-model](Simulation/SublaneModel.md). {{DT_FLOAT}} (in m from the center of the lane) or one of ("left", "right", "center", "compact", "nice", "arbitrary"). |
| minGapLat | float | 0.6 | The desired minimum lateral gap when using the [sublane-model](Simulation/SublaneModel.md) |
| maxSpeedLat | float | 1.0 | The maximum lateral speed when using the [sublane-model](Simulation/SublaneModel.md) |
| actionStepLength | float | global default (defaults to the simulation step, configurable via **--default.action-step-length**) | The interval length for which vehicle performs its decision logic (acceleration and lane-changing). The given value is processed to the closest (if possible smaller) positive multiple of the simulation step length. See [actionStepLength details](Car-Following-Models.md#actionsteplength)|
Expand Down
3 changes: 2 additions & 1 deletion docs/web/docs/Simulation/SublaneModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ multiplier. At -1 the multiplier is 0.5 and at 1 the multiplier is
Impatience grows whenever a lane-change manoeuvre is blocked.
- **lcAccelLat**: maximum lateral acceleration per second. Together
with *maxSpeedLat* this constrains lateral movement speed.
- **latAlignment**: prefered lateral alignment within a lane.
- **latAlignment**: preferred lateral alignment within a lane.
- right: stay on the right side of the lane
- center: stay in the center of the lane
- left: stay on the left side of the lane
Expand All @@ -155,6 +155,7 @@ with *maxSpeedLat* this constrains lateral movement speed.
- compact: stay close to the neighboring vehicle on the right
- nice: align with the nearest sublane boundary to the right. (to
avoid using more sublanes than necessary)
- {{DT_FLOAT}}: preferred lateral offset in m from the center of the lane
- **lcMaxSpeedLatStanding**, **lcMaxSpeedLatFactor**: Compute a boundary on lateral speed using lcMaxSpeedLatStanding + lcMaxSpeedLatFactor * speed. If factor > 0 this is an upper bound on lateral speed and if factor < it acts as a lower bound.

### Misc
Expand Down

0 comments on commit 1dd4e55

Please sign in to comment.