diff --git a/iCons2-CS1/index.html b/iCons2-CS1/index.html index 93bba96..06c8b05 100644 --- a/iCons2-CS1/index.html +++ b/iCons2-CS1/index.html @@ -36,7 +36,7 @@
Flow Batteries, or Vanadium Redox Flow Batteries, are a type of electrochemical cell where energy is provided by two chemical components dissolved in liquids that are pumped through the system on separate sides of a membrane. They provided a longer cycle life than typical Lithium-Ion batteries used widely today, they are safe to dispose off, and the technology is relatively easy to set up and manufacture.
- +Source: Make A GIF | Contributed Anonymously
For example, here is the efficiency of flow batteries in the U.S., as compared to other types of cells:
diff --git a/iCons2-CS1/js/flowEfficiency.js b/iCons2-CS1/js/flowEfficiency.js index 2ac91c1..d9b9bb7 100644 --- a/iCons2-CS1/js/flowEfficiency.js +++ b/iCons2-CS1/js/flowEfficiency.js @@ -18,24 +18,6 @@ function drawStuff() { ['Flywheel', 40, 70], ['Flow Battery', 50, 60] ]); - // - // var materialOptions = { - // width: 900, - // chart: { - // title: 'Gasoline Gallon Equivalent, and Energy Content of Various Fuels', - // subtitle: 'GGE on the left, EC on the right' - // }, - // series: { - // 0: { axis: 'GGE' }, // Bind series 0 to an axis named 'distance'. - // 1: { axis: 'EC' } // Bind series 1 to an axis named 'brightness'. - // }, - // axes: { - // y: { - // distance: {label: 'GGE'}, // Left y-axis. - // brightness: {side: 'right', label: 'Btu/gal'} // Right y-axis. - // } - // } - // }; var classicOptions = { width: 900, @@ -51,13 +33,6 @@ function drawStuff() { } }; -// function drawMaterialChart() { -// var materialChart = new google.charts.Bar(chartDiv); -// materialChart.draw(data, google.charts.Bar.convertOptions(materialOptions)); -// button.innerText = 'Change to Classic'; -// button.onclick = drawClassicChart; -// } - function drawClassicChart() { var classicChart = new google.visualization.ColumnChart(chartDiv); classicChart.draw(data, classicOptions);