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

Skip to content
Snippets Groups Projects
Commit 9aee8175 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

adding missing files

parent fdd8c426
No related branches found
No related tags found
No related merge requests found
v [km/h],acc [m/s],dec [m/s]
0,1,-1
25,1,-1
50,0.642857143,-1
60,0.5,-0.5
120,0.5,-0.5
using TUGraz.VectoCommon.Models;
using TUGraz.VectoCommon.Utils;
using TUGraz.VectoCore.Models.Connector.Ports;
using TUGraz.VectoCore.Models.Connector.Ports.Impl;
using TUGraz.VectoCore.Models.SimulationComponent;
namespace TUGraz.VectoCore.Tests.Utils
{
public class MockIdleController : ICombustionEngineIdleController
{
public IResponse Request(Second absTime, Second dt, NewtonMeter torque, PerSecond angularVelocity, bool dryRun = false)
{
//throw new System.NotImplementedException();
return new ResponseSuccess();
}
public IResponse Initialize(NewtonMeter torque, PerSecond angularVelocity)
{
//throw new System.NotImplementedException();
return new ResponseSuccess();
}
public ITnOutPort RequestPort { get; set; }
public void Reset()
{
//throw new System.NotImplementedException();
}
}
}
\ No newline at end of file
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