-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
executable file
·87 lines (55 loc) · 1.96 KB
/
README
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
PLUTO version 4.4-patch1
------------------------
Copyright (C) 2002-2021 Andrea Mignone
PLUTO is Godunov-type code for astrophysical fluid dynamics supporting several
modules and algorithms. This is the v 4.3 (June 2018) version of the code
(http://plutocode.ph.unito.it).
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Main Developer
==============
Andrea Mignone ([email protected]),
(Dipartimento di Fisica, Turin University)
(INAF Osservatorio Astronomico di Torino)
Contributors
============
B. Vaidya
C. Zanni
P. Tzeferacos
G. Muscianisi
G. Bodo, T. Matsakos, O. Tesileanu,
System requirements
===================
- C compiler (gcc works fine),
- Python (v. 2.0 or higher)
Optionals
- MPI (for parallel runs)
- Chombo lib (for AMR)
- libpng to produce on-the-fly graphics.
Basic Installation and Usage
============================
There's no configure.sh; once you've unpacked the distribution,
1) define the shell variable PLUTO_DIR as the
main PLUTO directory, e.g.,
if you are using tcsh:
> setenv PLUTO_DIR "/home/user/PLUTO"
if you're using bash:
> export PLUTO_DIR="/Users/ovidiu/PLUTO"
2) select a working dir anywhere on your hard disk;
at the command prompt, just type
> python $PLUTO_DIR/setup.py
configure your problem and select makefile;
3) edit your init.c and pluto.ini to assign
initial conditions and problem specific information;
4) compile with
> make
or (gmake);
4) run with
> ./pluto
See the documentation in Doc/ for more information.
Have fun!