forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
87 lines (75 loc) · 3.83 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
layout: default
title: Home
notitle: true
# groups of columns of {roles: list, width: num, image: bool}
role-tables:
- - roles: [leadership, postdoc, staff]
width: 5
image: true
- roles: [grad, collab]
width: 5
image: true
---
<div class="jumbotron">
<h1>ACED: Accelerated Computational Electrochemical systems Discovery</h1>
<p>
Two key efforts to curb global greenhouse gas emissions involve reducing CO<sub>2</sub> into energy-dense liquid fuels and replacing the energy-intensive Haber-Bosch process for nitrogen reduction with an electrochemical alternative. In addition, efforts to electrify long-distance trucking or aviation are limited by the low-energy density of modern lithium-ion chemistries compared to petroleum fuels. Novel materials can address both of these challenges; however, systematic, theoretical evaluations of candidate material systems in-silico are limited to small design spaces and low-fidelity screening that fail to model realistic operating conditions.</p>
<p>
The goal of this project is to alter this paradigm by enabling rapid, high-fidelity screening of large numbers of electrochemical functional materials for use in new energy technologies. The team brings together complementary expertise in advanced computing, numerical methods, and materials science. Overall, the team expects to accelerate the overall energy material development and optimization process by 80%.
</p>
<img class="img-fluid mb-3" src="{{ site.baseurl }}/img/research/flowchart.png" alt="flowchart"/>
<p>
<h2>See AutoMat in action!</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/q7646pX34GU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/iGYtjBzF9YE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>
<h2>Prefer static content? Download flyers here...</h2>
<p><a href="{{ site.baseurl }}/img/research/business_flyer.pdf">Business Flyer</a></p>
<p><a href="{{ site.baseurl }}/img/research/technical_flyer.pdf">Technical Flyer</a></p>
</div>
<section>
<h2>Research</h2>
<div class="card-columns">
{% comment %}
Sort the projects by date, putting those without dates last
{% endcomment %}
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
{% assign projects_by_date = projects_by_date | reverse %}
{% for p in projects_by_date %}
{% if p.status != "inactive" %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>
</section>
<div id="people">
<h2>People</h2>
{% for role-table in page.role-tables %}
<section class="people row justify-content-between">
{% for role-column in role-table %}
<div class="col-md-{{ role-column.width }}">
{% for role in role-column.roles %}
{% include role-people.html role=role image=role-column.image %}
{% endfor %}
</div>
{% endfor %}
</section>
{% endfor %}
</div>
<section>
<div id="news">
<h2>News</h2>
<ul class="news list-unstyled">
{% for post in site.posts limit: site.front_page_news %}
{% include news-item.html item=post %}
{% endfor %}
</ul>
{% assign numposts = site.posts | size %}
{% if numposts >= 1 %}
<p>
<span class="fa fa-fw fa-history"></span>
<a href="{{ site.baseurl }}/blog.html">Older posts…</a>
</p>
{% endif %}
</section>