Skip to content

Commit 02025de

Browse files
committed
added archetypes
1 parent 28ebcec commit 02025de

File tree

3 files changed

+55
-1
lines changed

3 files changed

+55
-1
lines changed

archetypes/papers.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: papers
3+
# specify the title of the paper
4+
title: "Eclares: Energy-Aware Clarity-Driven Ergodic Search"
5+
# specify the date it was published
6+
date: 2024-05-13
7+
# 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.
8+
authors:
9+
- devanshagrawal
10+
- kalebbennaveed
11+
- Christopher Vermillion
12+
- dimitrapanagou
13+
# give the main figure location, relative to /static/
14+
image: /images/2024-eclares.png
15+
# 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
19+
# link to publisher site (optional)
20+
link: https://doi.org/10.1109/ICRA57147.2024.10611286
21+
# link to arxiv (optional)
22+
arxiv: https://arxiv.org/abs/2310.06933
23+
# link to github (optional)
24+
code: https://github.com/kalebbennaveed/Eclares.git
25+
# link to video (optional)
26+
video: https://youtu.be/1ZCgxlHitzk
27+
# link to pdf (optional)
28+
pdf: /pdfs/2024-eclares.pdf
29+
# 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."
31+
# 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+
}
41+
---

archetypes/people.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Full Name
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: "/images/devanshagrawal.jpg"
7+
# start year, used for sorting
8+
year: 2020
9+
# link to personal website (optional)
10+
link: https://dev10110.github.io
11+
# email id (optional)
12+
13+
---

layouts/people/people.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h1> People</h1>
77

88
<p class="d-none"> Rendered from /layouts/people/people </p>
99

10-
{{ $categories := slice "Faculty" "PhD" "Alumni" }}
10+
{{ $categories := slice "Faculty" "PostDoc" "PhD" "Masters" "Visiting" "Alumni" }}
1111

1212
{{ range $category := $categories }}
1313
{{ $subpages := where $pages "Params.category" $category }}

0 commit comments

Comments
 (0)