- ValueAxis xAxis = new NumberAxis("Flow Duration Interval [%]");
+ ValueAxis xAxis = new NumberAxis("Percent of Time Flow is Exceeded [%]");
xAxis.setRange(0,100);
plot.setDomainAxis(0, xAxis);
@@ -1013,7 +1013,7 @@
int seriesIndex = 0;
//Create X Axis
- ValueAxis xAxis = new NumberAxis("Duration Curve Interval [%]");
+ ValueAxis xAxis = new NumberAxis("Percent of Time Load is Exceeded [%]");
xAxis.setRange(0,100);
plot.setDomainAxis(0, xAxis);
@@ -1376,7 +1376,7 @@
PrintWriter printLine = new PrintWriter(writer);
//Add Headers to text file
- printLine.printf("%s" + "\r\n", "Flow Duration Interval (Excedence Probability based on Weibull Plotting Position Ranking)\t" + resultType);
+ printLine.printf("%s" + "\r\n", "Percent of Time Flow is Exceeded [%] (Excedence Probability based on Weibull Plotting Position Ranking)\t" + resultType);
//Output data to text file
for(int i=0; i < finalResults.size(); i++) {
src/java/cfa/guiRegionalFDC_Model.java
@@ -228,7 +228,7 @@
PrintWriter printLine = new PrintWriter(writer);
//Add Headers to text file
- printLine.printf("%s" + "\r\n", "Flow Duration Interval (Excedence Probability based on Weibull Plotting Position Ranking)\tRegional FDC [" + units + "]");
+ printLine.printf("%s" + "\r\n", "Percent of Time Flow is Exceeded [%] (Excedence Probability based on Weibull Plotting Position Ranking)\tRegional FDC [" + units + "]");
//Output data to text file
for(int i=0; i < finalResults.size(); i++) {
@@ -264,7 +264,7 @@
//Graph the complete flow duration curve for the time period
XYPlot plot = new XYPlot();
//Create X Axis
- ValueAxis xAxis = new NumberAxis("Flow Duration Interval [%]");
+ ValueAxis xAxis = new NumberAxis("Percent of Time Flow is Exceeded [%]");
- "description": "A list/matrix of flow duration curves for each station. Each station should have a column of flow duration intervals (0-100) followed by a column of the flows (cfs) corresponding to those non-exeedances. Each column is separated by tabs ('\t') and each row should be separated by '\n'. The first row should be a header for the data. Any blank data (i.e. station 1 has more data points than station 2) should have both the fdc and flow column filled with '-1'.",
+ "description": "A list/matrix of flow duration curves for each station. Each station should have a column of flow exceedances (percent of time flow is exceeded, 0-100) followed by a column of the flows (cfs) corresponding to those non-exeedances. Each column is separated by tabs ('\t') and each row should be separated by '\n'. The first row should be a header for the data. Any blank data (i.e. station 1 has more data points than station 2) should have both the fdc and flow column filled with '-1'.",