Page 1 of 1

vehicle profile

Posted: Mon Nov 21, 2016 1:56 pm
by Flegregeois
Hello,

in xTour, there is a dimaDefault.xml with a lot of parameters, my question is about certain parameters:

Code: Select all

<Physical>
     <Drive>
          <Emissions emissionClass="EURO_3"/>
          <Engine cylinderCapacity="1800" fuelType="EUROSUPER" fuelConsumption="8.0"/>
      </Drive>
      <Weight emptyWeight="1250" totalPermittedWeight="1500" loadWeight="0"/>
      <Axle axleLoad="0"/>
      <Passenger maximumPermittedNumberOfPassengers="1"/>
      <Dimension height="150" length="450" width="180"/>
</Physical>
The following parameters are used or not in xTour in the method planBasicTours?
  • <Weight emptyWeight="1250" totalPermittedWeight="1500" loadWeight="0"/>
  • <Dimension height="150" length="450" width="180"/>
regards,
François

Re: vehicle profile

Posted: Mon Nov 21, 2016 2:55 pm
by Joost
They are used during the dima build up phase. They are not used during the planning phase.

For example the totalPermittedWeight is used to determine is the vehicle is a car or a truck and thus if during the routing blocking for cars or trucks should be taken into account. If you also configure the profile to load a RoadEditor Layer like our TruckAttributes set ,the dimensions will also be used to check against specific blocking which are conditional on them like for example "blocked for vehicles higher them xxx cm".

Re: vehicle profile

Posted: Fri Nov 25, 2016 8:27 am
by Bernd Welter
Hello Francois,

to be a bit more offensive than Joost:
You have to take care to activate the additional data resources such as feature layers or RoadEditor layers.
Otherwise the properties you mentioned won't be taken into account. And in fact I already faced several customers who spent a lot of time in proper configuration of properties but didn't activate the data. So they computed tours without the necessary detours and used streets that were forbidden. Especially with xTour this is difficult to see because quite often the routes aren't visualized.
This snippet contains <br />- activation of the traditional TruckAttributes<br />- activation of the state-of-the-art feature layer TruckAttributes<br />- the physical dimensions and further relevant properties of the vehicle and so on<br />This example is based on a case where the customer wanted to be sure not to use mountain passes where trailers are forbidden.
This snippet contains
- activation of the traditional TruckAttributes
- activation of the state-of-the-art feature layer TruckAttributes
- the physical dimensions and further relevant properties of the vehicle and so on
This example is based on a case where the customer wanted to be sure not to use mountain passes where trailers are forbidden.
Best regards Bernd