Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. thrustDelay=0;
  2. engineStartSpeed=0.75;
  3. brakeIdleSpeed=1.78;
  4. maxSpeed=250;
  5. fuelCapacity=72;
  6. wheelCircumference=2.277;
  7. antiRollbarForceCoef=0;
  8. antiRollbarForceLimit=0;
  9. antiRollbarSpeedMin=0;
  10. antiRollbarSpeedMax=0;
  11. idleRpm=1000;
  12. redRpm=8400;
  13. class complexGearbox
  14. {
  15. GearboxRatios[]=
  16. {
  17. "R1",-3.7800001,"N",0,"D1",4.0498,"D2",2.30,"D3",1.59,"D4",1.181,"D5",1,"D6",0.86,"D7",0.81};
  18. TransmissionRatios[]=
  19. {
  20. "Low",
  21. 3.8499999
  22. };
  23. gearBoxMode="auto";
  24. moveOffGear=1;
  25. driveString="D";
  26. neutralString="N";
  27. reverseString="R";
  28. transmissionDelay=0.0099999998;
  29. };
  30. simulation="carx";
  31. dampersBumpCoef=0.025;
  32. differentialType="all_limited";
  33. frontRearSplit=0.30000001;
  34. frontBias=2.5;
  35. rearBias=2.5;
  36. centreBias=2.5;
  37. clutchStrength=55;
  38. maxOmega=879.65002;
  39. enginePower=432;
  40. peakTorque=754;
  41. dampingRateFullThrottle=0.079999998;
  42. dampingRateZeroThrottleClutchDisengaged=0.050000001;
  43. dampingRateZeroThrottleClutchEngaged=0.34999999;
  44. slowSpeedForwardCoef=1;
  45. normalSpeedForwardCoef=1;
  46. torqueCurve[]=
  47. {
  48. {0,0},
  49. {0.14,0.41999999},
  50. {0.28999999,0.70999998},
  51. {0.43000001,1},
  52. {0.56999999,1},
  53. {0.70999998,0.97000003},
  54. {0.86000001,0.88999999},
  55. {1,0.69999999}
  56. };
  57. changeGearMinEffectivity[]={1,0.15000001,0.85000002,0.85000002,0.85000002,0.85000002,0.85000002,0.75,0.75};
  58. switchTime=0.11;
  59. latency=1;
  60. class Wheels
  61. {
  62. class LF
  63. {
  64. boneName="wheel_1_1_damper";
  65. steering=1;
  66. side="left";
  67. center="wheel_1_1_axis";
  68. boundary="wheel_1_1_bound";
  69. width="0.2";
  70. mass=20;
  71. MOI=5.3000002;
  72. dampingRate=0.5;
  73. dampingRateDamaged=5;
  74. dampingRateDestroyed=5000;
  75. maxBrakeTorque=5000;
  76. suspTravelDirection[]={0,-1,0};
  77. suspForceAppPointOffset="wheel_1_1_axis";
  78. tireForceAppPointOffset="wheel_1_1_axis";
  79. maxCompression=0.1;
  80. mMaxDroop=0.1;
  81. sprungMass=400;
  82. springStrength=90000;
  83. springDamperRate=5990;
  84. longitudinalStiffnessPerUnitGravity=100000;
  85. latStiffX=18;
  86. latStiffY=180;
  87. frictionVsSlipGraph[]=
  88. {
  89. {0,1},
  90. {0.5,1},
  91. {1,1}
  92. };
  93. };
  94. class LR: LF
  95. {
  96. boneName="wheel_1_2_damper";
  97. steering=0;
  98. center="wheel_1_2_axis";
  99. boundary="wheel_1_2_bound";
  100. suspForceAppPointOffset="wheel_1_2_axis";
  101. tireForceAppPointOffset="wheel_1_2_axis";
  102. maxHandBrakeTorque=18000;
  103. latStiffX=18;
  104. latStiffY=18000;
  105. };
  106. class RF: LF
  107. {
  108. boneName="wheel_2_1_damper";
  109. center="wheel_2_1_axis";
  110. boundary="wheel_2_1_bound";
  111. suspForceAppPointOffset="wheel_2_1_axis";
  112. tireForceAppPointOffset="wheel_2_1_axis";
  113. steering=1;
  114. side="right";
  115. latStiffX=18;
  116. latStiffY=180;
  117. };
  118. class RR: RF
  119. {
  120. boneName="wheel_2_2_damper";
  121. steering=0;
  122. center="wheel_2_2_axis";
  123. boundary="wheel_2_2_bound";
  124. suspForceAppPointOffset="wheel_2_2_axis";
  125. tireForceAppPointOffset="wheel_2_2_axis";
  126. maxHandBrakeTorque=18000;
  127. latStiffX=18;
  128. latStiffY=18000;
  129. };
  130. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement