LIDPerformanceSummary.java [src/SwmmReportObjects] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package SwmmReportObjects;

/**
 *
 * @author Lucas Yaege
 */
public class LIDPerformanceSummary {

    public String Subcatchment;
    public String LIDControl;
    public double TotalInflow;
    public double EvapLoss;
    public double InfilLoss;
    public double SurfaceOutflow;
    public double DrainOutflow;
    public double InitialStorage;
    public double FinalStorage;
    public double ContinuityError;

    @Override
    public String toString()
    {
        return Subcatchment + "\t" + LIDControl + "\t" + TotalInflow + "\t" + EvapLoss + "\t"
                + InfilLoss + "\t" + SurfaceOutflow + "\t" + DrainOutflow + "\t"
                + InitialStorage + "\t" + FinalStorage + "\t" + ContinuityError;
    }

}