Home
last modified time | relevance | path

Searched refs:getFuelConsumption (Results 1 – 24 of 24) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DEdge.cpp180 Edge::getFuelConsumption(const std::string& id) { in getFuelConsumption() function in libsumo::Edge
183 sum += lane->getFuelConsumption(); in getFuelConsumption()
391 return wrapper->wrapDouble(objID, variable, getFuelConsumption(objID)); in handleVariable()
H A DLane.cpp175 Lane::getFuelConsumption(std::string laneID) { in getFuelConsumption() function in libsumo::Lane
176 return getLane(laneID)->getFuelConsumption(); in getFuelConsumption()
410 return wrapper->wrapDouble(objID, variable, getFuelConsumption(objID)); in handleVariable()
H A DEdge.h67 static double getFuelConsumption(const std::string& id);
H A DLane.h70 static double getFuelConsumption(std::string laneID);
H A DVehicle.h80 static double getFuelConsumption(const std::string& vehicleID);
H A DVehicle.cpp252 Vehicle::getFuelConsumption(const std::string& vehicleID) { in getFuelConsumption() function in libsumo::Vehicle
254 return isVisible(veh) ? veh->getFuelConsumption() : INVALID_DOUBLE_VALUE; in getFuelConsumption()
1829 return wrapper->wrapDouble(objID, variable, getFuelConsumption(objID));
/dports/games/openxcom/OpenXcom-1.0/src/Savegame/
H A DCraft.cpp593 int Craft::getFuelConsumption() const in getFuelConsumption() function in OpenXcom::Craft
618 return (int)floor(getFuelConsumption() * getDistance(base) / (_speedRadian * 120)); in getFuelLimit()
709 setFuel(_fuel - getFuelConsumption()); in consumeFuel()
H A DCraft.h124 int getFuelConsumption() const;
/dports/cad/sumo/sumo-1.2.0/src/microsim/output/
H A DMSFullExport.cpp108 …iteAttr("noise", lane.getHarmonoise_NoiseEmissions()).writeAttr("fuel", lane.getFuelConsumption()); in writeLane()
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_edge.py124 def getFuelConsumption(self, edgeID): member in EdgeDomain
H A D_lane.py192 def getFuelConsumption(self, laneID): member in LaneDomain
H A D_vehicle.py342 def getFuelConsumption(self, vehID): member in VehicleDomain
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DEdge.java115 public static SumoCommand getFuelConsumption(String edgeID){ in getFuelConsumption() method in Edge
H A DLane.java160 public static SumoCommand getFuelConsumption(String laneID){ in getFuelConsumption() method in Lane
H A DVehicle.java356 public static SumoCommand getFuelConsumption(String vehID){ in getFuelConsumption() method in Vehicle
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h185 double getFuelConsumption(const std::string& edgeID) const;
329 double getFuelConsumption(const std::string& laneID) const;
705 double getFuelConsumption(const std::string& vehicleID) const;
H A DTraCIAPI.cpp643 TraCIAPI::EdgeScope::getFuelConsumption(const std::string& edgeID) const { in getFuelConsumption() function in TraCIAPI::EdgeScope
1077 TraCIAPI::LaneScope::getFuelConsumption(const std::string& laneID) const { in getFuelConsumption() function in TraCIAPI::LaneScope
2407 TraCIAPI::VehicleScope::getFuelConsumption(const std::string& vehicleID) const { in getFuelConsumption() function in TraCIAPI::VehicleScope
/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUIVehicle.cpp162 new FunctionBinding<GUIVehicle, double>(this, &MSVehicle::getFuelConsumption)); in getParameterWindow()
523 return getFuelConsumption(); in getColorValue()
H A DGUILane.cpp1095 return getFuelConsumption() / myLength; in getColorValue()
1208 return getFuelConsumption() / myLength; in getScaleValue()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.h1037 double getFuelConsumption() const;
H A DMSVehicle.h1142 double getFuelConsumption() const;
H A DMSLane.cpp2776 MSLane::getFuelConsumption() const { in getFuelConsumption() function in MSLane
2780 ret += (*i)->getFuelConsumption(); in getFuelConsumption()
H A DMSVehicle.cpp5116 MSVehicle::getFuelConsumption() const {
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/ws/
H A DTraci.java488 return this.helper.getDouble(this.sumo.get_cmd(Edge.getFuelConsumption(edgeID))); in Edge_getFuelConsumption()
724 return this.helper.getDouble(this.sumo.get_cmd(Vehicle.getFuelConsumption(vehID))); in Vehicle_getFuelConsumption()
1246 return this.helper.getDouble(this.sumo.get_cmd(Lane.getFuelConsumption(laneID))); in Lane_getFuelConsumption()