Avoid inefficient tours / minimum load per tour
Posted: Tue Aug 13, 2024 12:16 pm
Some partner just asked me how to tackle this requirement (sounds similar to viewtopic.php?t=1915 but is different) - so how do we recommend to approach this requirement?
The route planning tests fully met expectations, but the logistics department reports a problem with the car not filling up to its full capacity, I don't know if we can influence it, from what I saw, in the API we can only set the upper limit, e.g. max 20m^3. our idea is to make the cars fill the limit as high as possiblecurrently often the routes in terms of their arrangement are very good, but have a volume of, for example, 1300, the logistics department communicated that they only send cars that have a minimum volume of 1700-1800, so we tried to set other costs for the car:Code: Select all
"constraints": { "maximumLoads": [ { "dimension": "VOLUME", "value": 2100 } ], "route": { "maximumDistance": 1100000 } }
unfortunately we still have not been able to reduce the number of used cars in favor of more full cars.Code: Select all
"costs": { "perHour": 40, "perKilometer": 0.42, "fixed": 5000 },
The main goal is to fill each car to at least 1700-1800 volume.