Package org.movsim.output.route

Examples of org.movsim.output.route.ConsumptionOnRoute


    private void initConsumption(boolean writeOutput, double simulationTimestep,
            final OutputConfiguration outputConfiguration) {
        for (final ConsumptionCalculation fuelRouteInput : outputConfiguration.getConsumptionCalculation()) {
            final Route route = getCheckedRoute(fuelRouteInput.getRoute());
            final ConsumptionOnRoute consumption = new ConsumptionOnRoute(simulationTimestep, fuelRouteInput,
                    roadNetwork, route, writeOutput);
            consumptionOnRoutes.put(route, consumption);
        }
    }
View Full Code Here

TOP

Related Classes of org.movsim.output.route.ConsumptionOnRoute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.