Skip to content

Commit

Permalink
Flow Battery Diagram Improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
suobset committed Feb 24, 2022
1 parent 830cb31 commit 4c79e3e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 26 deletions.
2 changes: 1 addition & 1 deletion iCons2-CS1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>Introduction</h1>
<div id="home">
<h1>Flow Batteries</h1>
<p>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.</p>
<img src="https://i.makeagif.com/media/10-20-2019/orsxJK.gif" height="300px" width="500px">
<img src="https://i.makeagif.com/media/10-20-2019/orsxJK.gif">
<p>Source: <a href="https://makeagif.com/gif/giant-flow-batteries-could-power-your-city-in-the-future-orsxJK?origin=tag&source=discovery&order=best&page=40&position=10">Make A GIF | Contributed Anonymously</a></p>
<p>For example, here is the efficiency of flow batteries in the U.S., as compared to other types of cells:</p>
<div id="flow-charts-1" style="width: 900px; height: 500px;"></div>
Expand Down
25 changes: 0 additions & 25 deletions iCons2-CS1/js/flowEfficiency.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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);
Expand Down

0 comments on commit 4c79e3e

Please sign in to comment.