Trisurf Monte Carlo simulator
Samo Penic
2016-02-16 8c1bb171977954d573a50d03308c9221d4c0ee8e
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
b452d7 17 ``sudo apt-get install libconfuse-dev libgsl0-dev libxml2-dev automake gcc``
ac9fa6 18
SP 19 Move to the project root directory and compile with:
20
58fd63 21 ``./configure``
9a658d 22
58fd63 23 ``make``
9a658d 24
58fd63 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``
9a658d 30
58fd63 31 ``autoheader``
9a658d 32
58fd63 33 ``automake -ac``
9a658d 34
58fd63 35 ``autoconf``
9a658d 36
58fd63 37 ``./configure``
9a658d 38
58fd63 39 ``make``
9a658d 40
58fd63 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