Trisurf Monte Carlo simulator
Samo Penic
2015-10-06 ac9fa637f834dcd6a83efcfa6e0c5a52f534d5bf
commit | author | age
4257d8 1 TRISURF NG
SP 2 ==========
3
4
5 1. Instalation
6 --------------
7
8 To compile the program, user must have ``automake'', and ``gcc'' tools installed on the computer.
9
10 Required libraries are:
11 * libconfuse
12 * libgsl
13 * libxml2
14
15 On Debian based systems, install prerequisities by typing the following command in the command line:
16
17 ``sudo apt-get install libconfuse-dev libgsl0-dev libxml2-dev automake gcc''
18
19 Move to the project root directory and compile with:
20
21 ``./configure''
22 ``make''
23 ``make install''
24
25 If you are experiencing difficulties due to different automake versions, proceed with the longer procedure:
26
27 ``aclocal''
28 ``autoheader''
29 ``automake -ac''
30 ``autoconf''
31 ``./configure''
32 ``make''
33 ``make install''
34
35
36 2. Use
37 ------
38
39 Prepare tape file, storing the definition for the simulation. You can use the sample tape file in the ``src/'' directory as a template for your simulation.
40
41 Run simulations with ``trisurf-ng --force-from-tape'' for initial run, or ``trisurf-ng'' for continuing aborted simulations.
42
43