Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit e92e7acb authored by Michael KRISPER's avatar Michael KRISPER
Browse files

CycleGearbox: Corrected Null-Exception when no TorqueConverter is present

parent 86432669
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
if (!gearboxModelData.Type.AutomaticTransmission()) {
return;
}
var strategy = new CycleShiftStrategy();
strategy.Gearbox = this;
var strategy = new CycleShiftStrategy { Gearbox = this };
TorqueConverter = new TorqueConverter(this, strategy, container, gearboxModelData.TorqueConverterData, engineInertia);
if (TorqueConverter == null) {
throw new VectoException("Torque Converter required for AT transmission!");
......@@ -68,7 +67,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
public override void Connect(ITnOutPort other)
{
base.Connect(other);
TorqueConverter.NextComponent = other;
if (TorqueConverter != null)
TorqueConverter.NextComponent = other;
}
public override IResponse Initialize(NewtonMeter outTorque, PerSecond outAngularVelocity)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment