You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/Documentation/Manual/cruisecontrol.rst
+7-26Lines changed: 7 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,8 +132,6 @@ A list of the available .eng file CC parameters follows here below.
132
132
"UseThrottleAsSpeedSelector", "if ControllerCruiseControlLogic is set to SpeedOnly, throttle when in Auto mode will change the maximum CC speed", "Boolean", "FALSE"
133
133
"UseThrottleAsForceSelector", "if ControllerCruiseControlLogic is set to None, throttle when in Auto mode will change the maximum CC Force", "Boolean", "FALSE"
134
134
"UseThrottleInCombinedControl", "Throttle is used as force selector or speed selector even if in combined control, to be used in conjunction of one of the two above parameters", "Boolean", "FALSE"
135
-
"DynamicBrakeIncreaseSpeed", "How fast the dynamic brake can increase (0.5 means 1% in 0.5sec)", "Float", "0.5"
136
-
"DynamicBrakeDecreaseSpeed", "Same for decreasing", "Float", "0.6"
137
135
"ControllerCruiseControlLogic", "Can have values 'None', 'SpeedOnly', 'Full'", "Enum", "Full"
138
136
"HasProportionalSpeedSelector", "Speed selector is performed by a lever ranging from 0 to max speed", "Boolean", "FALSE"
139
137
"SpeedSelectorIsDiscrete", "Speed selected can have only values multiple of NominalSpeedStep, even if selection is through mouse", "Boolean", "FALSE"
@@ -143,8 +141,8 @@ A list of the available .eng file CC parameters follows here below.
"SpeedDeltaToEnableTrainBrake", "This is the minimum speed delta between actual speed and desired speed for the CC to use also the train brake", "Float(speed)", "5m/s"
145
143
"SpeedDeltaToEnableFullTrainBrake", "This is the minimum speed delta between actual speed and desired speed for the CC to use also the train brake with no reduced intensity", "Float(speed)", "10m/s"
146
-
"TrainBrakeMinPercentValue", "This is the minimum train brake percent used by the CC, this depends also from the value of the smooth notch in the Brake_Train block", "Float(percent)", "30"
147
-
"TrainBrakeMaxPercentValue", "As above for maximum value. It must be lower than the value of the subsequent notch, and not too high to avoid that the brake is not fully released timely", "Float(percent)", "85"
144
+
"TrainBrakeMinPercentValue", "This is the minimum train brake percent used by the CC. 0 means no braking, 100 means full service braking", "Float(percent)", "30"
145
+
"TrainBrakeMaxPercentValue", "As above for maximum value. It must not be too high to avoid that the brake is not fully released timely", "Float(percent)", "85"
148
146
"ThrottleNeutralPosition", "The zero throttle position is neutral in auto mode, that is in such position the CC does not intervene", "Boolean", "FALSE"
149
147
"MinimumSpeedForCCEffect", "Below this speed CC has no effect", "Float(speed)", "0"
150
148
"StartInAutoMode", "Game starts with CC in Auto mode", "Boolean", "FALSE"
@@ -182,11 +180,9 @@ Train brake usage occurs when the delta between the actual train speed and
182
180
the target speed is higher than parameter SpeedDeltaToEnableTrainBrake.
183
181
Between this delta and SpeedDeltaToEnableFullTrainBrake the train brake is
184
182
set at TrainBrakeMinPercentValue. Above SpeedDeltaToEnableFullTrainBrake
185
-
the train brake is set to the maximum between a percentage of
186
-
TrainBrakeMaxPercentValue proportional to the max force percent set and
187
-
TrainBrakeMinPercentValue.
188
-
In other words, when the speed delta is high, train braking occurs with a
189
-
value that is proportional to the max force percent set; when train decelerates
183
+
the train brake is continuously adjusted to achieve a constant deceleration.
184
+
In other words, when the speed delta is high, train braking is adjusted to
185
+
obtain a constant deceleration when dynamic braking is not enough; when train decelerates
190
186
and delta reduces to SpeedDeltaToEnableFullTrainBrake the train brake is reduced to
191
187
TrainBrakeMinPercentValue. When train decelerates further and delta reduces to
192
188
SpeedDeltaToEnableTrainBrake the train brake is released. By adjusting these
@@ -200,23 +196,8 @@ block within the .eng file follows here::
200
196
UseTrainBrakeAndDynBrake ( True ) comment (** CC uses train brake and dyn brake together **)
201
197
SpeedDeltaToEnableTrainBrake ( 15km/h ) comment (** This is the minimum speed delta between actual speed and desired speed for the CC to use also the train brake **)
202
198
SpeedDeltaToEnableFullTrainBrake ( 30km/h ) comment (** This is the minimum speed delta between actual speed and desired speed for the CC to use also the train brake with no reduced intensity **)
203
-
TrainBrakeMinPercentValue ( 30 ) comment (** This is the minimum train brake percent used by the CC; this depends also from the value of the smooth notch in the Brake_Train block **)
204
-
TrainBrakeMaxPercentValue ( 60 ) comment (** As above for maximum value. It must be lower than the value of the subsequent notch, and not too high to avoid that the brake is not fully released timely **)
205
-
206
-
This is related to a brake controller defined as follows in the .eng file::
The continuous part of the controller is between second and third notch, that
218
-
is between 0.3 and 0.85. Therefore CC control of the train brake can occur
219
-
for percentages between 30 and 85.
199
+
TrainBrakeMinPercentValue ( 10 ) comment (** This is the minimum train brake percent used by the CC, where 0 means no braking and 100 full braking **)
200
+
TrainBrakeMaxPercentValue ( 60 ) comment (** As above for maximum value. It must not be too high to avoid that the brake is not fully released timely **)
0 commit comments