-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
166 lines (146 loc) · 5.24 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Lumol molecular simulation engine</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img src="/static/images/lumol.png" alt="Logo" class="logo">
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://lumol-org.github.io/lumol/latest/book/">User manual</a></li>
<li><a href="http://lumol-org.github.io/lumol/latest/lumol/">Developer reference</a></li>
</ul>
<li><a href="https://github.com/lumol-org/lumol">Github</a></li>
</li>
<li class=""><a href="/contact/">Contact</a></li>
</ul>
</div><!--/.navbar-collapse -->
</div>
</div>
<div id="wrap">
<div id="main">
<div class="jumbotron header">
<div class="container">
<h1>Lumol</h1>
<h2>An extensible molecular simulation engine</h2>
</div>
</div>
<div class="container">
<div class="row row-squares">
<div class="col-lg-3 square-1">
<h2>Flexible</h2>
<p>
Using Lumol, you can run all kind of simulations: from proteins
molecular dynamics to Grand Canonical Monte Carlo adsorption in
zeolites.
</p>
</div>
<div class="col-lg-3 square-2">
<h2>Extendable</h2>
<p>
Lumol is built around an extendable core, you easily add your own
simulation algorithms to the code: new potentials, new Monte Carlo
moves, new molecular dynamics integrators, …
</p>
</div>
<div class="col-lg-3 square-3">
<h2>Reliable</h2>
<p>
The code is continuously tested and developed using moderns developement
technics. It will never segfault or corrupt memory, and any crash is
considered as a bug.
</p>
</div>
<div class="col-lg-3 square-4">
<h2>Easy to use</h2>
<p>
Lumol provide ready to use command line tools with a nice input format,
and is extensively documented: from user manual to developer reference.
</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<h1>Installation</h1>
<p>
Lumol is in alpha state, but you can already try it and send us some
feedback so that we can improve it. Copy and paste the line below in a
terminal.
</p>
<pre
class="install"
><p>cargo install --git https://github.com/lumol-org/lumol lumol</p></pre>
<p>
You will need a <a href="http://rust-lang.org/"> Rust compiler</a> and an
internet connection. Next step is to try the examples from the
<a href="https://lumol-org.github.io/lumol/latest/book/"> user manual </a
>, and run your own simulations.
</p>
</div>
<div class="row">
<h1>Getting help</h1>
<p>
We have a
<a href="https://gitter.im/lumol-org/lumol"> chat room </a> where you can
ask your questions and get some help with the code. Do not hesitate to
come by and say hi!
</p>
</div>
<div class="row">
<h1>Contributing</h1>
<p>
Lumol is open-source and distributed under the BSD license. The code
source is on <a href="https://github.com/lumol-org/lumol"> github </a>,
and we are open to contributions. Please come around on our
<a href="https://gitter.im/lumol-org/lumol"> chat room </a> to discuss how
you can help, or just pick an
<a
href="https://github.com/lumol-org/lumol/issues?q=is%3Aissue+is%3Aopen+label%3AE-Easy"
>
easy issue</a
>
and send a pull-request!
</p>
</div>
</div>
</div>
</div>
<footer class="footer">
<p>
— Lumol — An open source molecular simulation engine —
<a href="/contact/">Contact us</a> —
</p>
</div>
<script src="/static/js/vendor/jquery-1.10.1.js"></script>
<script src="/static/js/vendor/bootstrap.js"></script>
<script src="/static/js/main.js"></script>
</body>
</html>