


Jack,
You misunderstand the meaning of the Chrono and Chrono::Vehicle data paths. What you are supposed to provide through the functions chrono.SetChronoDataPath and veh.SetDataPath are the locations of *directories* containing data file. With what you have, the terrain file is probably found fine, but the incorrect setting for the vehicle data path may mess up something else (difficult to tell without seeing your code, but one possibility is if you are using some visualization mesh for the HMMWV vehicle).
Try something like this:
chrono.SetChronoDataPath('Users/wagne/anaconda3/envs/pychrono/Library/data/)
veh. SetDataPath(chrono.GetChronoDataPath() + ‘vehicle/')
…
terrain = veh.RigidTerrain(hmmwv.GetSystem(), veh.GetDataFile(‘terrain/WaveFrontTest.json’)
…
(Of course, this also assumes that your JSON terrain specification file is correct)
--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/9f78401a-09bf-4608-af53-0a7428159dcen%40googlegroups.com.