Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1. thrustDelay = 0.0099999998;
  2. brakeIdleSpeed = 1.78;
  3. maxSpeed = 290;
  4. fuelCapacity = 100;
  5. fuelConsumptionRate = 9;
  6. wheelCircumference = 2.8050001;
  7. antiRollbarForceCoef = 0.5;
  8. antiRollbarForceLimit = 0.5;
  9. antiRollbarSpeedMin = 20;
  10. antiRollbarSpeedMax = 80;
  11. idleRpm = 800;
  12. redRpm = 6900;
  13. class complexGearbox
  14. {
  15. GearboxRatios[] = {"R1",-2.575,"N",0,"D1",2,"D2",1.7,"D3",1.5,"D4",1,"D5",0.5};
  16. TransmissionRatios[] = {"High",5.539};
  17. gearBoxMode = "auto";
  18. moveOffGear = 1;
  19. driveString = "D";
  20. neutralString = "N";
  21. reverseString = "R";
  22. gearUpMaxCoef = 0.8;
  23. gearDownMaxCoef = 0.75;
  24. gearUpMinCoef = 0.7;
  25. gearDownMinCoef = 0.7;
  26. transmissionDelay = 0.01;
  27. };
  28. simulation = "carx";
  29. dampersBumpCoef = 6;
  30. differentialType = "all_limited";
  31. frontRearSplit =0.30000001;
  32. frontBias = 1.3;
  33. rearBias = 1.3;
  34. centreBias = 1.3;
  35. clutchStrength = 55;
  36. enginePower = 790;
  37. maxOmega = 750;
  38. peakTorque = 853;
  39. dampingRateFullThrottle = 0.079999998;
  40. dampingRateZeroThrottleClutchEngaged = 0.34999999;
  41. dampingRateZeroThrottleClutchDisengaged = 0.35;
  42. torqueCurve[] = {{0,0},{0.14,0.41},{0.28999999,0.76999998},{0.43000001,1},{0.56999999,1},{0.70999998,0.87},{0.86000001,0.76999998},{1,0.62}};
  43. changeGearMinEffectivity[] = {0.95,0.15,0.95,0.97,0.97,0.95,0.95};
  44. switchTime = 0.31;
  45. latency = 1;
  46. class Wheels
  47. {
  48. class LF
  49. {
  50. boneName = "wheel_1_1_damper";
  51. steering = 1;
  52. side = "left";
  53. center = "wheel_1_1_axis";
  54. boundary = "wheel_1_1_bound";
  55. width = 0.2;
  56. mass = 20;
  57. MOI = 5.3000002;
  58. dampingRate = 0.5;
  59. maxBrakeTorque = 5000;
  60. maxHandBrakeTorque = 0;
  61. suspTravelDirection[] = {0,-1,0};
  62. suspForceAppPointOffset = "wheel_1_1_axis";
  63. tireForceAppPointOffset = "wheel_1_1_axis";
  64. maxCompression = 0.1;
  65. mMaxDroop = 0.050000001;
  66. sprungMass = 350.5;
  67. springStrength = 27250;
  68. springDamperRate = 6725;
  69. longitudinalStiffnessPerUnitGravity = 100000;
  70. latStiffX = 25;
  71. latStiffY = 18000;
  72. frictionVsSlipGraph[] = {{0.17,0.95},{0.4,0.85},{1,0.75}};
  73. };
  74. class LR: LF
  75. {
  76. boneName = "wheel_1_2_damper";
  77. steering = 0;
  78. center = "wheel_1_2_axis";
  79. boundary = "wheel_1_2_bound";
  80. suspForceAppPointOffset = "wheel_1_2_axis";
  81. tireForceAppPointOffset = "wheel_1_2_axis";
  82. maxBrakeTorque = 4000;
  83. maxHandBrakeTorque = 3000;
  84. };
  85. class RF: LF
  86. {
  87. boneName = "wheel_2_1_damper";
  88. center = "wheel_2_1_axis";
  89. boundary = "wheel_2_1_bound";
  90. suspForceAppPointOffset = "wheel_2_1_axis";
  91. tireForceAppPointOffset = "wheel_2_1_axis";
  92. steering = 1;
  93. side = "right";
  94. maxBrakeTorque = 4000;
  95. };
  96. class RR: RF
  97. {
  98. boneName = "wheel_2_2_damper";
  99. steering = 0;
  100. center = "wheel_2_2_axis";
  101. boundary = "wheel_2_2_bound";
  102. suspForceAppPointOffset = "wheel_2_2_axis";
  103. tireForceAppPointOffset = "wheel_2_2_axis";
  104. maxBrakeTorque = 4000;
  105. maxHandBrakeTorque = 3000;
  106. };
  107. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement