/// <summary>
        /// the suspension of a single wheel
        /// </summary>
        /// <param name="wheel">the wheel for which the suspension is</param>
        public WheelSuspension(ImportantClasses.Enums.Wheels wheel)
        {
            BellCrank = new BellCrank();
            Damper    = new Damper();
            PushRod   = new PushRod();
            WheelHub  = new WheelHub();
            Wishbone  = new Wishbone();

            Wheel = wheel;
            _actualCalculation = new SuspensionOutput();
        }
 /// <summary>
 /// one wheel of the vehicle
 /// </summary>
 /// <param name="wheel">which wheel?</param>
 public Wheel(ImportantClasses.Enums.Wheels wheel)
 {
     _actualCalculation = new WheelOutput();
     _wheel             = wheel;
 }