Directory Structure
The amuse source-code is separated into 3 directories:
- src - source code, implementation of the environment.
- test - applications, examples and unittests.
- support - build system, test system.
Under the src directories all code needed to run AMUSE can be found.
One can view this code as an library that can be used to create
applications to do numerical astrophysical experiments. This code will
contain the building blocks needed to interface with codes,
import and export data, do unit conversions, and all other AMUSE
functionality.
Under the test directories all application and test code can be
found. This directory tree will contain scripts to do a complete
astrophysical experiment. Also all unit-tests can be found here. These
unit tests each cover only a small part (unit) of the functionality of
AMUSE. For example a test to check the import of a file to AMUSE data
format.
Under the support directories all support code for the building
system can be found.
The src directories
The directories under the src directory are further split into:
- community - contains the source code of existing astrophysical
applications and glue code to the AMUSE interface classes. in other
words this directory contains the implementation of the interfaces.
- support - contains the AMUSE generic code, defines the data
representation and input/output routines and also provides the generic
unit handling code. Code in the interface and community directories
use these functions and classes to provide their functionality.
The test directories
The directories under the test directory are further split into:
- unit_tests - All unit testing code. These tests are coded using.
the standard unit testing framework that is included in the Python
distribution (unittest). See python module documentation for further
information: http://docs.python.org/library/unittest.html.
- application - contains the source code of published applications.
- examples - contains documented example codes.
The support directories
The directories under the support directory are further split into:
- test - Scripts to support the testing of AMUSE code.
- build - Scripts used by the building system of AMUSE.