-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (76 loc) · 2.71 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elliptical Parcel-In-Cell</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="gallery">Gallery</a>
<a href="help">Need Help</a>
</div>
<!-- <img src="straka.jpg" alt="Straka" width="device-width"> -->
<h1>The Elliptical Parcel-In-Cell (EPIC) method</h1>
<img style="padding-left: 20px" src="straka.jpg" alt="Straka" width="1000px">
<p class="regular-text">
The EPIC code is an open-source framework written in Fortran 2018 to simulate
general two and three-dimensional flows. The primary focus of the current implementation
is on buoyancy-driven turbulent flows for cloud convection. It uses elliptical Lagrangian parcels
that deform based on the local strain field. The gridded velocity is obtained by efficient inversion
of the interpolated parcel vorticity on the Eulerian grid.
</p>
<p class="regular-text">
Detailed information about the numerics is found in
<ul>
<li>
M. Frey, D. Dritschel, S. Böing,
<a href="https://doi.org/10.1016/j.jcpx.2022.100109" target="_blank">
EPIC: The Elliptical Parcel-In-Cell method
</a>,
J. of Comp. Phys.: X 14 (2022) 100109.
</li>
<li>
M. Frey, D. Dritschel, S. Böing,
<a href="https://doi.org/10.1016/j.jcpx.2023.100136" target="_blank">
The 3D Elliptical Parcel-In-Cell (EPIC) method
</a>,
J. of Comp. Phys.: X, 17 (2023), 100136.
</li>
</ul>
</p>
<p class="regular-text">
The current teams consists of
<ul>
<li>
<a href="https://research-portal.st-andrews.ac.uk/en/persons/matthias-frey"
target="_blank">
Matthias Frey</a>,
University of St Andrews
</li>
<li>
<a href="https://research-portal.st-andrews.ac.uk/en/persons/david-gerard-dritschel"
target="_blank">
David Dritschel</a>,
University of St Andrews
</li>
<li>
<a href="https://environment.leeds.ac.uk/see/staff/1165/dr-steven-boeing"
target="_blank">
Steven J. Böing</a>,
University of Leeds
</li>
<li>
<a href="https://www.epcc.ed.ac.uk/about-us/our-team/dr-rui-apostolo"
target="_blank">
Rui Apostolo</a>,
Edinburgh Parallel Computing Centre (EPCC)
</li>
</ul>
</p>
<!-- If you use EPIC for your research, please cite the latest source code DOI which is found -->
<!-- on <a href="https://zenodo.org/records/10710859" target="_blank">Zenodo</a> -->
</body>