1 namespace TrainManager.BrakeSystems
2 {
3 	/// <summary>The types of electropnuematic control system available for a train with dynamic (motor assisted) braking</summary>
4 	public enum EletropneumaticBrakeType
5 	{
6 		/// <summary>The motor will always brake in addition to the physical brake, leading to a stronger braking force at all times.</summary>
7 		None = 0,
8 		/// <summary>The pressure to the brake cylinder is interrupted when the train travels above the brake control speed, and the electric brake is used instead.
9 		/// When below the control speed, the physical brake operates normally, while the electric brake is not used.
10 		/// </summary>
11 		ClosingElectromagneticValve = 1,
12 		/// <summary>The motor is used to brake the train with the deceleration setting as specified in the Performance section.
13 		/// If the motor cannot provide this deceleration on its own, the physical brake is additionally used.
14 		/// When the train travels below the brake control speed, the physical brakes are used.
15 		/// However, as the physical brakes need time to fill the brake cylinder, the electric brake is still used to compensate for this delay.
16 		/// </summary>
17 		DelayFillingControl = 2
18 	}
19 }
20