changed back some config

This commit is contained in:
max
2026-01-14 17:29:48 +01:00
parent c2bd50511e
commit bbd82da07e
3 changed files with 50 additions and 86 deletions

View File

@@ -13,7 +13,7 @@
// Physical properties
public float MomentOfInertia { get; set; } = 0.25f;
public float IdleRPM { get; set; } = 800f;
public float RevLimit { get; set; } = 12000;
public float RevLimit { get; set; } = 7000;
public float StallSpeed { get; set; } = 200f;
public float Throttle { get; set; } = 0f;
public bool IsRunning => RPM > StallSpeed;
@@ -23,14 +23,15 @@
// Torque curve
public Dictionary<float, float> TorqueCurve { get; set; } = new()
{
{ 0f, 0f },
{ 800f, 200f },
{ 2000f, 300 },
{ 4500f, 300f },
{ 6800f, 300 },
{ 7200f, 350 },
{ 11000f, 600f },
{ 12500, 500f },
{ 0f, 0f },
{ 800f, 95f },
{ 1500f, 160f },
{ 2500f, 200f },
{ 4000f, 235f }, // peak torque
{ 5000f, 230f },
{ 6000f, 210f },
{ 6800f, 185f },
{ 7200f, 170f },
};
public Engine()