Skip to content

Instantly share code, notes, and snippets.

@eli-s-goldberg
Created March 24, 2017 22:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eli-s-goldberg/5460dd5f55b7afaaac12f9494820f42d to your computer and use it in GitHub Desktop.
Save eli-s-goldberg/5460dd5f55b7afaaac12f9494820f42d to your computer and use it in GitHub Desktop.
Live ENM Data for JoVE journal
<!DOCTYPE html>
<meta charset="utf-8">
<title>Goldberg et al,. 2016 - ENM Transport Database</title>
<style>
svg {
font: 10px sans-serif;
font-weight: bold;
}
.foreground path {
fill: none;
stroke: #222;
stroke-opacity: 0.15;
pointer-events: none;
stroke-width: 1px;
}
.axis .title {
font-size: 12px;
font-weight: bolder;
/*text-transform: uppercase;*/
transform: rotate(-20deg) translate(-5px, -6px);
}
.axis line,
.axis path {
fill: none;
stroke: #000;
stroke-width: 1px;
}
.brush .extent {
fill-opacity: .3;
stroke: #fff;
stroke-width: 1px;
}
pre {
width: 1800px;
margin: 0px 50px;
tab-size: 14;
font-size: 12px;
font-weight: bold;
overflow: auto;
}
</style>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script>
var margin = {top: 150, right: 200, bottom: 20, left: 200},
width = 1450 - margin.left - margin.right,
height = 700 - margin.top - margin.bottom;
var types = {
"Number": {
key: "Number",
coerce: function (d) {
return +d;
},
extent: d3.extent,
within: function (d, extent) {
return extent[0] <= d && d <= extent[1];
},
defaultScale: d3.scale.linear().range([height, 0])
},
"Log": {
key: "Log",
coerce: function (d) {
return +d;
},
extent: d3.extent,
within: function (d, extent) {
return extent[0] <= d && d <= extent[1];
},
defaultScale: d3.scale.log().range([height, 0])
},
"String": {
key: "String",
coerce: String,
extent: function (data) {
return data.sort();
},
within: function (d, extent, dim) {
return extent[0] <= dim.scale(d) && dim.scale(d) <= extent[1];
},
defaultScale: d3.scale.ordinal().rangePoints([0, height])
},
"Date": {
key: "Date",
coerce: function (d) {
return new Date(d);
},
extent: d3.extent,
within: function (d, extent) {
return extent[0] <= d && d <= extent[1];
},
defaultScale: d3.time.scale().range([0, height])
}
};
var dimensions = [
{
key: "NMId",
description: "ENM",
type: types["String"]
},
{
key: "ConcIn",
description: "Influent Concentration [mg/L]",
type: types["Log"]
},
{
key: "Coating",
description: "Coating",
type: types["String"]
},
{
key: "ConcHA",
description: "NOM Concentration [mg/L]",
type: types["Number"]
},
{
key: "TypeNOM",
description: "NOM Type",
type: types["String"]
},
{
key: "N_CA",
description: "Column length to width ratio [-]",
type: types["Number"]
},
{
key: "N_r",
description: "Aspect ratio [-]",
type: types["Log"]
},
{
key: "N_a",
description: "Attraction number [-]",
type: types["Log"]
},
{
key: "N_g",
description: "Gravity number [-]",
type: types["Log"]
},
{
key: "N_Pe",
description: "Peclet number [-]",
type: types["Log"]
},
{
key: "N_Lo",
description: "London force parameter [-]",
type: types["Number"],
domain:[0,3]
},
{
key: "N_Dl",
description: "Electrical double-layer force parameter [-]",
type: types["Log"]
},
{
key: "M_inj",
description: "Injected mass [mg]",
type: types["Number"],
domain:[0,30]
},
{
key: "N_as",
description: "Porosity dependent paramter [-]",
type: types["Number"],
domain:[25,55]
},
{
key: "N_Z1",
description: "First electrokinetic parameter [-]",
type: types["Log"]
},
{
key: "N_Z2",
description: "Second electrokinetic parameter [-]",
type: types["Number"],
domain:[-2,2]
},
{
key: "Classification",
description: "Classification",
type: types["String"]
}
];
var colordimension = dimensions.filter(function (d) {
return d.key == "NMId";
})[0];
var color = d3.scale.ordinal()//category20()
.range([" #1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "17becf", "#ffb6c1"]);
var x = d3.scale.ordinal()
.domain(dimensions.map(function (dim) {
return dim.key;
}))
.rangePoints([0, width]);
var line = d3.svg.line()
.defined(function (d) {
return !isNaN(d[1]);
});
var yAxis = d3.svg.axis()
.orient("left");
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var output = d3.select("body").append("pre");
var foreground = svg.append("g")
.attr("class", "foreground");
var axes = svg.selectAll(".axis")
.data(dimensions)
.enter().append("g")
.attr("class", "axis")
.attr("transform", function (d) {
return "translate(" + x(d.key) + ")";
});
d3.csv("results.csv", function (error, data) {
if (error) throw error;
data.forEach(function (d) {
dimensions.forEach(function (p) {
d[p.key] = p.type.coerce(d[p.key]);
});
});
// type/dimension default setting happens here
dimensions.forEach(function (dim) {
if (!("domain" in dim)) {
// detect domain using dimension type's extent function
dim.domain = d3.functor(dim.type.extent)(data.map(function (d) {
return d[dim.key];
}));
// TODO - this line only works because the data encodes data with integers
// Sorting/comparing should be defined at the type/dimension level
dim.domain.sort(function (a, b) {
return a - b;
});
}
if (!("scale" in dim)) {
// use type's default scale for dimension
dim.scale = dim.type.defaultScale.copy();
}
dim.scale.domain(dim.domain);
});
color.domain(colordimension.scale.domain());
foreground.selectAll("path")
.data(data)
.enter().append("path")
.attr("d", draw)
.style("stroke", function (d) {
return color(d[colordimension.key]); //"#6ac";
});
axes.append("g")
.attr("class", "axis")
.each(function (d) {
var renderAxis = "axis" in d
? d.axis.scale(d.scale) // custom axis
: yAxis.scale(d.scale); // default axis
d3.select(this).call(renderAxis);
})
.append("text")
.attr("class", "title")
.attr("text-anchor", "start")
.text(function (d) {
return "description" in d ? d.description : d.key;
});
// Add and store a brush for each axis.
axes.append("g")
.attr("class", "brush")
.each(function (d) {
d3.select(this).call(d.brush = d3.svg.brush()
.y(d.scale)
.on("brushstart", brushstart)
.on("brush", brush));
})
.selectAll("rect")
.attr("x", -8)
.attr("width", 16);
output.text(d3.tsv.format(data));
function draw(d) {
return line(dimensions.map(function (dim) {
return [x(dim.key), dim.scale(d[dim.key])];
}));
}
function brushstart() {
d3.event.sourceEvent.stopPropagation();
}
// Handles a brush event, toggling the display of foreground lines.
function brush() {
var actives = dimensions.filter(function (p) {
return !p.brush.empty();
}),
extents = actives.map(function (p) {
return p.brush.extent();
});
var selected = [];
d3.selectAll(".foreground path").style("display", function (d) {
if (actives.every(function (dim, i) {
// test if point is within extents for each active brush
return dim.type.within(d[dim.key], extents[i], dim);
})) {
selected.push(d);
return null;
}
return "none";
});
output.text(d3.tsv.format(selected));
}
});
</script>
NMId ConcIn Coating ConcHA TypeNOM N_r N_a N_g N_Pe N_Lo N_Dl M_inj N_as N_Z1 N_Z2 N_CA Classification
C60 10 none 0 none 0.000267191 0.000619498 1.00E-07 13120.7236 0.404883625 18.88022365 0.791681349 33.63914201 107.8366967 0.765912419 5 exponential
C60 10 none 0 none 0.000369352 0.000324192 1.91E-07 18137.47086 0.404883625 82.53270428 0.791681349 33.63914201 114.0132743 0.784219753 5 exponential
C60 10 none 0 none 0.000652259 0.000103954 5.97E-07 32030.00174 0.404883625 460.8995774 0.791681349 33.63914201 172.6810673 0.732945501 5 exponential
C60 10 none 0 none 0.000361493 0.00033844 1.83E-07 17751.56723 0.404883625 8.077668929 0.791681349 33.63914201 261.3279453 0.848525031 5 nonexponential
C60 10 none 0 none 0.000381139 0.000304449 2.04E-07 18716.32632 0.404883625 85.16672675 0.791681349 33.63914201 241.3222194 0.877554748 5 exponential
C60 10 none 0 none 0.000992141 4.49E-05 1.38E-06 48720.33396 0.404883625 701.0671283 0.791681349 33.63914201 737.1841451 0.683659548 5 exponential
TiO2 50 none 0 none 0.00088998 5.58E-05 5.35E-06 43703.5867 0.404883625 3.97737394 0.791681349 33.63914201 355.5647925 -0.751527279 5 nonexponential
TiO2 50 none 0 none 0.001848723 1.29E-05 2.31E-05 90783.83022 0.404883625 82.62050503 0.791681349 33.63914201 581.7725466 -0.807720388 5 exponential
TiO2 50 none 0 none 0.002121807 9.82E-06 3.04E-05 104193.9815 0.404883625 299.8623757 0.791681349 33.63914201 591.7445628 -0.803674055 5 nonexponential
TiO2 50 none 0 none 0.000913556 5.30E-05 5.63E-06 44861.29761 0.404883625 4.082734839 0.791681349 33.63914201 561.9649835 0.60389614 5 exponential
TiO2 50 none 0 none 0.001878193 1.25E-05 2.38E-05 92230.96885 0.404883625 83.93751626 0.791681349 33.63914201 978.0355246 0.601464547 5 exponential
TiO2 50 none 0 none 0.002259332 8.66E-06 3.45E-05 110947.2952 0.404883625 319.2979 0.791681349 33.63914201 1012.134039 0.498622966 5 exponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 0.40636431 2.724349879 45.95472373 107.0521587 0.988375776 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 0.741916331 2.724349879 45.95472373 93.94124401 0.978441375 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 2.346145439 2.724349879 45.95472373 83.67703592 0.913868183 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 5.55199344 2.724349879 45.95472373 78.41050241 0.872691955 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 6.425183901 2.724349879 45.95472373 75.09785038 0.850614005 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 6.635901399 2.724349879 45.95472373 73.32612947 0.84687499 6 nonexponential
TiO2 20 none 0 none 0.000307273 1.81E-06 4.66E-11 17598726.27 1.821976313 7.41916331 2.724349879 45.95472373 70.87643271 0.841984361 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 1.817316443 2.724349879 45.95472373 31.84753869 0.999635614 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 2.225748993 2.724349879 45.95472373 26.88671574 0.999664555 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 2.57007356 2.724349879 45.95472373 24.01462968 0.997289315 6 nonexponential
TiO2 20 none 0 none 0.000307273 0.013111663 3.38E-07 2425.770378 1.821976313 3.147684412 2.724349879 45.95472373 20.61201444 0.979997425 6 nonexponential
TiO2 100 none 0 none 0.001054545 6.64E-05 1.07E-06 31015.18687 0.404883625 25.46221728 0.731598389 26.69754379 149.3249461 -0.60303995 6.666666667 exponential
TiO2 200 none 0 none 0.001043636 6.78E-05 1.05E-06 30694.34011 0.404883625 25.19881503 0.731598389 26.69754379 147.7802053 -0.60303995 6.666666667 exponential
TiO2 100 none 0 none 0.004327273 3.94E-06 1.80E-05 127269.2151 0.404883625 104.4828916 0.731598389 26.69754379 698.8858146 0.912991453 6.666666667 exponential
TiO2 200 none 0 none 0.004909091 3.06E-06 2.31E-05 144381.0423 0.404883625 118.5310115 0.731598389 26.69754379 792.8536552 0.912991453 6.666666667 exponential
TiO2 100 none 0 none 0.001054545 1.33E-05 2.14E-07 155075.9343 0.404883625 25.46221728 0.731598389 26.69754379 91.79413524 -0.741521676 6.666666667 exponential
TiO2 200 none 0 none 0.001043636 1.36E-05 2.09E-07 153471.7005 0.404883625 25.19881503 0.731598389 26.69754379 90.84454074 -0.741521676 6.666666667 exponential
TiO2 100 none 0 none 0.004327273 7.89E-07 3.60E-06 636346.0754 0.404883625 104.4828916 0.731598389 26.69754379 272.9599694 0.999520687 6.666666667 exponential
TiO2 200 none 0 none 0.004909091 6.13E-07 4.63E-06 721905.2116 0.404883625 118.5310115 0.731598389 26.69754379 309.6604695 0.999520687 6.666666667 exponential
TiO2 100 none 0 none 0.003890909 4.88E-06 1.45E-05 114435.3447 0.404883625 297.0858722 0.731598389 26.69754379 304.0302051 -0.507910873 6.666666667 exponential
TiO2 200 none 0 none 0.003781818 5.16E-06 1.37E-05 111226.877 0.404883625 288.7563617 0.731598389 26.69754379 295.5059937 -0.507910873 6.666666667 exponential
TiO2 100 none 0 none 0.004872727 3.11E-06 2.28E-05 143311.5531 0.404883625 372.0514661 0.731598389 26.69754379 305.9488782 0.99964968 6.666666667 exponential
TiO2 200 none 0 none 0.004654545 3.41E-06 2.08E-05 136894.6179 0.404883625 355.3924452 0.731598389 26.69754379 292.2496747 0.99964968 6.666666667 exponential
TiO2 100 none 0 none 0.003890909 9.76E-07 2.91E-06 572176.7233 0.404883625 297.0858722 0.731598389 26.69754379 304.0302051 -0.507910873 6.666666667 exponential
TiO2 200 none 0 none 0.003781818 1.03E-06 2.75E-06 556134.3852 0.404883625 288.7563617 0.731598389 26.69754379 295.5059937 -0.507910873 6.666666667 exponential
TiO2 100 none 0 none 0.004872727 6.22E-07 4.56E-06 716557.7656 0.404883625 372.0514661 0.731598389 26.69754379 305.9488782 0.99964968 6.666666667 exponential
TiO2 200 none 0 none 0.004654545 6.82E-07 4.16E-06 684473.0895 0.404883625 355.3924452 0.731598389 26.69754379 292.2496747 0.99964968 6.666666667 exponential
TiO2 50 none 0 none 0.0025 1.76E-06 2.57E-07 481014.2824 0.393951767 138.8251739 24.17455547 43.07215518 159.2628896 -0.964460867 20 nonexponential
TiO2 50 none 0 none 0.0025 8.26E-06 1.21E-06 102343.4643 0.393951767 138.8251739 24.17455547 43.07215518 159.2628896 -0.964460867 20 nonexponential
TiO2 50 none 0 none 0.0025 3.65E-06 5.34E-07 231296.2294 0.393951767 138.8251739 24.17455547 43.07215518 159.2628896 -0.964460867 20 nonexponential
TiO2 50 Iron Oxide 1 SRHA 0.000956863 6.68E-05 1.24E-05 23586.36954 0.280989236 42.84676562 1.187522023 33.63914201 321.2041949 -0.862780596 5 nonexponential
TiO2 50 Iron Oxide 10 SRHA 0.000990196 6.24E-05 1.33E-05 24408.02586 0.280989236 44.33937836 1.187522023 33.63914201 372.5880411 -0.829224194 5 exponential
TiO2 50 Iron Oxide 1 SRHA 0.000964706 6.57E-05 1.26E-05 23779.70044 0.280989236 136.6039711 1.187522023 33.63914201 348.0698452 -0.776806893 5 nonexponential
TiO2 50 Iron Oxide 10 SRHA 0.000947059 6.82E-05 1.22E-05 23344.70592 0.280989236 134.105118 1.187522023 33.63914201 328.7380739 -0.788420498 5 exponential
TiO2 50 Iron Oxide 0 none 0.000890196 7.72E-05 1.07E-05 21943.05691 0.280989236 6.904221281 1.187522023 33.63914201 194.5520505 0.972890118 5 exponential
TiO2 50 Iron Oxide 0 none 0.000907843 7.42E-05 1.12E-05 22378.05143 0.280989236 15.74435387 1.187522023 33.63914201 169.4662097 0.972215243 5 exponential
TiO2 50 Iron Oxide 0 none 0.00105098 5.54E-05 1.50E-05 25906.34032 0.280989236 25.77648169 1.187522023 33.63914201 148.0722574 0.961594161 5 exponential
TiO2 50 Iron Oxide 1 SRHA 0.000917647 7.26E-05 1.14E-05 22619.71505 0.280989236 22.50633103 1.187522023 33.63914201 155.2549952 0.998119023 5 nonexponential
TiO2 50 Iron Oxide 10 SRHA 0.000917647 7.26E-05 1.14E-05 22619.71505 0.280989236 22.50633103 1.187522023 33.63914201 196.1901256 -0.987094979 5 nonexponential
TiO2 50 Iron Oxide 1 SRHA 0.00092549 7.14E-05 1.16E-05 22813.04595 0.280989236 41.44195364 1.187522023 33.63914201 306.5721665 -0.797838599 5 nonexponential
TiO2 50 Iron Oxide 10 SRHA 0.000937255 6.96E-05 1.19E-05 23103.0423 0.280989236 41.96875813 1.187522023 33.63914201 323.7230697 -0.785288296 5 exponential
TiO2 50 Iron Oxide 1 SRHA 0.000945098 6.85E-05 1.21E-05 23296.37319 0.280989236 133.8274677 1.187522023 33.63914201 302.3445528 -0.766680167 5 nonexponential
TiO2 50 Iron Oxide 10 SRHA 0.000998039 6.14E-05 1.35E-05 24601.35675 0.280989236 141.324027 1.187522023 33.63914201 346.3034136 -0.742395221 5 exponential
TiO2 50 Iron Oxide 0 none 0.000909804 7.39E-05 1.12E-05 22426.38415 0.280989236 7.056296639 1.187522023 33.63914201 139.9424704 -0.981148783 5 exponential
TiO2 50 Iron Oxide 0 none 0.001088235 5.16E-05 1.60E-05 26824.66208 0.280989236 18.8728216 1.187522023 33.63914201 132.640011 -0.96038767 5 exponential
TiO2 50 Iron Oxide 0 none 0.001517647 2.65E-05 3.12E-05 37409.52874 0.280989236 37.22200901 1.187522023 33.63914201 167.5025748 -0.941771518 5 exponential
TiO2 50 Iron Oxide 1 SRHA 0.000890196 7.72E-05 1.07E-05 21943.05691 0.280989236 21.83306472 1.187522023 33.63914201 178.752334 -0.964102341 5 nonexponential
TiO2 50 Iron Oxide 10 SRHA 0.000894118 7.65E-05 1.08E-05 22039.72236 0.280989236 21.92924562 1.187522023 33.63914201 166.3304998 -0.978298097 5 exponential
ZnO 5 none 0 none 0.000831373 4.43E-05 6.15E-06 40986.15035 0.28163705 151.2188916 12.66690158 33.63914201 285.344811 0.633679807 5 exponential
ZnO 5 none 0 none 0.000856863 4.17E-05 6.53E-06 42242.80119 0.28163705 269.9493327 12.66690158 33.63914201 246.5489346 0.507071695 5 exponential
ZnO 5 none 0 none 0.000896078 3.82E-05 7.15E-06 44176.11016 0.28163705 364.4528882 12.66690158 33.63914201 193.1419467 0.503744044 5 exponential
ZnO 5 none 0 none 0.000994118 3.10E-05 8.79E-06 49009.38261 0.28163705 571.8052695 12.66690158 33.63914201 146.6880297 0.435883107 5 exponential
ZnO 5 none 0 none 0.000758824 5.32E-05 5.12E-06 37409.52874 0.28163705 251.9941923 12.66690158 33.63914201 595.0069901 0.787142011 5 exponential
ZnO 5 none 0 none 0.000947059 3.42E-05 7.98E-06 46689.41184 0.28163705 994.5501733 12.66690158 33.63914201 581.9096494 0.595012877 5 exponential
ZnO 5 none 0 none 0.001143137 2.34E-05 1.16E-05 56355.95673 0.28163705 1697.708485 12.66690158 33.63914201 558.9660092 0.493343914 5 exponential
ZnO 5 none 0 none 0.001182353 2.19E-05 1.24E-05 58289.26571 0.28163705 877.9744566 12.66690158 33.63914201 546.6823816 0.420663103 5 exponential
ZnO 5 none 0 none 0.000831373 4.44E-05 6.15E-06 40986.15035 0.281799003 151.2188916 12.66690158 33.63914201 286.3559713 0.632702565 5 exponential
ZnO 5 none 1 algae 0.000594118 1.92E-05 3.14E-06 29289.63103 0.062352078 108.0644438 12.66690158 33.63914201 238.0351886 0.850837157 5 exponential
ZnO 5 none 1 SRHA 0.000568627 2.10E-05 2.88E-06 28032.98019 0.062352078 103.4280155 12.66690158 33.63914201 234.177138 0.875048584 5 exponential
ZnO 5 none 0 none 0.000856863 4.18E-05 6.53E-06 42242.80119 0.281799003 269.9493327 12.66690158 33.63914201 252.2844672 0.572972439 5 exponential
ZnO 5 none 1 algae 0.000611765 1.81E-05 3.33E-06 30159.62007 0.062352078 192.7327044 12.66690158 33.63914201 190.6518201 0.694941634 5 exponential
ZnO 5 none 1 SRHA 0.000627451 1.72E-05 3.50E-06 30932.94366 0.062352078 197.6745686 12.66690158 33.63914201 182.7739035 0.543915811 5 exponential
ZnO 5 none 0 none 0.000896078 3.82E-05 7.15E-06 44176.11016 0.281799003 364.4528882 12.66690158 33.63914201 198.0761944 0.576038181 5 exponential
ZnO 5 none 1 algae 0.000598039 1.90E-05 3.18E-06 29482.96193 0.062352078 243.2344221 12.66690158 33.63914201 150.6035488 0.803518977 5 exponential
ZnO 5 none 1 SRHA 0.000613725 1.80E-05 3.35E-06 30256.28552 0.062352078 249.6143414 12.66690158 33.63914201 139.1418873 0.635648383 5 exponential
ZnO 5 none 0 none 0.000994118 3.10E-05 8.79E-06 49009.38261 0.281799003 571.8052695 12.66690158 33.63914201 150.9313309 0.532251366 5 exponential
ZnO 5 none 1 algae 0.000652941 1.59E-05 3.79E-06 32189.5945 0.062352078 375.5644078 12.66690158 33.63914201 101.8180867 0.602818128 5 exponential
ZnO 5 none 1 SRHA 0.000629412 1.71E-05 3.53E-06 31029.60911 0.062352078 362.0305553 12.66690158 33.63914201 97.63378285 0.590051673 5 exponential
ZnO 5 none 0 none 0.001143137 2.35E-05 1.16E-05 56355.95673 0.281799003 1200.461182 12.66690158 33.63914201 573.6873141 0.569699899 5 exponential
ZnO 5 none 1 SRHA 0.000586275 1.97E-05 3.06E-06 28902.96923 0.062352078 615.6739168 12.66690158 33.63914201 320.613429 0.740644818 5 nonexponential
ZnO 5 none 1 algae 0.00062549 1.73E-05 3.48E-06 30836.27821 0.062352078 656.8561186 12.66690158 33.63914201 336.8233584 0.716209126 5 exponential
ZnO 5 none 0 none 0.000758824 5.32E-05 5.12E-06 37409.52874 0.281799003 251.9941923 12.66690158 33.63914201 595.0069901 0.787142011 5 exponential
ZnO 5 none 1 SRHA 0.000562745 2.14E-05 2.82E-06 27742.98384 0.062352078 186.8794139 12.66690158 33.63914201 560.8854762 0.962313459 5 exponential
ZnO 5 none 1 algae 0.000586275 1.97E-05 3.06E-06 28902.96923 0.062352078 194.6931873 12.66690158 33.63914201 566.0805528 0.949765026 5 exponential
ZnO 5 none 0 none 0.001182353 2.19E-05 1.24E-05 58289.26571 0.281799003 1755.948913 12.66690158 33.63914201 554.8833772 0.476768522 5 exponential
ZnO 5 none 1 SRHA 0.000615686 1.79E-05 3.37E-06 30352.95097 0.062352078 914.3747243 12.66690158 33.63914201 305.3393897 0.628097355 5 exponential
ZnO 5 none 1 algae 0.000629412 1.71E-05 3.53E-06 31029.60911 0.062352078 934.7588742 12.66690158 33.63914201 307.1394972 0.590386116 5 exponential
ZnO 5 none 0 none 0.000947059 3.42E-05 7.98E-06 46689.41184 0.281799003 703.2531717 12.66690158 33.63914201 598.3090727 0.656556331 5 exponential
ZnO 5 none 1 SRHA 0.000566667 2.11E-05 2.86E-06 27936.31474 0.062352078 420.7870945 12.66690158 33.63914201 397.2272423 0.813894271 5 exponential
ZnO 5 none 1 algae 0.000592157 1.93E-05 3.12E-06 29192.96558 0.062352078 439.7152337 12.66690158 33.63914201 400.7487753 0.770356567 5 exponential
CuO 9.62 none 1 TRIZMA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 241.1779477 0.142034952 20 nonexponential
CuO 8.65 none 1 TRIZMA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 649.3465415 2.099369291 29.91460251 215.4576705 0.993590592 20 exponential
CuO 8.57 none 1 TRIZMA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 197.2776984 0.589364679 20 exponential
CuO 4.32 none 10 SRHA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 153.0928124 0.938380897 20 exponential
CuO 5.57 none 1 SRHA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 122.4920825 0.992866502 20 exponential
CuO 4.41 none 1 SRHA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 105.9548489 0.955830377 20 exponential
CuO 11.2 none 5 SRHA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 134.8600558 0.955232091 20 exponential
CuO 7.45 none 1 SRHA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 112.7740325 0.976464412 20 exponential
CuO 4.98 none 1 FA 0.001171875 4.52E-05 1.88E-06 41029.08548 0.404883625 0.3 2.099369291 29.91460251 119.0190066 0.988397181 20 exponential
ZnO 5.035 none 0 none 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.041726312 2.799159054 29.91460251 74.6412908 -0.833256351 20 exponential
ZnO 8.19 none 1 FA 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.034334686 2.799159054 29.91460251 59.81577216 0.979250481 20 nonexponential
ZnO 8.61 none 1 HA 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.040131461 2.799159054 29.91460251 64.36664993 0.993058308 20 nonexponential
ZnO 8.17 none 1 HA 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.034079605 2.799159054 29.91460251 59.875761 0.990787231 20 nonexponential
ZnO 7.405 none 1 FA 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.03760807 2.799159054 29.91460251 51.13704138 0.944169897 20 nonexponential
ZnO 6.61 none 0.0768 citric 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.035716932 2.799159054 29.91460251 79.80619232 0.560391566 20 exponential
ZnO 4.66 none 0.072 oxalic 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.044328373 2.799159054 29.91460251 73.30843524 -0.626005248 20 exponential
ZnO 4.33 none 0.0736 formic 0.000566406 0.00101252 7.06E-07 7157.296023 0.765230052 0.040914963 2.799159054 29.91460251 81.63792062 -0.850739461 20 exponential
MWCNT 1 none 0 none 0.000791667 0.000121534 7.64E-08 22120.92576 0.396785953 4.801192598 2.519243149 28.24843851 277.0638112 0.178053155 4 exponential
MWCNT 0.005 none 0 none 0.000542857 0.000119023 7.48E-08 32940.26743 0.396785953 4.801192598 3.358990865 29.91460251 277.0638112 0.178053155 4 exponential
MWCNT 0.01 none 0 none 0.000542857 0.000103984 6.54E-08 37704.3557 0.396785953 4.801192598 2.417455547 43.07215518 277.0638112 0.178053155 4 exponential
MWCNT 0.005 none 0 none 0.000542857 0.000112956 7.10E-08 34709.78593 0.396785953 4.801192598 3.282650164 31.70729065 277.0638112 0.178053155 4 exponential
MWCNT 1 none 0 none 7.43E-05 0.002147954 4.29E-09 13336.20613 0.396785953 1.139651506 3.745783753 26.69754379 65.7661994 0.178053155 4 exponential
Ag 1 none 0 none 7.43E-05 0.001056667 1.14E-07 6556.034105 0.095957419 25.51221519 2.700628656 38.93242596 35.50077244 0.561527936 4 exponential
Ag 10 none 0 none 7.43E-05 0.001056667 1.14E-07 6556.034105 0.095957419 25.51221519 2.703478708 34.66163253 35.50077244 0.561527936 4 nonexponential
Ag 5 none 0 none 7.43E-05 0.001056667 1.14E-07 6556.034105 0.095957419 25.51221519 2.696429917 31.89399185 35.50077244 0.561527936 4 nonexponential
Ag 10 none 0 none 7.43E-05 0.001056667 1.14E-07 6556.034105 0.095957419 25.51221519 2.701748319 34.04343357 35.50077244 0.561527936 4 nonexponential
Ag 10 none 0 none 7.94E-05 0.000925118 1.30E-07 7006.670596 0.095957419 43.1110569 2.695437488 40.93422604 35.81849005 0.265885116 4 nonexponential
Ag 10 none 0 none 0.0001 0.00058333 2.06E-07 8823.75322 0.095957419 76.77950727 2.697091536 37.28385194 44.28370976 0.115346133 4 nonexponential
Ag 10 none 0 none 7.43E-05 0.024726015 2.66E-06 280.1723977 0.095957419 25.51221519 2.694724975 32.27161921 35.50077244 0.561527936 4 nonexponential
Ag 10 none 0 none 7.43E-05 0.005306012 5.70E-07 1305.603373 0.095957419 25.51221519 2.700170611 39.66787085 35.50077244 0.561527936 4 nonexponential
Ag 10 none 0 none 0.0001 0.00058333 2.06E-07 8823.75322 0.095957419 76.77950727 2.698338435 35.50851812 44.28370976 0.115346133 4 nonexponential
Ag 10 none 0 none 0.0001 0.00058333 2.06E-07 8823.75322 0.095957419 76.77950727 2.701035806 32.08209683 44.28370976 0.115346133 4 nonexponential
Ag 10 none 0 none 0.0001 0.00058333 2.06E-07 8823.75322 0.095957419 76.77950727 2.697091536 37.28385194 44.28370976 0.115346133 4 nonexponential
CeO2 35.1 none 0 none 0.000716364 0.000485269 3.25E-06 5666.435239 0.367229448 112.5055939 4.274284067 41.1937846 97.15516794 -0.999517882 6 exponential
CeO2 43.9 none 0 none 0.007963636 3.93E-06 0.000401224 62992.35113 0.367229448 1250.696704 4.274284067 41.1937846 1181.000218 -0.540005732 6 exponential
CeO2 37.2 none 0 none 0.002250909 4.92E-05 3.21E-05 17804.68737 0.367229448 353.5074245 4.274284067 41.1937846 591.0107963 0.880563601 6 exponential
Fe 7.5 none 0 none 0.000551546 0.001255593 1.42E-07 6585.781461 0.850255613 45.28921544 2.918454124 28.24843851 50.84162664 0.998718975 7 nonexponential
Fe 7.5 none 0 none 0.000551546 0.001255593 1.42E-07 6585.781461 0.850255613 58.46812572 2.918454124 28.24843851 43.42552668 0.998101822 7 exponential
Fe 7.5 none 0 none 0.000551546 0.001255593 1.42E-07 6585.781461 0.850255613 82.68641636 2.918454124 28.24843851 31.36081682 0.979718986 7 nonexponential
Fe 7.5 none 0 none 0.000551546 0.000835266 9.46E-08 9899.916649 0.850255613 82.68641636 2.918454124 28.24843851 31.36081682 0.979718986 7 exponential
C60 2.44 none 0 none 0.000263889 0.001709061 8.61E-08 2268.094919 0.190700187 126.5673382 2.098485718 43.07215518 81.23101651 0.731047408 6 exponential
C60 1.34 none 0 none 0.000263889 0.001709061 8.61E-08 2268.094919 0.190700187 126.5673382 2.098485718 43.07215518 81.23101651 0.731047408 6 exponential
C60 1.34 none 0 none 0.000263889 0.001709061 8.61E-08 2268.094919 0.190700187 126.5673382 2.098485718 43.07215518 81.23101651 0.731047408 6 exponential
C60 2.25 none 0 none 0.000263889 0.001752328 8.83E-08 2212.092576 0.190700187 126.5673382 3.105758862 45.95472373 33.2316199 0.974707894 6 nonexponential
C60 1.34 none 0 none 0.000263889 0.001752328 8.83E-08 2212.092576 0.190700187 126.5673382 2.043262409 45.95472373 33.2316199 0.974707894 6 nonexponential
nHAP 200 none 0 none 0.000166667 0.000635349 9.05E-08 20509.63025 0.404883625 0.1 4.141247436 37.9790962 217.442557 0.922630113 7.692307692 exponential
nHAP 200 none 0 none 0.00017 0.000610678 9.42E-08 20919.82286 0.404883625 23.93505203 4.141247436 37.9790962 152.3055818 0.795918497 7.692307692 exponential
nHAP 200 none 0 none 0.00018 0.000544709 1.06E-07 22150.40067 0.404883625 80.14159092 4.141247436 37.9790962 90.03034317 0.89918996 7.692307692 exponential
nHAP 200 none 0 none 0.000198333 0.000448661 1.28E-07 24406.46 0.404883625 197.4541053 4.141247436 37.9790962 45.29297761 0.985726676 7.692307692 exponential
nHAP 200 none 0 none 0.000221667 0.000359177 1.60E-07 27277.80824 0.404883625 312.0943058 4.141247436 37.9790962 31.94220929 0.978130662 7.692307692 exponential
nHAP 200 none 0 none 0.000171667 0.000598877 9.61E-08 21124.91916 0.404883625 13.23829505 4.141247436 37.9790962 83.92779916 0.957277627 7.692307692 exponential
nHAP 200 none 0 none 0.000181667 0.000534761 1.08E-07 22355.49698 0.404883625 24.26509281 4.141247436 37.9790962 59.67813069 0.990406872 7.692307692 exponential
nHAP 200 none 0 none 0.00019 0.00048888 1.18E-07 23380.97849 0.404883625 32.76307718 4.141247436 37.9790962 49.10033336 0.993988241 7.692307692 exponential
nHAP 200 none 0 none 0.000225 0.000348614 1.65E-07 27688.00084 0.404883625 54.86919643 4.141247436 37.9790962 37.37600966 0.986937591 7.692307692 exponential
nHAP 10 none 10 HA 0.000416667 6.65E-05 1.24E-06 23027.27948 0.119035786 18.5512942 4.306897333 40.42146287 442.2441496 0.9972782 7.692307692 exponential
nHAP 10 none 10 HA 0.000486667 4.88E-05 1.69E-06 26895.86243 0.119035786 68.51995286 4.306897333 40.42146287 415.7598433 0.976748147 7.692307692 exponential
nHAP 10 none 10 HA 0.000696667 2.38E-05 3.46E-06 38501.61128 0.119035786 310.1776389 4.306897333 40.42146287 284.1136012 0.999314364 7.692307692 exponential
nHAP 10 none 10 HA 0.001063333 1.02E-05 8.06E-06 58765.61722 0.119035786 1058.619489 4.306897333 40.42146287 185.8654332 0.967606611 7.692307692 exponential
nBiochar 200 none 0 none 0.000229091 0.005171166 1.04E-07 11347.84333 2.50622964 21.54597297 3.230173 40.42146287 179.0685807 0.833993345 7.692307692 exponential
nBiochar 200 none 0 none 0.000192727 0.007306642 7.34E-08 9546.598353 2.50622964 18.12597726 3.230173 40.42146287 138.4011856 0.795633876 7.692307692 exponential
nBiochar 200 none 0 none 0.000190909 0.007446478 7.20E-08 9456.536105 2.50622964 17.95497747 3.230173 40.42146287 138.9327347 0.811362526 7.692307692 exponential
nBiochar 200 none 0 none 0.000178182 0.008548253 6.27E-08 8826.100365 2.50622964 16.75797898 3.230173 40.42146287 127.5235748 0.719223362 7.692307692 exponential
nBiochar 300 none 0 none 0.00021 0.002594674 5.42E-07 2367.572767 0.240500873 21.54597297 3.312997949 37.9790962 181.9395284 0.829270542 7.692307692 exponential
nBiochar 300 none 1 HA 0.00021 0.001284233 5.42E-07 2367.572767 0.119035786 21.54597297 3.312997949 37.9790962 201.5541254 0.897968405 7.692307692 exponential
nBiochar 300 none 5 HA 0.00021 0.001251513 5.28E-07 2429.470094 0.119035786 21.54597297 3.395822897 35.72438775 207.4095644 0.920231628 7.692307692 exponential
nBiochar 300 none 10 HA 0.00021 0.00122042 5.15E-07 2491.367421 0.119035786 21.54597297 3.478647846 33.63914201 209.0785667 0.928103077 7.692307692 exponential
nBiochar 300 Iron Oxide 0 none 0.00021 0.004673908 5.42E-07 2367.572767 0.433225479 21.54597297 3.312997949 37.9790962 109.7329334 0.963263077 7.692307692 nonexponential
nBiochar 300 Iron Oxide 0 none 0.00021 0.004673908 5.42E-07 2367.572767 0.433225479 21.54597297 3.312997949 37.9790962 82.71163295 0.999561729 7.692307692 exponential
nBiochar 300 Iron Oxide 0 none 0.00021 0.004704657 5.46E-07 2352.098435 0.433225479 21.54597297 3.147348051 43.07215518 59.45974325 0.93679713 7.692307692 exponential
nBiochar 300 Iron Oxide 1 HA 0.00021 0.002195925 5.15E-07 2491.367421 0.214183438 21.54597297 3.478647846 33.63914201 102.4649391 0.994842407 7.692307692 exponential
nBiochar 300 Iron Oxide 5 HA 0.00021 0.00229574 5.38E-07 2383.047098 0.214183438 21.54597297 3.478647846 33.63914201 120.854223 0.999008433 7.692307692 nonexponential
nBiochar 300 Iron Oxide 10 HA 0.00021 0.00229574 5.38E-07 2383.047098 0.214183438 21.54597297 3.478647846 33.63914201 126.5532772 0.999315855 7.692307692 nonexponential
nBiochar 300 none 0 none 0.000176667 0.00373949 3.91E-07 1952.7133 0.240500873 18.12597726 3.230173 40.42146287 146.5791843 0.778396967 7.692307692 exponential
nBiochar 300 none 1 HA 0.000176667 0.001901567 4.02E-07 1900.640945 0.119035786 18.12597726 3.147348051 43.07215518 158.2917075 0.840000191 7.692307692 exponential
nBiochar 300 none 5 HA 0.000176667 0.001814567 3.84E-07 1991.767566 0.119035786 18.12597726 3.312997949 37.9790962 159.1355173 0.850731306 7.692307692 exponential
nBiochar 300 none 10 HA 0.000176667 0.001850858 3.91E-07 1952.7133 0.119035786 18.12597726 3.230173 40.42146287 159.6163982 0.858835994 7.692307692 exponential
nBiochar 300 Iron Oxide 0 none 0.000176667 0.00631511 3.67E-07 2082.894186 0.433225479 18.12597726 3.312997949 37.9790962 43.54063488 0.967439814 7.692307692 exponential
nBiochar 300 Iron Oxide 0 none 0.000176667 0.006161083 3.58E-07 2134.966541 0.433225479 18.12597726 3.395822897 35.72438775 63.10174844 0.99079762 7.692307692 exponential
nBiochar 300 Iron Oxide 0 none 0.000176667 0.00631511 3.67E-07 2082.894186 0.433225479 18.12597726 3.312997949 37.9790962 85.83395357 0.931264223 7.692307692 exponential
nBiochar 300 Iron Oxide 1 HA 0.000176667 0.003264986 3.84E-07 1991.767566 0.214183438 18.12597726 3.312997949 37.9790962 74.93096345 0.99943156 7.692307692 exponential
nBiochar 300 Iron Oxide 5 HA 0.000176667 0.003181802 3.74E-07 2043.83992 0.214183438 18.12597726 3.395822897 35.72438775 86.31911899 0.992104879 7.692307692 exponential
nBiochar 300 Iron Oxide 10 HA 0.000176667 0.003181802 3.74E-07 2043.83992 0.214183438 18.12597726 3.395822897 35.72438775 90.19036098 0.990599413 7.692307692 exponential
ZnO 12.5 none 0 none 0.000212766 0.042441318 7.92E-07 240.5071412 0.404883625 72.80053538 0.098960169 52.52716758 13.12886035 -0.087183098 12 exponential
ZnO 12.5 none 0 none 0.0001 0.072150241 7.92E-07 511.7173217 0.688302163 72.80053538 0.113097336 37.9790962 14.73009525 -0.082316719 12 exponential
ZnO 12.5 none 0 none 0.000212766 0.029496716 7.92E-07 240.5071412 0.28139412 72.80053538 0.098960169 52.52716758 34.61456247 -0.053724618 12 exponential
ZnO 12.5 none 0 none 0.000306383 0.020467457 1.64E-06 346.3302833 0.404883625 104.8327709 0.098960169 52.52716758 26.41917224 -0.903553563 12 exponential
ZnO 12.5 none 0 none 0.000144 0.034794676 1.64E-06 736.8729432 0.688302163 104.8327709 0.113097336 37.9790962 28.7249505 -0.880335275 12 exponential
ZnO 12.5 none 0 none 0.000306383 0.014224882 1.64E-06 346.3302833 0.28139412 104.8327709 0.098960169 52.52716758 57.35858329 -0.676157004 12 exponential
ZnO 5 none 0 none 0.000621765 7.93E-05 3.44E-06 30650.2305 0.281799003 65.29438094 12.66690158 33.63914201 558.2010734 0.801867207 5 exponential
ZnO 5 none 0 none 0.000638431 7.52E-05 3.63E-06 31471.82293 0.281799003 149.9163379 12.66690158 33.63914201 542.0700332 0.788308366 5 exponential
ZnO 5 none 0 none 0.00075902 5.32E-05 5.13E-06 37416.2858 0.281799003 252.059307 12.66690158 33.63914201 595.1607386 0.787142011 5 exponential
ZnO 5 none 0 none 0.000947451 3.42E-05 7.99E-06 46705.11314 0.281799003 703.5443739 12.66690158 33.63914201 582.1506058 0.595012877 5 exponential
ZnO 5 none 0 none 0.000682941 6.57E-05 4.15E-06 33665.95801 0.281799003 277.7657351 12.66690158 33.63914201 300.454546 0.755228719 5 exponential
ZnO 5 none 0 none 0.000831765 4.43E-05 6.16E-06 41002.29511 0.281799003 151.2902213 12.66690158 33.63914201 286.4910449 0.632702565 5 exponential
ZnO 5 none 0 none 0.000856275 4.18E-05 6.53E-06 42210.51927 0.281799003 269.7640128 12.66690158 33.63914201 249.4292614 0.543915811 5 exponential
ZnO 5 none 0 none 0.000896471 3.82E-05 7.15E-06 44192.00689 0.281799003 364.6123862 12.66690158 33.63914201 192.9884034 0.499780319 5 exponential
ZnO 5 none 0 none 0.000621765 0.000158635 6.88E-06 15325.11525 0.281799003 65.29438094 12.66690158 33.63914201 558.2010734 0.801867207 5 exponential
ZnO 5 none 0 none 0.000638431 0.00015046 7.26E-06 15735.91147 0.281799003 149.9163379 12.66690158 33.63914201 542.0700332 0.788308366 5 exponential
ZnO 5 none 0 none 0.00075902 0.00010645 1.03E-05 18708.1429 0.281799003 252.059307 12.66690158 33.63914201 595.1607386 0.787142011 5 exponential
ZnO 5 none 0 none 0.000947451 6.83E-05 1.60E-05 23352.55657 0.281799003 703.5443739 12.66690158 33.63914201 582.1506058 0.595012877 5 exponential
ZnO 5 none 0 none 0.000682941 0.000131487 8.30E-06 16832.979 0.281799003 277.7657351 12.66690158 33.63914201 300.454546 0.755228719 5 exponential
ZnO 5 none 0 none 0.000831765 8.86E-05 1.23E-05 20501.14755 0.281799003 151.2902213 12.66690158 33.63914201 286.4910449 0.632702565 5 exponential
ZnO 5 none 0 none 0.000856275 8.36E-05 1.31E-05 21105.25963 0.281799003 269.7640128 12.66690158 33.63914201 249.4292614 0.543915811 5 exponential
ZnO 5 none 0 none 0.000896471 7.63E-05 1.43E-05 22096.00345 0.281799003 364.6123862 12.66690158 33.63914201 192.9884034 0.499780319 5 exponential
nHAP 100 none 0 none 0.000571667 6.66E-05 2.33E-06 31593.42744 0.224305528 25.45237564 4.251680701 41.71936933 358.5946649 0.721400955 7.692307692 exponential
nHAP 100 none 1 HA 0.00051 4.44E-05 1.85E-06 28185.39008 0.119035786 22.70678409 4.251680701 41.71936933 465.3951164 0.978599468 7.692307692 exponential
nHAP 100 none 5 HA 0.000501667 4.59E-05 1.79E-06 27724.84449 0.119035786 22.33575821 4.251680701 41.71936933 506.6909844 0.993468779 7.692307692 exponential
nHAP 100 none 10 HA 0.000458333 5.50E-05 1.50E-06 25330.00742 0.119035786 20.40642361 4.251680701 41.71936933 486.4685646 0.9972782 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 446.7791564 0.999963412 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 396.0375231 0.990463769 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 340.6417018 0.946467064 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 303.1263839 0.873673947 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 269.8422054 0.742479827 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 227.20715 0.182442408 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 217.7228854 0.989897291 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 452.8908022 0.996673597 7.692307692 exponential
nHAP 100 FeOOH 10 HA 0.000458333 0.000673449 1.50E-06 25330.00742 1.457581051 20.40642361 4.251680701 41.71936933 659.3541882 0.999603332 7.692307692 exponential
QD 50 none 0 none 8.70E-05 0.086972653 2.69E-07 206.6432889 0.29151621 15.53480865 1.589204096 45.95472373 50.42996099 0.920485371 4 nonexponential
QD 50 none 0 none 0.000188957 0.086972653 2.69E-07 95.14931098 0.29151621 15.53480865 1.632155558 43.07215518 50.42996099 0.920485371 4 nonexponential
QD 50 none 0 none 8.70E-05 0.00903612 2.79E-08 1988.941655 0.29151621 15.53480865 1.589204096 45.95472373 50.42996099 0.920485371 4 nonexponential
QD 50 none 0 none 0.000188957 0.00953125 2.95E-08 868.2374627 0.29151621 15.53480865 1.67510702 40.42146287 50.42996099 0.920485371 4 nonexponential
QD 50 none 0 none 0.0002464 0.00953125 2.95E-08 665.8262751 0.29151621 15.53480865 1.67510702 40.42146287 50.42996099 0.920485371 4 nonexponential
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment