Home
last modified time | relevance | path

Searched refs:getElectricityConsumption (Results 1 – 22 of 22) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DEdge.cpp203 Edge::getElectricityConsumption(const std::string& id) { in getElectricityConsumption() function in libsumo::Edge
206 sum += lane->getElectricityConsumption(); in getElectricityConsumption()
395 return wrapper->wrapDouble(objID, variable, getElectricityConsumption(objID)); in handleVariable()
H A DLane.cpp187 Lane::getElectricityConsumption(std::string laneID) { in getElectricityConsumption() function in libsumo::Lane
188 return getLane(laneID)->getElectricityConsumption(); in getElectricityConsumption()
414 return wrapper->wrapDouble(objID, variable, getElectricityConsumption(objID)); in handleVariable()
H A DEdge.h69 static double getElectricityConsumption(const std::string& id);
H A DLane.h72 static double getElectricityConsumption(std::string laneID);
H A DVehicle.h82 static double getElectricityConsumption(const std::string& vehicleID);
H A DVehicle.cpp264 Vehicle::getElectricityConsumption(const std::string& vehicleID) { in getElectricityConsumption() function in libsumo::Vehicle
266 return isVisible(veh) ? veh->getElectricityConsumption() : INVALID_DOUBLE_VALUE; in getElectricityConsumption()
1833 return wrapper->wrapDouble(objID, variable, getElectricityConsumption(objID));
/dports/cad/sumo/sumo-1.2.0/src/microsim/output/
H A DMSFullExport.cpp109 …of.writeAttr("electricity", lane.getElectricityConsumption()).writeAttr("maxspeed", lane.getSpeedL… in writeLane()
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_edge.py138 def getElectricityConsumption(self, edgeID): member in EdgeDomain
H A D_lane.py206 def getElectricityConsumption(self, laneID): member in LaneDomain
H A D_vehicle.py356 def getElectricityConsumption(self, vehID): member in VehicleDomain
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DEdge.java102 public static SumoCommand getElectricityConsumption(String edgeID){ in getElectricityConsumption() method in Edge
H A DLane.java116 public static SumoCommand getElectricityConsumption(String laneID){ in getElectricityConsumption() method in Lane
H A DVehicle.java346 public static SumoCommand getElectricityConsumption(String vehID){ in getElectricityConsumption() method in Vehicle
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h187 double getElectricityConsumption(const std::string& edgeID) const;
331 double getElectricityConsumption(const std::string& laneID) const;
707 double getElectricityConsumption(const std::string& vehicleID) const;
H A DTraCIAPI.cpp653 TraCIAPI::EdgeScope::getElectricityConsumption(const std::string& edgeID) const { in getElectricityConsumption() function in TraCIAPI::EdgeScope
1087 TraCIAPI::LaneScope::getElectricityConsumption(const std::string& laneID) const { in getElectricityConsumption() function in TraCIAPI::LaneScope
2417 TraCIAPI::VehicleScope::getElectricityConsumption(const std::string& vehicleID) const { in getElectricityConsumption() function in TraCIAPI::VehicleScope
/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUIVehicle.cpp164 … new FunctionBinding<GUIVehicle, double>(this, &MSVehicle::getElectricityConsumption)); in getParameterWindow()
542 return getElectricityConsumption(); in getColorValue()
H A DGUILane.cpp1142 return getElectricityConsumption() / myLength; in getColorValue()
1242 return getElectricityConsumption() / myLength; in getScaleValue()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.h1043 double getElectricityConsumption() const;
H A DMSVehicle.h1148 double getElectricityConsumption() const;
H A DMSLane.cpp2788 MSLane::getElectricityConsumption() const { in getElectricityConsumption() function in MSLane
2792 ret += (*i)->getElectricityConsumption(); in getElectricityConsumption()
H A DMSVehicle.cpp5122 MSVehicle::getElectricityConsumption() const {
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/ws/
H A DTraci.java483 return this.helper.getDouble(this.sumo.get_cmd(Edge.getElectricityConsumption(edgeID))); in Edge_getElectricityConsumption()
764 return this.helper.getDouble(this.sumo.get_cmd(Vehicle.getElectricityConsumption(vehID))); in Vehicle_getElectricityConsumption()
1241 return this.helper.getString(this.sumo.get_cmd(Lane.getElectricityConsumption(laneID))); in Lane_getElectricityConsumption()