master
Samah Hussein Youssef 2 months ago
parent 00cb75a706
commit 1c2be1f847

@ -12,11 +12,11 @@ permalink: /blog/:year/:month/:day/:title.html
# Sections on the "people" page.
roles:
- key: faculty
name: Faculty
name: Advisor
- key: postdoc
name: Postdoc
- key: grad
name: PhD
name: PhD Students
- key: visitandresearch
name: Past visitors and researchers
- key: grad-undergrad-projects

@ -32,7 +32,7 @@ arman:
display_name: "Arman Maghsoudnia"
webpage: "https://people.epfl.ch/arman.maghsoudnia?lang=en"
role: grad
bio: PhD Student
bio: PhD Candidate
image: /img/people/arman.jpg
raphael:

@ -20,7 +20,7 @@
flex-md-row justify-content-md-between">
<a href="{{ site.base }}/" class="">
<img src="{{ site.base }}/img/SENS-logo-nobg.png"
srcset="{{ site.base }}/img/logo@2x.png 2x"
srcset="{{ site.base }}/img/SENS-logo-nobg.png 2x"
alt="Awesome" id="logo">
</a>
<ul class="nav nav-pills justify-content-center">

@ -9,7 +9,7 @@ people:
- samah
layout: project
last-updated: 2024-07-03
last-updated: 2024-08-03
---
This research project aims to leverage machine learning techniques to enhance and reconstruct 3D objects in practical scenarios for autonomous driving.
@ -27,7 +27,7 @@ Despite these advantages, mmWave radar sensors face hardware limitations that af
### Completed student projects
1. Experimental platform deployment for TI's mmWave Cascaded Radar on Turtlebot
1. Multi-Sensor Assisted Mobile Millimeter-Wave Mapping Platform
Student: Cyril Golaz
2. 3D partial and complete point clouds dataset using mmWave radar

@ -0,0 +1,22 @@
---
title: Software-Defined Milimeter-Wave Phased Array Radio
description: |
This research project targets the design and implementation of mmWave Phased Array Radio using Radio-Frequency System-on-Chip as a baseband.
people:
- samah
layout: project
last-updated: 2024-09-2
---
This project targets developing a low cost Software-Defined-Radio (SDR), with a large bandwidth available, by using the RFSoc boards from Xilinx. Once fully functional, this system will be extended to phased arrays for different applications, with special focus on joint communication and sensing.
### Completed student projects
1. Software-Defined Milimeter-Wave Phased Array Radio using RFSoc 4x2
Student: Jeremy Joël Weill

@ -1,5 +1,6 @@
---
title: A Project
status: inactive #comment out this line to build your project
description: |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut hendrerit blandit

@ -1,5 +1,6 @@
---
title: Big Project
status: inactive #comment out this line to build your project
description: |
This project has a lot of people working on it!!

@ -1,5 +1,6 @@
---
title: Logo Project
status: inactive #comment out this line to build your project
notitle: true

@ -1,6 +1,7 @@
---
title: Project with a Longer Title
subtitle: And a subtitle
status: inactive #comment out this line to build your project
description: |
This project has a long title, but no other content.

@ -53,8 +53,8 @@ a > .fa {
/* Group logo */
#logo {
width: 154px;
height: 35px;
width: 120px;
height: 55px;
margin: 2px 0 8px 0;
}
@ -79,8 +79,11 @@ ul.news {
@media (min-width: 768px) {
.role.grad { column-count: 2 }
.project-people { column-count: 3 }
.card-columns { column-count: 3 }
}
.card-columns {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
gap: 35px; /* Optional: Adjust spacing between cards */
}}
.title img {
max-width: 50%;

@ -28,26 +28,13 @@ role-tables:
<div class="jumbotron">
<p>
The <b>Awesome Research Group</b> at <b>Example U</b> does all sorts of
research. Here is a place where we tell you exactly what that is!
The <b>Laboratory of Sensing and Networking Systems (SENS)</b> at <b>EPFL</b> an interdisciplinary research group dedicated to
designing and implementing innovative systems with tangible real-world applications. Our focus spans a wide range of areas,
including wireless networking, the Internet of Things (IoT), mobile systems, as well as wireless imaging and sensing technologies.
</p>
</div>
<section>
<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.base }}/blog.html">Older posts&hellip;</a>
</p>
{% endif %}
</section>
<section>
<h2>Research</h2>
@ -79,3 +66,20 @@ role-tables:
</section>
{% endfor %}
</div>
<section>
<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.base }}/blog.html">Older posts&hellip;</a>
</p>
{% endif %}
</section>

@ -10,6 +10,8 @@ title: Research Projects
{% 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>

Loading…
Cancel
Save