edu.kit.ifv.mobitopp.visum.VisumChargingPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mobitopp Show documentation
Show all versions of mobitopp Show documentation
mobiTopp (http://mobitopp.ifv.kit.edu/) is an agent-based travel demand model developed at the Institute for transport studies at the Karlsruhe Institute of Technology (http://www.ifv.kit.edu/english/index.php). Publications about mobiTopp can be found on the project site (http://mobitopp.ifv.kit.edu/28.php).
The newest version!
package edu.kit.ifv.mobitopp.visum;
import java.io.Serializable;
public class VisumChargingPoint implements Serializable {
private static final long serialVersionUID = 1L;
public final int id;
public final VisumPoint2 coord;
public final int stationId;
public final float power;
public VisumChargingPoint(int id, float xCoord, float yCoord, int stationId, float power) {
super();
this.id = id;
coord = new VisumPoint2(xCoord, yCoord);
this.stationId = stationId;
this.power = power;
}
}