Home
last modified time | relevance | path

Searched refs:getMaxSpeedLat (Results 1 – 18 of 18) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSAbstractLaneChangeModel.cpp119 …getParameter().getLCParam(SUMO_ATTR_LCA_MAXSPEEDLATSTANDING, v.getVehicleType().getMaxSpeedLat())), in MSAbstractLaneChangeModel()
351 … stepsToChange = (int)ceil(maneuverDist / SPEED2DIST(myVehicle.getVehicleType().getMaxSpeedLat()));
651 return remainingManeuverDist / myVehicle.getVehicleType().getMaxSpeedLat();
663 assert(myVehicle.getVehicleType().getMaxSpeedLat() > 0);
664 assert(myMaxSpeedLatStanding <= myVehicle.getVehicleType().getMaxSpeedLat());
673 const double wmax = myVehicle.getVehicleType().getMaxSpeedLat();
746 …TEPS((1. - myLaneChangeCompletion) * myManeuverDist / myVehicle.getVehicleType().getMaxSpeedLat());
H A DMSLCM_SL2015.cpp2044 const double maxDist = SPEED2DIST(myVehicle.getVehicleType().getMaxSpeedLat());
2979 const double maxSpeedLat = MIN2(myVehicle.getVehicleType().getMaxSpeedLat(),
3100 …dsToLeaveLane = ceil(fabs(maneuverDist) / myVehicle.getVehicleType().getMaxSpeedLat() / myVehicle.…
3116 …teArrivalTime(fabs(maneuverDist), 0., 0., myVehicle.getVehicleType().getMaxSpeedLat(), myAccelLat,…
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DVehicleType.cpp174 VehicleType::getMaxSpeedLat(const std::string& typeID) { in getMaxSpeedLat() function in libsumo::VehicleType
175 return getVType(typeID)->getMaxSpeedLat(); in getMaxSpeedLat()
407 return wrapper->wrapDouble(objID, variable, getMaxSpeedLat(objID)); in handleVariable()
H A DVehicleType.h50 static double getMaxSpeedLat(const std::string& typeID); \
H A DPerson.cpp296 Person::getMaxSpeedLat(const std::string& personID) { in getMaxSpeedLat() function in libsumo::Person
297 return getPerson(personID)->getVehicleType().getMaxSpeedLat(); in getMaxSpeedLat()
H A DVehicle.cpp845 Vehicle::getMaxSpeedLat(const std::string& vehicleID) {
846 return getVehicleType(vehicleID).getMaxSpeedLat();
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLeaderInfo.cpp121 …const double maneuverDist = MIN2(veh->getVehicleType().getMaxSpeedLat() * veh->getActionStepLength… in getSubLanes()
125 …const double maneuverDist = MIN2(veh->getVehicleType().getMaxSpeedLat() * veh->getActionStepLength… in getSubLanes()
H A DMSVehicleType.h314 double getMaxSpeedLat() const { in getMaxSpeedLat() function
H A DMSVehicleType.cpp146 myParameter.maxSpeedLat = myOriginalType->getMaxSpeedLat(); in setMaxSpeedLat()
H A DMSLaneChangerSublane.cpp340 …const double actionStepDist = dir * vehicle->getVehicleType().getMaxSpeedLat() * vehicle->getActio…
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_vehicletype.py180 def getMaxSpeedLat(self, vehID): member in VehicleTypeDomain
H A D_vehicle.py437 def getMaxSpeedLat(self, vehID): member in VehicleDomain
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DVehicletype.java132 public static SumoCommand getMaxSpeedLat(String typeID){ in getMaxSpeedLat() method in Vehicletype
H A DVehicle.java106 public static SumoCommand getMaxSpeedLat(String vehID){ in getMaxSpeedLat() method in Vehicle
/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUIVehicle.cpp221 ret->mkItem("maxSpeedLat", false, myType->getMaxSpeedLat()); in getTypeParameterWindow()
224 ret->mkItem("maxSpeedLat", false, myType->getMaxSpeedLat()); in getTypeParameterWindow()
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h616 double getMaxSpeedLat(const std::string& typeID) const;
743 double getMaxSpeedLat(const std::string& vehicleID) const;
H A DTraCIAPI.cpp2056 TraCIAPI::VehicleTypeScope::getMaxSpeedLat(const std::string& typeID) const { in getMaxSpeedLat() function in TraCIAPI::VehicleTypeScope
2658 TraCIAPI::VehicleScope::getMaxSpeedLat(const std::string& vehicleID) const { in getMaxSpeedLat() function in TraCIAPI::VehicleScope
/dports/cad/sumo/sumo-1.2.0/src/traci_testclient/
H A DTraCITestClient.cpp749 answerLog << " setMaxSpeedLat: " << vehicletype.getMaxSpeedLat("t1") << "\n"; in testAPI()