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