001/*
002 * *********************************************************************** *
003 * project: org.matsim.*
004 * *********************************************************************** *
005 *                                                                         *
006 * copyright       : (C) 2019 by the members listed in the COPYING,        *
007 *                   LICENSE and WARRANTY file.                            *
008 * email           : info at matsim dot org                                *
009 *                                                                         *
010 * *********************************************************************** *
011 *                                                                         *
012 *   This program is free software; you can redistribute it and/or modify  *
013 *   it under the terms of the GNU General Public License as published by  *
014 *   the Free Software Foundation; either version 2 of the License, or     *
015 *   (at your option) any later version.                                   *
016 *   See also COPYING, LICENSE and WARRANTY file                           *
017 *                                                                         *
018 * *********************************************************************** *
019 */
020
021package org.matsim.contrib.ev.fleet;
022
023import org.matsim.api.core.v01.Identifiable;
024
025import com.google.common.collect.ImmutableList;
026
027/**
028 * @author Michal Maciejewski (michalm)
029 */
030public interface ElectricVehicleSpecification extends Identifiable<ElectricVehicle> {
031        String DEFAULT_VEHICLE_TYPE = "defaultVehicleType";
032
033        String getVehicleType();
034
035        ImmutableList<String> getChargerTypes();
036
037        //FIXME consider renaming to getInitialCharge -- SOC suggest [%] not [J]
038        double getInitialSoc();//[J]
039
040        double getBatteryCapacity();//[J]
041}