Examples of Inflow


Examples of org.movsim.autogen.Inflow

        inflowDataPoints.add(createInflowDataPoint(900.0, 1800.0, 12.0));
    inflowTimeSeries = new InflowTimeSeries(inflowDataPoints);
  }

    private static Inflow createInflowDataPoint(double time, double flow, double speed) {
        Inflow inflow = new Inflow();
        inflow.setQPerHour(flow);
        inflow.setT(time);
        inflow.setV(speed);
        return inflow;
    }
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.