Skip to content

Commit 9c2a24a

Browse files
committed
Merge branch 'test_joon'
2 parents 1e7c1a9 + 58e70df commit 9c2a24a

File tree

10 files changed

+48
-35
lines changed

10 files changed

+48
-35
lines changed

archetypes/papers.md

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,28 @@
11
---
22
layout: papers
33
# specify the title of the paper
4-
title: "Eclares: Energy-Aware Clarity-Driven Ergodic Search"
4+
title: "Paper Title"
55
# specify the date it was published
6-
date: 2024-05-13
6+
date: 1900-01-01
77
# list the authors. if a "/people/id" page exists for the person, it will be linked. If not, the author's name is printed exactly as you typed it.
88
authors:
9-
- devanshagrawal
10-
- kalebbennaveed
11-
- Christopher Vermillion
129
- dimitrapanagou
1310
# give the main figure location, relative to /static/
14-
image: /images/2024-eclares.png
11+
image: /images/default_paper.png
1512
# specify the conference or journal that it was published in
16-
venue: "IEEE ICRA 2024"
17-
# specify the type of the paper. choose from [conference, journal]
18-
type: conference
13+
venue:
1914
# link to publisher site (optional)
20-
link: https://doi.org/10.1109/ICRA57147.2024.10611286
15+
link:
2116
# link to arxiv (optional)
22-
arxiv: https://arxiv.org/abs/2310.06933
17+
arxiv:
2318
# link to github (optional)
24-
code: https://github.com/kalebbennaveed/Eclares.git
19+
code:
2520
# link to video (optional)
26-
video: https://youtu.be/1ZCgxlHitzk
21+
video:
2722
# link to pdf (optional)
28-
pdf: /pdfs/2024-eclares.pdf
23+
pdf:
2924
# abstract
30-
abstract: "Planning informative trajectories while considering the spatial distribution of the information over the environment, as well as constraints such as the robot’s limited battery capacity, makes the long-time horizon persistent coverage problem complex. Ergodic search methods consider the spatial distribution of environmental information while optimizing robot trajectories; however, current methods lack the ability to construct the target information spatial distribution for environments that vary stochastically across space and time. Moreover, current coverage methods dealing with battery capacity constraints either assume simple robot and battery models or are computationally expensive. To address these problems, we propose a framework called Eclares, in which our contribution is two-fold. 1) First, we propose a method to construct the target information spatial distribution for ergodic trajectory optimization using clarity, an information measure bounded between [0, 1]. The clarity dynamics allow us to capture information decay due to a lack of measurements and to quantify the maximum attainable information in stochastic spatiotemporal environments. 2) Second, instead of directly tracking the ergodic trajectory, we introduce the energy-aware (eware) filter, which iteratively validates the ergodic trajectory to ensure that the robot has enough energy to return to the charging station when needed. The proposed eware filter is applicable to nonlinear robot models and is computationally lightweight. We demonstrate the working of the framework through a simulation case study."
25+
abstract:
3126
# bib entry (optional). the |- is used to allow for multiline entry.
32-
bib: |-
33-
@inproceedings{naveed2024eclares,
34-
title={Eclares: Energy-aware clarity-driven ergodic search},
35-
author={Naveed, Kaleb Ben and Agrawal, Devansh and Vermillion, Christopher and Panagou, Dimitra},
36-
booktitle={2024 IEEE International Conference on Robotics and Automation (ICRA)},
37-
pages={14326--14332},
38-
year={2024},
39-
organization={IEEE}
40-
}
27+
bib:
4128
---

archetypes/people.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Full Name
2+
title: '{{ replace .File.ContentBaseName `` ` ` | title }}'
33
# choose a category from [Faculty, PostDoc, PhD, Masters, Visiting, Alumni]. Be careful about the capitalization.
44
category: PhD
55
# give the path relative to static/
6-
image: "/images/devanshagrawal.jpg"
6+
image: "/images/default_profile.webp"
77
# start year, used for sorting
8-
year: 2020
8+
year:
99
# link to personal website (optional)
10-
link: https://dev10110.github.io
10+
link:
1111
# email id (optional)
12-
mail: devansh@umich.edu
12+
mail:
1313
---

content/people/haejoonl.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Haejoon Lee
3+
# choose a category from [Faculty, PostDoc, PhD, Masters, Visiting, Alumni]. Be careful about the capitalization.
4+
category: PhD
5+
# give the path relative to static/
6+
image:
7+
# start year, used for sorting
8+
year: 2023
9+
# link to personal website (optional)
10+
link:
11+
# email id (optional)
12+
mail: haejoonl@umich.edu
13+
---

content/people/kalebbennaveed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
title: Kaleb Ben Naveed
33
category: "PhD"
44
image: /images/kalebbennaveed.jpeg
5+
year: 2022
56
---

layouts/papers/single.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44

55
{{ partial "paper-card" . }}
66

7-
87
<div class="my-3">
98
<h3>Abstract</h3>
109
<p>{{ .Params.abstract}}</p>
1110
</div>
1211

1312
{{ .Content }}
1413

15-
{{ end }}
16-
14+
{{ end }}

layouts/partials/paper-card.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
<div class="row align-items-top mt-3">
22
<div class="col-md-3 mb-2">
33
<a href="{{ .RelPermalink }}">
4+
{{ if .Params.image }}
45
<img
56
class="img-thumbnail img-fluid"
67
src="{{ .Params.image}}"
7-
alt="project image"
8+
alt="{{ .Title }}"
89
/>
10+
{{ else }}
11+
<img
12+
class="img-thumbnail img-fluid"
13+
src="/images/default_paper.png"
14+
alt="{{ .Title }}"
15+
/>
16+
{{ end }}
917
</a>
1018
</div>
1119

layouts/partials/person-card.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<div class="card h-100" style="width: 18rem;">
22
<a href="{{ .RelPermalink }}">
3-
<img src="{{ .Params.image }}" class="card-img-top" alt="{{ .Title }}">
3+
{{ if .Params.image }}
4+
<img src="{{ .Params.image }}" class="card-img-top" alt="{{ .Title }}">
5+
{{ else }}
6+
<img src="/images/default_profile.webp" class="card-img-top" alt="{{ .Title }}">
7+
{{ end }}
48
</a>
59
<div class="card-body">
610
<a href=" {{ .RelPermalink }}">

layouts/people/people.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{{ define "main" }}
22

33

4-
{{ $pages := .Pages }}
4+
{{ $allpages := .Pages}}
5+
6+
{{ $pages := sort $allpages "Params.year" "asc" }}
57

68
<h1> People</h1>
79

static/images/default_paper.png

702 KB
Loading

static/images/default_profile.webp

125 KB
Binary file not shown.

0 commit comments

Comments
 (0)