-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
63 lines (47 loc) · 2.46 KB
/
blog.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<div class="split">
<div class="left">
<img src="/assets/images/me.jpg" alt="Me" width="180">
<p>Johnatan Mucelini</p>
<p>PhD student in </p>
<p><a href="https://www5.iqsc.usp.br/">IQSC</a> - <a href="https://www5.usp.br/">USP</a></p>
<p style="margin-top:40px;"> Links: </p>
<p>
<a href="https://orcid.org/0000-0001-5687-8603"><img src="/assets/images/orcid_bw.png" alt="orcid icon" style="width:30px;height:30px;border:5;"></a>
<a href="https://scholar.google.com/citations?user=kIUsR28AAAAJ&hl=pt-BR"><img src="/assets/images/googleacademico_bw.png" alt="google academico icon" style="width:30px;height:30px;border:5;"></a>
<a href="http://lattes.cnpq.br/6336353192848542"><img src="/assets/images/lattes_bw.png" alt="lattes icon" style="width:30px;height:30px;border:5;"></a>
<a href="https://publons.com/researcher/3260975/johnatan-mucelini/"><img src="/assets/images/publons_bw.png" alt="publons icon" style="width:30px;height:30px;border:5;"></a>
<a href="https://github.com/johnatanmucelini"><img src="/assets/images/github_bw.png" alt="github icon" style="width:30px;height:30px;border:5;"></a>
</p>
</div>
<div class="right">
<nav style="margin: 20px 0 0 ;padding: 10px 0;" >
<a href="/" class="title">Johnatan</a>    
<a href="/publications.html" class="title">Publications</a>    
<a href="/researches.html" class="title">Researches</a>    
<a href="/cv.html" class="title">CV</a>    
<a href="/MyRenderings.html" class="title">Renderings</a>    
<a href="/codes.html" class="title">Codes</a>    
</nav>
<h2>Latest Posts</h2>
<ul>
<li>
<h2><a href="/2019/11/29/ECN.html">Effective Coordination Concept</a></h2>
<p><p>This concept is useful to calculate the number of coordination and average bonds distances for each atoms in a atomistic system.
First, I will address the approach described by Juarez L. F. Da Silva in <a href="https://aip.scitation.org/doi/abs/10.1063/1.3533422">this article</a>.
Then, I will present in details my python implementation for this algorithm.</p>
</p>
</li>
</ul>
</div>
</div>
</body>
</html>