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`` |
SP |
22 |
``make`` |
|
23 |
``make install`` |
ac9fa6
|
24 |
|
SP |
25 |
If you are experiencing difficulties due to different automake versions, proceed with the longer procedure: |
|
26 |
|
58fd63
|
27 |
``aclocal`` |
SP |
28 |
``autoheader`` |
|
29 |
``automake -ac`` |
|
30 |
``autoconf`` |
|
31 |
``./configure`` |
|
32 |
``make`` |
|
33 |
``make install`` |
ac9fa6
|
34 |
|
SP |
35 |
|
|
36 |
2. Use |
|
37 |
------ |
|
38 |
|
58fd63
|
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. |
ac9fa6
|
40 |
|
58fd63
|
41 |
Run simulations with ``trisurf-ng --force-from-tape`` for initial run, or ``trisurf-ng`` for continuing aborted simulations. |
ac9fa6
|
42 |
|
SP |
43 |
|