Examples of EquilibriumProperties


Examples of org.movsim.simulator.vehicles.longitudinalmodel.acceleration.EquilibriumProperties

    /** Simulation timestep is model parameter for iterated map models (and cellular automata) */
    private FileFundamentalDiagram(double simulationTimestep, VehiclePrototype vehiclePrototype) {
        super(ProjectMetaData.getInstance().getOutputPath(), ProjectMetaData.getInstance().getProjectName());
        final String label = vehiclePrototype.getLabel();
        final EquilibriumProperties eqProperties = vehiclePrototype.getEquiProperties();
        writer = createWriter(String.format(extensionFormat, label));
        writeHeader(simulationTimestep, eqProperties);
        writeFundamentalDiagram(eqProperties);
        writer.close();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.