 |
Eclipse SUMO - Simulation of Urban MObility
|
Go to the documentation of this file.
42 const std::string& name,
43 double chargingPower,
double efficency,
bool chargeInTransit,
double chargeDelay) :
44 MSStoppingPlace(chargingStationID, std::vector<std::string>(), lane, startPos, endPos, name),
47 myChargeInTransit(chargeInTransit),
49 myChargingVehicle(false),
51 if (chargingPower < 0)
57 if (efficency < 0 || efficency > 1) {
63 if (chargeDelay < 0) {
105 if (chargingPower < 0) {
115 if (efficency < 0 || efficency > 1) {
131 if (chargeDelay < 0) {
163 std::string status =
"";
166 status =
"chargingStopped";
168 status =
"chargingInTransit";
170 status =
"noCharging";
174 status =
"waitingChargeInTransit";
176 status =
"waitingChargeStopped";
178 status =
"noWaitingCharge";
200 std::vector<double>
charge;
201 std::vector<std::pair<SUMOTime, SUMOTime> > vectorBeginEndCharge;
205 vectorBeginEndCharge.push_back(std::pair<SUMOTime, SUMOTime>(firsTimeStep, 0));
211 vectorBeginEndCharge.back().second = i->timeStep;
213 firsTimeStep += 1000;
215 if (((i + 1) !=
myChargeValues.end()) && (((i + 1)->timeStep) != firsTimeStep)) {
217 firsTimeStep = (i + 1)->timeStep;
219 vectorBeginEndCharge.push_back(std::pair<SUMOTime, SUMOTime>(firsTimeStep, 0));
224 int vehicleCounter = 0;
250 firsTimeStep += 1000;
252 if (((i + 1) !=
myChargeValues.end()) && (((i + 1)->timeStep) != firsTimeStep)) {
254 firsTimeStep = (i + 1)->timeStep;
double getChargingPower() const
Get charging station's charging power.
double getMaximumBatteryCapacity() const
Get the total vehicle's Battery Capacity in kWh.
const std::string & getID() const
Returns the name of the vehicle type.
A lane area vehicles can halt at.
#define WRITE_WARNING(msg)
Representation of a lane in the micro simulation.
double getStoppingTreshold() const
Get stopping treshold.
double getEndLanePosition() const
Returns the end position of this stop.
Static storage of an output device and its base (abstract) implementation.
virtual const MSVehicleType & getVehicleType() const =0
Returns the vehicle's type.
double getActualBatteryCapacity() const
Get the actual vehicle's Battery Capacity in kWh.
virtual const std::string & getID() const =0
Get the vehicle's ID.
double getBeginLanePosition() const
Returns the begin position of this stop.
bool myChargeInTransit
Allow charge in transit.
void setChargeDelay(double chargeDelay)
Set charge delay of the charging station.
std::vector< charge > myChargeValues
vector with the charges of this charging station
double myChargeDelay
Charge Delay.
~MSChargingStation()
destructor
struct to save information for the cahrgingStation output
bool closeTag(const std::string &comment="")
Closes the most recently opened tag and optionally adds a comment.
void setChargingVehicle(bool value)
enable or disable charging vehicle
void setChargeInTransit(bool chargeInTransit)
Set charge in transit of the charging station.
double getEfficency() const
Get efficiency of the charging station.
double myTotalCharge
total energy charged by this charging station
void setEfficency(double efficency)
Set efficiency of the charging station.
Delay in the charge of charging stations.
number of steps that a vehicle is charging
OutputDevice & writeAttr(const SumoXMLAttr attr, const T &val)
writes a named attribute
timesteps in which charging ends
void writeChargingStationOutput(OutputDevice &output)
write charging station values
double myEfficiency
Efficiency of the charging station.
double myChargingPower
Charging station's charging power.
trigger: a step description
SUMOVehicle & getHolder() const
Returns the vehicle that holds this device.
std::string time2string(SUMOTime t)
Battery device for electric vehicles.
total energy charged into a single vehicle
trigger: the time of the step
bool myChargingVehicle
Check if in the current TimeStep chargingStation is charging a vehicle.
OutputDevice & openTag(const std::string &xmlElement)
Opens an XML tag.
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
MSChargingStation(const std::string &chargingStationID, MSLane &lane, double startPos, double endPos, const std::string &name, double chargingPower, double efficency, bool chargeInTransit, double chargeDelay)
constructor
void setChargingPower(double chargingPower)
Set charging station's charging power.
bool isCharging() const
Return true if in the current time step charging station is charging a vehicle.
Eficiency of the charge in Charging Stations.
bool vehicleIsInside(const double position) const
Check if a vehicle is inside in the Charge Station.
energy provied by charging station at certain timestep
void addChargeValueForOutput(double WCharged, MSDevice_Battery *battery)
add charge value for output
std::string myID
The name of the object.
double getChargeDelay() const
Get Charge Delay.
double getChargingStartTime() const
Get charging start time.
const std::string & getID() const
Returns the id.
timestep in which charging begins
bool getChargeInTransit() const
Get chargeInTransit.
virtual double getSpeed() const =0
Returns the vehicle's current speed.