forked from aisptech/aisptech.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (96 loc) · 3.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
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
<!doctype html>
<head>
<meta charset="UTF-8">
<title>AISP-Home</title>
<link rel="icon" href="images/favicon.gif" type="image/x-icon"/>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/favicon.gif" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="css/styles.css"/>
<link type="text/css" href="css/css3.css" rel="stylesheet" />
<!--<script type="text/javascript" src=" http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.js"></script>-->
<script type="text/javascript" src="https://libs.baidu.com/jquery/1.6.4/jquery.min.js">"></script>
<script type="text/javascript" src="js/jquery.pikachoose.js"></script>
<script language="javascript">
$(document).ready(
function (){
$("#pikame").PikaChoose();
});
</script>
</head>
<body>
<!--start container-->
<div id="container">
<!--start header-->
<header>
<!--start logo-->
<a href="#" id="logo"><img src="images/logo.png" width="310" height="100" alt="logo"/></a>
<!--end logo-->
<!--start menu-->
<nav>
<ul>
<li><a href="intro.html" target="_blank">AISP</a>
</li>
<li><a href="features.html" target="_blank">Features</a></li>
<!-- <li><a href="#">Services</a></li>-->
<!-- <li><a href="#">Release notes</a></li>-->
<li><a href="team.html" target="_blank">Development Team</a></li>
<li><a href="tut.html" target="_blank">Tutorial</a></li>
</ul>
</nav>
<!--end menu-->
<!--end header-->
</header>
<!--start intro-->
<div id="intro">
<div class="group_bannner_right">
<img src="images/picture.png" width="251" height="326" alt="baner">
</div>
<header class="group_bannner_left">
<hgroup>
<!--<h1><b>AISP</b> </h1>-->
<h1><b>A</b>ISP <b>I</b>s <b>S</b>tructure <b>P</b>redictor
<h2>"To explore the interplay of experiment, theory and computation in Materials Genome"
</h2>
</h2>
</hgroup>
</header>
</div>
<!--end intro-->
<!--start holder-->
<div class="holder_content">
<section class="group1">
<h3>Introduction</h3>
<p> We implement a crystal structure prediction package AISP which offers generating structure with symmetry constraints combined with a first-principles genetic algorithm (GA) for structural search. AISP is written in Python and C++, and currently interfaces with VASP to perform local optimizations in energy and force
</p>
<a href="intro.html" class="current" target="_blank"><span class="read_more">Read more...</span></a>
</section>
<section class="group2">
<h3>Features</h3>
<p>Generating 3D, 2D, 1D crystal Structures with symmetry restriction</p>
<p> XRD simulation support
<p> Genetic Algorithm to do global search in PES(potential energy surface)</p>
<p> JSON format input</p>
<a href="features.html" class="current" target="_blank"><span class="read_more">Read more...</span></a>
</section>
<section class="group3">
<h3>Release notes</h3>
<p>Version 1.0.1 (2021.1.5)</p>
<p>XRD simulation support </p>
<p>Version 1.0.0 (2020.11.22)</p>
<p>The first edition of AISP was written in Python/C++ </p>
</section>
</div>
<!--end holder-->
</div>
<!--end container-->
<!--start footer-->
<footer>
<div class="container">
<div id="FooterTwo"> © 2021 AISP PROJECT </div>
<div id="FooterTree"> <a href="http://aisp.tech" target="_blank" title="AISP">AISP HOME</a> </div>
</div>
</footer>
<!--end footer-->
</body></html>