-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
226 lines (120 loc) · 8.83 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ASL - Advanced Simulation Library</title>
<meta name="description" content="Open source hardware accelerated multiphysics simulation software">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="http://localhost:4000/">
<link rel="alternate" type="application/rss+xml" title="Advanced Simulation Library" href="http://localhost:4000/feed.xml" />
<link rel="icon" href="/media/favicon.png">
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60573757-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">Advanced Simulation Library</a>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="/features/">Features</a>
<a class="page-link" href="/benchmarks/">Benchmarks</a>
<a class="page-link" href="/documentation/">Documentation</a>
<a class="page-link" href="/download/">Download</a>
<a class="page-link" href="/contribute/">Contribute</a>
<a class="page-link" href="/support/">Support</a>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<div class="post">
<article class="post-content">
<p>Update: <a href="/2018/07/30/Avtech_Scientific_is_looking_for_CEO_and_CTO/"><strong>Avtech Scientific is looking for a CEO and a CTO; 18% equity for each one!</strong> Click to read more…</a></p>
<p><img src="/media/multicomponent.png" alt="Multicomponent flow" /></p>
<p><strong>Advanced Simulation Library (ASL)</strong> is a free and open source hardware accelerated multiphysics simulation platform (and an extensible general purpose tool for solving Partial Differential Equations). Its computational engine is written in <a href="http://en.wikipedia.org/wiki/OpenCL">OpenCL</a> and utilizes matrix-free solution techniques which enable <a href="/benchmarks">extraordinarily high performance, memory efficiency and deployability</a> on a variety of massively parallel architectures, ranging from inexpensive FPGAs, DSPs and GPUs up to heterogeneous clusters and supercomputers. The engine is hidden entirely behind <a href="/doc/Developer-Guide/locomotive_8cc-example.html">simple C++ classes</a>, so that no OpenCL knowledge is required from application programmers. Mesh-free, immersed boundary approach allows one to <a href="/documentation/#running-an-example">move from CAD directly to simulation</a> drastically reducing pre-processing efforts and amount of potential errors. ASL can be used to model various coupled physical and chemical phenomena and employed in a multitude of fields: computational fluid dynamics, virtual sensing, industrial process data validation and reconciliation, image-guided surgery, computer-aided engineering, design space exploration, crystallography, etc..</p>
<hr />
<p>ASL is distributed under the free GNU Affero General Public License (AGPL) with an optional <a href="http://asl.org.il/licensing">commercial license</a>. Professional consulting, training and integration services are provided by <a href="http://avtechscientific.com">Avtech Scientific</a>, whose team created and continues to extend the library. The company offers <a href="http://avtechscientific.com/services">innovative R&D solutions</a> and is involved in diverse academic and industrial <a href="http://avtechscientific.com/projects">collaborative projects</a> dealing with complex multidisciplinary problems.</p>
<hr />
<h3 class="page-heading">News</h3>
<p><a href="/feed.xml">
<img style="box-shadow: none;" alt="feed icon" src="/media/feed_icon.png" />
</a></p>
<ul class="post-list">
<li>
<span class="post-meta">2018-07-30</span>
<a class="post-link" href="/2018/07/30/Avtech_Scientific_is_looking_for_CEO_and_CTO/">Avtech Scientific is looking for a CEO and a CTO; 18% equity for each one.</a>
</li>
<li>
<span class="post-meta">2015-12-21</span>
<a class="post-link" href="/2015/12/21/Avtech_Scientific_joins_OpenHPC/">Avtech Scientific joins OpenHPC initiative to integrate ASL into the HPC framework.</a>
</li>
<li>
<span class="post-meta">2015-11-12</span>
<a class="post-link" href="/2015/11/12/Avtech_Scientific_announces_cooperation_with_IBM_and_NVIDIA/">Avtech Scientific announces cooperation with IBM and NVIDIA.</a>
</li>
<li>
<span class="post-meta">2015-08-30</span>
<a class="post-link" href="/2015/08/30/ASL_assists_neurosurgeons/">ASL assists neurosurgeons and robots, computes brain deformation in real time.</a>
</li>
<li>
<span class="post-meta">2015-07-31</span>
<a class="post-link" href="/2015/07/31/ASL_enters_Linux/">ASL enters Linux distributions at a record-breaking pace.</a>
</li>
<li>
<span class="post-meta">2015-06-09</span>
<a class="post-link" href="/2015/06/09/ASL-0.1.2_released/">ASL 0.1.2 released - updating dependencies.</a>
</li>
<li>
<span class="post-meta">2015-05-14</span>
<a class="post-link" href="/2015/05/14/open-sourcing_ASL/">Avtech Scientific releases the source code of ASL to the community.</a>
</li>
</ul>
</article>
</div>
<div class="social-share">
Share this on:
<a href="http://www.linkedin.com/shareArticle?mini=true&title=Advanced%20Simulation%20Library&url=http://localhost:4000/&source=http%3a%2f%2fasl.org.il" target="_blank" title="Share this on LinkedIn">LinkedIn</a>
<a href="https://twitter.com/intent/tweet?text=Advanced%20Simulation%20Library&url=http://localhost:4000/&via=AvtechSci&hashtags=" target="_blank" title="Share this on Twitter">Twitter</a>
<a href="https://www.facebook.com/sharer/sharer.php?t=Advanced%20Simulation%20Library&u=http://localhost:4000/" target="_blank" title="Share this on Facebook">Facebook</a>
<a href="https://plus.google.com/share?url=http://localhost:4000/" target="_blank" title="Share this on Google Plus">Google+</a>
<a href="http://pinterest.com/pin/create/link/?url=http://localhost:4000/&description=Advanced%20Simulation%20Library" target="_blank" title="Share this on Pinterest">Pinterest</a>
<a href="mailto:?Subject=Advanced%20Simulation%20Library&body=http://localhost:4000/" target="_top" title="Share this via Email">Email</a>
</div>
</div>
</div>
<footer class="site-footer">
<div class="wrapper">
<div class="footer-col-wrapper">
<a href="/licensing">Copyright</a> © 2015-2019 <a href="http://avtechscientific.com">Avtech Scientific</a> | Advanced Simulation Library™
<div style="float: right;">
Follow us:<br />
<a href="https://www.twitter.com/AvtechSci" title="Twitter"><i class="svg-icon twitter"></i></a>
<a href="https://www.facebook.com/AvtechScientific" title="Facebook"><i class="svg-icon facebook"></i></a>
<a href="https://www.linkedin.com/company/avtech-scientific" title="LinkedIn"><i class="svg-icon linkedin"></i></a>
<a href="https://youtube.com/channel/UCh5apaWqZYV1CZqTBzJ8Pkg"><i class="svg-icon youtube"></i></a>
<a href="/feed.xml" title="RSS"><i class="svg-icon rss"></i></a>
<a href="https://mail.gna.org/listinfo/asl-newsletter" title="Newsletter"><i class="svg-icon email"></i></a>
</div>
</div>
</div>
</footer>
</body>
</html>