Is Drivetrain Efficiency data available on Carla or UE4? #8239
-
Hi I have been testing a longitudinal acceleration model to estimate RSS safe distance in platooning maneuvers using CARLA. In the literature equations have parameters such as Drivetrain Efficiency and others. I'm wondering where I can find this information for specific blueprints. Reading CARLA code, I was able to find where physics control are set though C++/Pyhton API but got stuck at VehiclePhysicsControl.h. If I want to go deeper on how the engine physics is simulated, what is the next step? I was not able to find info on vehicle implementation either on CARLA repo or on UE4. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Check physX API which is used by ue4 to simulate the physical engine. |
Beta Was this translation helpful? Give feedback.
-
Carla is based on UE4. When I checked Carla source code, it adopts the class Awheeledvehicle from UE4 to generate the vehicle. And this class is warpped basing on WheeledVehicleMovementComponent4W(Engine/Plugins/Runtime/PhysXVehicles/Source/PhysXVehicles/Public/WheeledVehicleMovementComponent4W.h). There are a bunch of parameters in this class to define the physical engine. I'm a beginner for carla and ue4. Not sure if this would help you. Hope it make sense. |
Beta Was this translation helpful? Give feedback.
Check physX API which is used by ue4 to simulate the physical engine.