Skip to content

Commit b7825dd

Browse files
authored
Add files via upload
1 parent 4912797 commit b7825dd

1 file changed

Lines changed: 108 additions & 0 deletions

File tree

_members/Narges-Mirdamadi.md

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
---
2+
name: Narges Mirdamadi
3+
image: images/headshots/Narges.jpg
4+
description: PhD Student
5+
role: grad
6+
group: current
7+
aliases:
8+
- N.Mirdamadi
9+
links:
10+
email: mirdamadi.n@northeastern.edu
11+
google-scholar: https://scholar.google.com/citations?user=eJiQ3XIAAAAJ&hl=en
12+
linkedin: narges-mirdamadi-126069211
13+
github: nmirda
14+
15+
topics: # must be "sim" "net" "ml" or "blood"
16+
- sim
17+
---
18+
19+
{% assign topics = page.topics | default: empty_array %}
20+
{%- if topics.size > 0 -%}
21+
<div class="tags">
22+
{%- for tag in topics -%}
23+
{% case tag %}
24+
{% when "blood" %}
25+
{%- assign topic_tag = "Hemorheology" -%}
26+
{% when "sim" %}
27+
{%- assign topic_tag = "Colloid Systems" -%}
28+
{% when "net" %}
29+
{%- assign topic_tag = "Network Science" -%}
30+
{% when "ml" %}
31+
{%- assign topic_tag = "Machine Learning" -%}
32+
{% else %}
33+
{%- assign topic_tag = "Other" -%}
34+
{% endcase %}
35+
{%- assign topic_link = "https://rheoinformatic.com/research/" -%}
36+
{%- assign topic_link = topic_link | append: tag %}
37+
<a href="{{ topic_link }}" class="tag" data-tooltip='View research area'>{{- topic_tag -}}</a>
38+
{%- endfor -%}
39+
</div>
40+
{%- endif -%}
41+
<hr>
42+
43+
<br>
44+
**Education**
45+
<br>
46+
- M.Sc. in Bioengineering (2025), Northeastern University
47+
- B.Sc. in Mechanical Engineering (2023), Sharif University of Technology
48+
<br>
49+
<hr>
50+
51+
Narges is a PhD student who joined the research group in 2026.
52+
53+
54+
{% assign author_names = page.aliases | default: empty_array | push: page.name %}
55+
{% assign author_publications = "" | split: "" %}
56+
57+
{% for citation in site.data.citations %}
58+
{% assign authors = citation.authors %}
59+
{% assign match_found = false %}
60+
61+
{% for author_name in author_names %}
62+
{% if authors contains author_name %}
63+
{% assign match_found = true %}
64+
{% break %}
65+
{% endif %}
66+
{% endfor %}
67+
68+
{% if match_found %}
69+
{% assign author_publications = author_publications | push: citation %}
70+
{% endif %}
71+
{% endfor %}
72+
73+
{% if author_publications.size > 0 %}
74+
<hr>
75+
<div class="publications">
76+
<p><strong>Publications</strong></p>
77+
{% for citation in author_publications | sort: "date" | reverse %}
78+
<div class="publication">
79+
<p style="margin: 0;"><a href="{{ citation.link }}" style="text-decoration: none;">{{ citation.title }}</a></p>
80+
<p style="margin: 0;">
81+
{% assign author_list = citation.authors %}
82+
{% for author in author_list %}
83+
{% if author == page.name or author_names contains author %}
84+
<u>{{ author }}</u>{% unless forloop.last %}, {% endunless %}
85+
{% else %}
86+
{{ author }}{% unless forloop.last %}, {% endunless %}
87+
{% endif %}
88+
{% endfor %}
89+
</p>
90+
<p style="margin: 0;">{{ citation.publisher }} · {{ citation.date | date: "%Y" }}</p>
91+
92+
{% if citation.tags.size > 0 %}
93+
<div class="tags" style="margin: 0; padding: 0; text-align: left;">
94+
{%- for tag in citation.tags -%}
95+
<a class="tag" style="display: inline-block; margin: 0; padding: 5px 15px; border-radius: 999px; color: $black; background: #D4D4D4; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: background $fast;">{{- tag -}}</a>
96+
{%- endfor -%}
97+
</div>
98+
{% else %}
99+
<div class="tags" style="margin: 0; padding: 0;">
100+
<a class="tag" style="display: inline-block; margin: 0; padding: 5px 15px; border-radius: 999px; color: $black; background: #D4D4D4; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: background $fast;">Other</a>
101+
</div>
102+
{% endif %}
103+
</div>
104+
<br>
105+
{% endfor %}
106+
</div>
107+
{% endif %}
108+

0 commit comments

Comments
 (0)