Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. class complexGearbox
  6. {
  7. GearboxRatios[] = {"R1",-2.475,"N",0,"D1",2.367,"D2",1.67,"D3",1.238,"D4",0.99,"D5",0.802,"D6",0.601};
  8. TransmissionRatios[] = {"High",5.1};
  9. gearBoxMode = "auto";
  10. moveOffGear = 1;
  11. driveString = "D";
  12. neutralString = "N";
  13. reverseString = "R";
  14. };
  15. simulation = "carx";
  16. dampersBumpCoef = 3.0;
  17. differentialType = "all_limited";
  18. frontRearSplit = 0.5;
  19. frontBias = 1.3;
  20. rearBias = 1.3;
  21. centreBias = 1.3;
  22. clutchStrength = 20.0;
  23. enginePower = 141;
  24. maxOmega = 302;
  25. peakTorque = 870;
  26. dampingRateFullThrottle = 0.08;
  27. dampingRateZeroThrottleClutchEngaged = 2.0;
  28. dampingRateZeroThrottleClutchDisengaged = 0.35;
  29.  
  30. torqueCurve[] = {
  31. { 0.0,0.17 },
  32. { 0.25,0.65 },
  33. { 0.35,0.75 },
  34. { 0.461,1.0 },
  35. { 0.6,0.95 },
  36. { 0.7,0.85 },
  37. { 0.8,0.75 },
  38. { 1.0,0.5 }};
  39. changeGearMinEffectivity[] = {0.95,0.15,0.95,0.95,0.95,0.95,0.95};
  40. switchTime = 0.31;
  41. latency = 1.0;
  42. class Wheels
  43. {
  44. class LF
  45. {
  46. boneName = "wheel_1_1_damper";
  47. steering = 1;
  48. side = "left";
  49. center = "wheel_1_1_axis";
  50. boundary = "wheel_1_1_bound";
  51. width = "0.126";
  52. mass = 50;
  53. MOI = 18.8; //28.8
  54. dampingRate = 0.2;
  55. maxBrakeTorque = 15000;
  56. maxHandBrakeTorque = 1000;
  57. suspTravelDirection[] = {0,-1,0};
  58. suspForceAppPointOffset = "wheel_1_1_axis";
  59. tireForceAppPointOffset = "wheel_1_1_axis";
  60. maxCompression = 0.8;
  61. mMaxDroop = 0.3;
  62. sprungMass = 1475;
  63. springStrength = 62625;
  64. springDamperRate = 6920;
  65. longitudinalStiffnessPerUnitGravity = 10000;
  66. latStiffX = 25;
  67. latStiffY = 180;
  68. frictionVsSlipGraph[] = {
  69. { 0,1 },
  70. { 0.5,1 },
  71. { 1,1 }};
  72. };
  73. class LR: LF
  74. {
  75. boneName = "wheel_1_2_damper";
  76. steering = 0;
  77. center = "wheel_1_2_axis";
  78. boundary = "wheel_1_2_bound";
  79. suspForceAppPointOffset = "wheel_1_2_axis";
  80. tireForceAppPointOffset = "wheel_1_2_axis";
  81. maxHandBrakeTorque = 1500;
  82. };
  83. class RF: LF
  84. {
  85. boneName = "wheel_2_1_damper";
  86. center = "wheel_2_1_axis";
  87. boundary = "wheel_2_1_bound";
  88. suspForceAppPointOffset = "wheel_2_1_axis";
  89. tireForceAppPointOffset = "wheel_2_1_axis";
  90. steering = 1;
  91. side = "right";
  92. };
  93. class RR: RF
  94. {
  95. boneName = "wheel_2_2_damper";
  96. steering = 0;
  97. center = "wheel_2_2_axis";
  98. boundary = "wheel_2_2_bound";
  99. suspForceAppPointOffset = "wheel_2_2_axis";
  100. tireForceAppPointOffset = "wheel_2_2_axis";
  101. maxHandBrakeTorque = 1500;
  102. };
  103. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement