Trisurf Monte Carlo simulator
Samo Penic
2015-10-06 58fd63bfdf41d60cfe5d647e63ba4d29d3c0f9f5
commit | author | age
ac9fa6 1 TRISURF NG
SP 2 ==========
3
4
5 1. Instalation
6 --------------
7
58fd63 8 To compile the program, user must have ``automake``, and ``gcc`` tools installed on the computer.
ac9fa6 9
SP 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
58fd63 21 ``./configure``
SP 22
23 ``make``
24
25 ``make install``
ac9fa6 26
SP 27 If you are experiencing difficulties due to different automake versions, proceed with the longer procedure:
28
58fd63 29 ``aclocal``
SP 30
31 ``autoheader``
32
33 ``automake -ac``
34
35 ``autoconf``
36
37 ``./configure``
38
39 ``make``
40
41 ``make install``
ac9fa6 42
SP 43
44 2. Use
45 ------
46
58fd63 47 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.
ac9fa6 48
58fd63 49 Run simulations with ``trisurf-ng --force-from-tape`` for initial run, or ``trisurf-ng`` for continuing aborted simulations.
ac9fa6 50
SP 51