Torque Curve

Discussion in 'Content Creation' started by GameNoobTV, Apr 1, 2016.

  1. GameNoobTV

    GameNoobTV
    Expand Collapse

    Joined:
    Aug 28, 2015
    Messages:
    413
    I am attempting at making a realistic engine, but I am short on knowledge as to how to properly input information into the jbeam and what information I need. Any help is greatly appreciated.
     
  2. Spaceballs the Username

    Spaceballs the Username
    Expand Collapse

    Joined:
    Oct 13, 2015
    Messages:
    568
    Google image search a torque curve / dyno for the engine you want to be closest to.

    e.g. "6.2L Hellcat torque curve" will return plenty of images of torque curves, some unrelated, to the engine you are looking for.

    It gets a bit tougher with factory turbocharged engines as it's harder to find the NA(naturally aspirated) torque curve but you can still make it work.
     
  3. GameNoobTV

    GameNoobTV
    Expand Collapse

    Joined:
    Aug 28, 2015
    Messages:
    413
    Now how do I put it into an engine jbeam?
     
  4. Josh

    Josh
    Expand Collapse

    Joined:
    Jul 21, 2013
    Messages:
    1,082
    Torque value for torque curves is in N~m.
     
  5. Spaceballs the Username

    Spaceballs the Username
    Expand Collapse

    Joined:
    Oct 13, 2015
    Messages:
    568
    You look at the graph and manually add torque values at specified RPMs. There's no current automated way to do this. And you will have to do some guesstimating on what the exact values on the graph are. As a best practice, i go in 500-1000rpm increments with 2 special additions for the highest and lowest point. E.g.:

    Hellcat curve:
    Code:
            ["rpm", "torque"]
            [0, 0],
            [500, 614],
            [1000, 683],
            [2000, 802],
            [3000, 891],
            [4000, 844],
            [5000, 799],
            [6000, 754],
            [7000, 701],
            [8000, 659],
    
    Note that most torque curve graphs are in Ft*Lb. You will have to convert it to Nm.
     
  6. GameNoobTV

    GameNoobTV
    Expand Collapse

    Joined:
    Aug 28, 2015
    Messages:
    413
    Is there any way to generate a torque curve?
     
  7. Spaceballs the Username

    Spaceballs the Username
    Expand Collapse

    Joined:
    Oct 13, 2015
    Messages:
    568
    There was an Automation (name of a game) Engine Torque Curve generator but it is now out of date, and it requires you to have the game Automation.

    For now, if you want realistic torque curves, Google and some research is the best you'll have.
     
  8. GameNoobTV

    GameNoobTV
    Expand Collapse

    Joined:
    Aug 28, 2015
    Messages:
    413
    deleted
    --- Post updated ---
    If the power starts at 900 rpm, what increments would I go by from there?
     
  9. Spaceballs the Username

    Spaceballs the Username
    Expand Collapse

    Joined:
    Oct 13, 2015
    Messages:
    568
    start your torque curve at 900 with what it reads, then do another entry at 1000 rpm and go 1000 rpm increments from there. the game doesn't really care about the intervals between entries.

    you can have:
    Code:
            [0, 0],
            [4000, 614],
            [8000, 683],
            [12000, 802],
            [16000, 891],
    
    or

    Code:
            [0, 0],
            [1000, 614],
            [1001, 683],
            [1002, 802],
            [1003, 891],
    
    or even

    Code:
            [0, 0],
            [4000, 614],
            [4001, 683],
            [12000, 802],
            [13000, 891],
    
    and the game will make a curve using the points you give it. More points will make a more accurate curve but every 1000 rpm is usually good enough.
     
  10. lukerules117

    lukerules117
    Expand Collapse

    Joined:
    Aug 18, 2013
    Messages:
    729
    well since you can't port engines from the torque curve you find on google you could still make the engines in automation if you have it then remake the torque curves for beam, it would still yield somewhat accurate results and it would allow you to have relatively accurate torque curves and you wouldn't have to convert the units from ft*lbs.
     
  11. GameNoobTV

    GameNoobTV
    Expand Collapse

    Joined:
    Aug 28, 2015
    Messages:
    413
    Ok, I got the torque curve down, but the engine is just constantly bouncing off the rev limiter. Also, its CVT, if that helps. I don't feel like its giving the torque that it should. I feel like its something to do with the transmission, but I have no idea how to rework it.
     
    #11 GameNoobTV, Apr 2, 2016
    Last edited: Apr 2, 2016
  12. lukerules117

    lukerules117
    Expand Collapse

    Joined:
    Aug 18, 2013
    Messages:
    729
    Did you increase the clutch torque? If so try a manual gearbox in case you did something wrong with the CVT.
     
  13. JesseAye

    JesseAye
    Expand Collapse

    Joined:
    Feb 27, 2016
    Messages:
    14
    AHEHEHEHEHEHEMMMM...
    http://www.beamng.com/threads/automation-engine-converter-1-1.21865/
     
  14. Spaceballs the Username

    Spaceballs the Username
    Expand Collapse

    Joined:
    Oct 13, 2015
    Messages:
    568
    • Like Like x 1
  15. JesseAye

    JesseAye
    Expand Collapse

    Joined:
    Feb 27, 2016
    Messages:
    14
    #smileyface
     
  16. Spaceballs the Username

    Spaceballs the Username
    Expand Collapse

    Joined:
    Oct 13, 2015
    Messages:
    568
    :')
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice