Chombo + EB + MF  3.2
CHOMBO_VERSION.H
Go to the documentation of this file.
1 #ifdef CH_LANG_CC
2 /*
3  * _______ __
4  * / ___/ / ___ __ _ / / ___
5  * / /__/ _ \/ _ \/ V \/ _ \/ _ \
6  * \___/_//_/\___/_/_/_/_.__/\___/
7  * Please refer to Copyright.txt, in Chombo's root directory.
8  */
9 #endif
10 
11 #ifndef _CHOMBO_VERSION_H_
12 #define _CHOMBO_VERSION_H_
13 #include "BaseNamespaceHeader.H"
14 
15 #define CHOMBO_VERSION 3.2
16 
17 /** signal that this is the svn trunk version of Chombo, rather than
18  the release version. This should be changed in the release version
19  of this file */
20 #define CHOMBO_TRUNK TRUE
21 
22 /**
23  \mainpage Chombo: Block-Structured Adaptive Mesh Refinement Library
24 
25  <a href="http://seesar.lbl.gov/anag/chombo">Chombo Web Page</a>
26 
27  <table WIDTH=640 HEIGHT=26 BORDER=0 CELLPADDING=0 CELLSPACING=0>
28  <tr>
29  <td WIDTH=106 BGCOLOR=#303784>&nbsp;</td>
30  <td WIDTH=534 BGCOLOR=#FFEF89>
31  <a NAME="What is Chombo?">What is Chombo?</a></b></td>
32  </tr>
33  </table><br CLEAR=ALL>
34 
35  The Chombo package provides a set of tools for implementing finite
36  difference methods for the solution of partial differential equations
37  on block-structured adaptively refined rectangular grids. Both elliptic
38  and time-dependent modules are included. Support for parallel platforms
39  and standardized self-describing file formats are included.
40 
41  <p>
42 
43  Chombo provides a distributed infrastructure for parallel calculations
44  over block-structured, adaptively refined grids. Chombo's design is
45  uniquely flexible and accessible. Any collaborator will be able to
46  develop parallel applications to solve the partial differential equations
47  in which she is interested with far shorter development times than would
48  be possible without the infrastructure. Very careful design and
49  documentation allows said collaborator to enter the software at many
50  levels. She will be able to use Chombo to investigate deep technical
51  issues of adaptive mesh refinement algorithms or to simply adapt the
52  example applications to solve different scientific problems.
53 */
54 
55 /**
56  * @defgroup chombo Chombo
57  *
58  */
59 
60 /** @defgroup eb EBChombo
61  *
62  */
63 
64 /** @defgroup mf MFChombo
65  *
66  */
67 
68 /**
69  @ingroup macros
70  The major version number of Chombo -- an integer.
71 
72  The Chombo version number has the form:
73 
74  CHOMBO_VERSION_MAJOR.CHOMBO_VERSION_MINOR
75 */
76 #define CHOMBO_VERSION_MAJOR 3
77 
78 /**
79  @ingroup macros
80  The minor version number of Chombo -- an integer.
81 */
82 #define CHOMBO_VERSION_MINOR 2
83 
84 #include "BaseNamespaceFooter.H"
85 #endif