libMesh::Solver Class Reference

#include <solver.h>

Inheritance diagram for libMesh::Solver:

List of all members.

Public Types

typedef EquationSystems sys_type

Public Member Functions

 ~Solver ()
virtual void init ()
virtual void pre_process ()
virtual void solve ()
virtual void post_process ()
const sys_typesystem () const
const MeshBasemesh () const

Static Public Member Functions

static std::string get_info ()
static void print_info (std::ostream &out=libMesh::out)
static unsigned int n_objects ()
static void enable_print_counter_info ()
static void disable_print_counter_info ()

Protected Types

typedef std::map< std::string,
std::pair< unsigned int,
unsigned int > > 
Counts

Protected Member Functions

 Solver (EquationSystems &es)
 Solver (EquationSystems &es, const std::string &name, const unsigned int number)
sys_typesystem ()
MeshBasemesh ()
void increment_constructor_count (const std::string &name)
void increment_destructor_count (const std::string &name)

Protected Attributes

sys_type_system
MeshBase_mesh

Static Protected Attributes

static Counts _counts
static Threads::atomic
< unsigned int > 
_n_objects
static Threads::spin_mutex _mutex
static bool _enable_print_counter = true

Detailed Description

This is a generic class that defines a solver to be used in a simulation. A user can define a solver by deriving from this class and implementing certain functions.

Author:
Benjamin S. Kirk, 2003-2004.

Definition at line 47 of file solver.h.


Member Typedef Documentation

typedef std::map<std::string, std::pair<unsigned int, unsigned int> > libMesh::ReferenceCounter::Counts [protected, inherited]

Data structure to log the information. The log is identified by the class name.

Definition at line 113 of file reference_counter.h.

The type of system

Definition at line 78 of file solver.h.


Constructor & Destructor Documentation

libMesh::Solver::Solver ( EquationSystems es  )  [inline, explicit, protected]

Constructor. Requires a reference to the system to be solved. The constructor is protected since it should not be instantiated by users.

Definition at line 145 of file solver.h.

00145                                    :
00146   _system (es),
00147   _mesh   (es.get_mesh())
00148 {
00149 libmesh_deprecated();
00150 }

libMesh::Solver::Solver ( EquationSystems es,
const std::string &  name,
const unsigned int  number 
) [protected]

Constructor. Requires a reference to the EquationSystems object, a name for the system, and the system number.

libMesh::Solver::~Solver (  )  [inline]

Destructor.

Definition at line 155 of file solver.h.

00156 {
00157 }


Member Function Documentation

void libMesh::ReferenceCounter::disable_print_counter_info (  )  [static, inherited]

Definition at line 106 of file reference_counter.C.

References libMesh::ReferenceCounter::_enable_print_counter.

00107 {
00108   _enable_print_counter = false;
00109   return;
00110 }

void libMesh::ReferenceCounter::enable_print_counter_info (  )  [static, inherited]

Methods to enable/disable the reference counter output from print_info()

Definition at line 100 of file reference_counter.C.

References libMesh::ReferenceCounter::_enable_print_counter.

00101 {
00102   _enable_print_counter = true;
00103   return;
00104 }

std::string libMesh::ReferenceCounter::get_info (  )  [static, inherited]

Gets a string containing the reference information.

Definition at line 47 of file reference_counter.C.

References libMesh::ReferenceCounter::_counts, and libMesh::Quality::name().

Referenced by libMesh::ReferenceCounter::print_info().

00048 {
00049 #if defined(LIBMESH_ENABLE_REFERENCE_COUNTING) && defined(DEBUG)
00050 
00051   std::ostringstream oss;
00052 
00053   oss << '\n'
00054       << " ---------------------------------------------------------------------------- \n"
00055       << "| Reference count information                                                |\n"
00056       << " ---------------------------------------------------------------------------- \n";
00057 
00058   for (Counts::iterator it = _counts.begin();
00059        it != _counts.end(); ++it)
00060     {
00061       const std::string name(it->first);
00062       const unsigned int creations    = it->second.first;
00063       const unsigned int destructions = it->second.second;
00064 
00065       oss << "| " << name << " reference count information:\n"
00066           << "|  Creations:    " << creations    << '\n'
00067           << "|  Destructions: " << destructions << '\n';
00068     }
00069 
00070   oss << " ---------------------------------------------------------------------------- \n";
00071 
00072   return oss.str();
00073 
00074 #else
00075 
00076   return "";
00077 
00078 #endif
00079 }

void libMesh::ReferenceCounter::increment_constructor_count ( const std::string &  name  )  [inline, protected, inherited]

Increments the construction counter. Should be called in the constructor of any derived class that will be reference counted.

Definition at line 163 of file reference_counter.h.

References libMesh::ReferenceCounter::_counts, and libMesh::Threads::spin_mtx.

Referenced by libMesh::ReferenceCountedObject< RBParametrized >::ReferenceCountedObject().

00164 {
00165   Threads::spin_mutex::scoped_lock lock(Threads::spin_mtx);
00166   std::pair<unsigned int, unsigned int>& p = _counts[name];
00167 
00168   p.first++;
00169 }

void libMesh::ReferenceCounter::increment_destructor_count ( const std::string &  name  )  [inline, protected, inherited]

Increments the destruction counter. Should be called in the destructor of any derived class that will be reference counted.

Definition at line 176 of file reference_counter.h.

References libMesh::ReferenceCounter::_counts, and libMesh::Threads::spin_mtx.

Referenced by libMesh::ReferenceCountedObject< RBParametrized >::~ReferenceCountedObject().

00177 {
00178   Threads::spin_mutex::scoped_lock lock(Threads::spin_mtx);
00179   std::pair<unsigned int, unsigned int>& p = _counts[name];
00180 
00181   p.second++;
00182 }

void libMesh::Solver::init (  )  [inline, virtual]

The initialization function. This method is used to initialize data structures befor a simulation begins.

Definition at line 162 of file solver.h.

References libMesh::EquationSystems::init(), and system().

00163 {
00164   // Initialize the system.
00165   this->system().init ();
00166 }

MeshBase& libMesh::Solver::mesh (  )  [inline, protected]
Returns:
a reference to the Mesh.

Definition at line 126 of file solver.h.

References _mesh.

00126 { return _mesh; }

const MeshBase& libMesh::Solver::mesh (  )  const [inline]
Returns:
a reference to the Mesh.

Definition at line 113 of file solver.h.

References _mesh.

00113 { return _mesh; }

static unsigned int libMesh::ReferenceCounter::n_objects (  )  [inline, static, inherited]

Prints the number of outstanding (created, but not yet destroyed) objects.

Definition at line 79 of file reference_counter.h.

References libMesh::ReferenceCounter::_n_objects.

00080   { return _n_objects; }

void libMesh::Solver::post_process (  )  [inline, virtual]

This method may be called after each solve step in order to perform any required post-processing.

Definition at line 195 of file solver.h.

Referenced by solve().

00196 {
00197 //  libMesh::out << "Post-processing"
00198 //               << std::endl;
00199 }

void libMesh::Solver::pre_process (  )  [inline, virtual]

This method may be called before each solve step in order to perform any required pre-processing.

Definition at line 171 of file solver.h.

Referenced by solve().

00172 {
00173 //  libMesh::out << "Pre-processing"
00174 //               << std::endl;
00175 }

void libMesh::ReferenceCounter::print_info ( std::ostream &  out = libMesh::out  )  [static, inherited]

Prints the reference information, by default to libMesh::out.

Definition at line 88 of file reference_counter.C.

References libMesh::ReferenceCounter::_enable_print_counter, and libMesh::ReferenceCounter::get_info().

00089 {
00090   if( _enable_print_counter ) out_stream << ReferenceCounter::get_info();
00091 }

void libMesh::Solver::solve (  )  [inline, virtual]

This method performs a solve step. What occurs in this method will depend on the type of solver. See the example programs for more details.

Definition at line 180 of file solver.h.

References post_process(), pre_process(), libMesh::EquationSystems::solve(), and system().

00181 {
00182   // Perform any necessary pre-processing
00183   Solver::pre_process ();
00184 
00185   // Solve the system
00186   this->system().solve ();
00187 
00188   // Perform any necessary post-processing
00189   Solver::post_process ();
00190 }

sys_type& libMesh::Solver::system (  )  [inline, protected]
Returns:
a writeable reference to the system we are solving.

Definition at line 121 of file solver.h.

References _system.

00121 { return _system; }

const sys_type& libMesh::Solver::system (  )  const [inline]
Returns:
a constant reference to the system we are solving.

Definition at line 108 of file solver.h.

References _system.

Referenced by init(), and solve().

00108 { return _system; }


Member Data Documentation

bool libMesh::ReferenceCounter::_enable_print_counter = true [static, protected, inherited]

Flag to control whether reference count information is printed when print_info is called.

Definition at line 137 of file reference_counter.h.

Referenced by libMesh::ReferenceCounter::disable_print_counter_info(), libMesh::ReferenceCounter::enable_print_counter_info(), and libMesh::ReferenceCounter::print_info().

A reference to the Mesh for the system we are solving.

Definition at line 137 of file solver.h.

Referenced by mesh().

Mutual exclusion object to enable thread-safe reference counting.

Definition at line 131 of file reference_counter.h.

Threads::atomic< unsigned int > libMesh::ReferenceCounter::_n_objects [static, protected, inherited]

The number of objects. Print the reference count information when the number returns to 0.

Definition at line 126 of file reference_counter.h.

Referenced by libMesh::ReferenceCounter::n_objects(), libMesh::ReferenceCounter::ReferenceCounter(), and libMesh::ReferenceCounter::~ReferenceCounter().

A reference to the system we are solving.

Definition at line 131 of file solver.h.

Referenced by system().


The documentation for this class was generated from the following file:

Site Created By: libMesh Developers
Last modified: February 05 2013 19:55:39 UTC

Hosted By:
SourceForge.net Logo