There are several types of tire models implemented in Chrono::Vehicle:
In general, you can find out about the meaning and purpose of various model parameters (whether for tires or other Chrono::Vehicle subsystems) by looking at the comments in the implementation header files (for tires, these will be files with names Ch***Tire.h) or else looking at the JSON key names in the associated JSON specification files for a concrete subsystem (you will find examples of such JSON files in the Chrono data directory, under data/vehicle/)
--Radu
--
You received this message because you are subscribed to the Google Groups "ProjectChrono" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
projectchron...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/projectchrono/669534d0-7ee3-4945-a5cb-60c60b7f0b88n%40googlegroups.com.
The *definitions* of those parameters are in the header files.
Actual values are specified in one of two places (there are two ways of specifying a concrete Chrono::Vehicle subsystem – see the papers, documentation, and demos):
To begin with, consult the Chrono::Vehicle reference document (https://api.projectchrono.org/manual_vehicle.html). That will give you an idea of the architecture and design of this module. Then look over the relevant demos to understand how to use Chrono in general and Chrono::Vehicle in particular.
To view this discussion on the web visit https://groups.google.com/d/msgid/projectchrono/e6760774-fc80-4a89-98f5-bee149116113n%40googlegroups.com.
Yes, pretty much. For each vehicle subsystem, the “template” (that is parameterized model) is implemented in a class named Ch[SubsysName]. A concrete subsystem (that is an instantiation of that subsystem for a specific vehicle, obtained by giving actual numbers to the various subsystem parameters) will be in a class named [VehicleName]_[SubsysName]. Alternatively, there will be a class named simply [SubsystemName] which can read in a JSON file to instantiate the same subsystem for the same vehicle (in this case, the actual numbers are read from that JSON file).
To view this discussion on the web visit https://groups.google.com/d/msgid/projectchrono/b51d94a4-6c85-4435-befe-13c2768d8202n%40googlegroups.com.