libMesh::SteadySolver Class Reference

#include <steady_solver.h>

Inheritance diagram for libMesh::SteadySolver:

List of all members.

Public Types

typedef DifferentiableSystem sys_type
typedef TimeSolver Parent

Public Member Functions

 SteadySolver (sys_type &s)
virtual ~SteadySolver ()
virtual Real error_order () const
virtual bool element_residual (bool request_jacobian, DiffContext &)
virtual bool side_residual (bool request_jacobian, DiffContext &)
virtual Real du (const SystemNorm &) const
virtual bool is_steady () const
virtual void init ()
virtual void init_data ()
virtual void reinit ()
virtual void solve ()
virtual void advance_timestep ()
virtual void adjoint_advance_timestep ()
virtual void retrieve_timestep ()
virtual void before_timestep ()
const sys_typesystem () const
sys_typesystem ()
virtual AutoPtr< DiffSolver > & diff_solver ()
virtual AutoPtr< LinearSolver
< Number > > & 
linear_solver ()
void set_solution_history (const SolutionHistory &_solution_history)
bool is_adjoint () const
void set_is_adjoint (bool _is_adjoint_value)

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 ()

Public Attributes

bool quiet
unsigned int reduce_deltat_on_diffsolver_failure

Protected Types

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

Protected Member Functions

void increment_constructor_count (const std::string &name)
void increment_destructor_count (const std::string &name)

Protected Attributes

AutoPtr< DiffSolver_diff_solver
AutoPtr< LinearSolver< Number > > _linear_solver
sys_type_system
bool first_solve
AutoPtr< NumericVector< Number > > old_local_nonlinear_solution
AutoPtr< SolutionHistorysolution_history

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 class implements a TimeSolver which does a single solve of the steady state problem.

This class is part of the new DifferentiableSystem framework, which is still experimental. Users of this framework should beware of bugs and future API changes.

Author:
Roy H. Stogner 2006

Definition at line 49 of file steady_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 parent class

Definition at line 60 of file steady_solver.h.

The type of system

Reimplemented from libMesh::TimeSolver.

Definition at line 55 of file steady_solver.h.


Constructor & Destructor Documentation

libMesh::SteadySolver::SteadySolver ( sys_type s  )  [inline, explicit]

Constructor. Requires a reference to the system to be solved.

Definition at line 67 of file steady_solver.h.

00067 : Parent(s) {}

libMesh::SteadySolver::~SteadySolver (  )  [virtual]

Destructor.

Definition at line 28 of file steady_solver.C.

00029 {
00030 }


Member Function Documentation

void libMesh::TimeSolver::adjoint_advance_timestep (  )  [virtual, inherited]

This method advances the adjoint solution to the previous timestep, after an adjoint_solve() has been performed. This will be done before every UnsteadySolver::adjoint_solve().

Reimplemented in libMesh::UnsteadySolver.

Definition at line 100 of file time_solver.C.

00101 {
00102 }

void libMesh::TimeSolver::advance_timestep (  )  [virtual, inherited]

This method advances the solution to the next timestep, after a solve() has been performed. Often this will be done after every UnsteadySolver::solve(), but adaptive mesh refinement and/or adaptive time step selection may require some solve() steps to be repeated.

Reimplemented in libMesh::AdaptiveTimeSolver, libMesh::EigenTimeSolver, and libMesh::UnsteadySolver.

Definition at line 96 of file time_solver.C.

00097 {
00098 }

virtual void libMesh::TimeSolver::before_timestep (  )  [inline, virtual, inherited]

This method is for subclasses or users to override to do arbitrary processing between timesteps

Definition at line 152 of file time_solver.h.

00152 {}

virtual AutoPtr<DiffSolver>& libMesh::TimeSolver::diff_solver (  )  [inline, virtual, inherited]

An implicit linear or nonlinear solver to use at each timestep.

Reimplemented in libMesh::AdaptiveTimeSolver.

Definition at line 167 of file time_solver.h.

References libMesh::TimeSolver::_diff_solver.

00167 { return _diff_solver; }

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 }

virtual Real libMesh::SteadySolver::du ( const SystemNorm  )  const [inline, virtual]

Nominally computes the size of the difference between successive solution iterates ||u^{n+1} - u^{n}|| in some norm, but for this class just returns 0.

Implements libMesh::TimeSolver.

Definition at line 101 of file steady_solver.h.

00101 { return 0; }

bool libMesh::SteadySolver::element_residual ( bool  request_jacobian,
DiffContext context 
) [virtual]

This method uses the DifferentiableSystem's element_time_derivative() and element_constraint() to build a full residual/jacobian on an element.

Implements libMesh::TimeSolver.

Definition at line 34 of file steady_solver.C.

References libMesh::TimeSolver::_system, libMesh::DiffContext::elem_fixed_solution, libMesh::DiffContext::elem_solution, libMesh::DifferentiablePhysics::element_constraint(), libMesh::DifferentiablePhysics::element_time_derivative(), libMesh::DiffContext::fixed_solution_derivative, and libMesh::System::use_fixed_solution.

00036 {
00037   // If a fixed solution is requested, it will just be the current
00038   // solution
00039   if (_system.use_fixed_solution)
00040     {
00041       context.elem_fixed_solution = context.elem_solution;
00042       context.fixed_solution_derivative = 1.0;
00043     }
00044 
00045   bool jacobian_computed =
00046     _system.element_time_derivative(request_jacobian, context);
00047 
00048   // The user shouldn't compute a jacobian unless requested
00049   libmesh_assert(request_jacobian || !jacobian_computed);
00050 
00051   bool jacobian_computed2 =
00052     _system.element_constraint(jacobian_computed, context);
00053 
00054   // The user shouldn't compute a jacobian unless requested
00055   libmesh_assert (jacobian_computed || !jacobian_computed2);
00056 
00057   return jacobian_computed2;
00058 }

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 }

virtual Real libMesh::SteadySolver::error_order (  )  const [inline, virtual]

error convergence order against deltat is not applicable to a steady problem.

Definition at line 78 of file steady_solver.h.

00078 { return 0.; }

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::TimeSolver::init (  )  [virtual, inherited]

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

Reimplemented in libMesh::AdaptiveTimeSolver, libMesh::EigenTimeSolver, and libMesh::UnsteadySolver.

Definition at line 61 of file time_solver.C.

References libMesh::TimeSolver::_diff_solver, libMesh::TimeSolver::_linear_solver, libMesh::TimeSolver::_system, libMesh::DiffSolver::build(), and libMesh::AutoPtr< Tp >::get().

00062 {
00063   // If the user hasn't given us a solver to use,
00064   // just build a default solver
00065   if (_diff_solver.get() == NULL)
00066     _diff_solver = DiffSolver::build(_system);
00067 
00068   if (_linear_solver.get() == NULL)
00069     _linear_solver = LinearSolver<Number>::build();
00070 
00071   _diff_solver->init();
00072   _linear_solver->init();
00073 }

void libMesh::TimeSolver::init_data (  )  [virtual, inherited]

The data initialization function. This method is used to initialize internal data structures after the underlying System has been initialized

Reimplemented in libMesh::UnsteadySolver.

Definition at line 77 of file time_solver.C.

00078 {
00079 }

bool libMesh::TimeSolver::is_adjoint (  )  const [inline, inherited]

Accessor for querying whether we need to do a primal or adjoint solve

Definition at line 217 of file time_solver.h.

References libMesh::TimeSolver::_is_adjoint.

Referenced by libMesh::FEMSystem::build_context().

00218   { return _is_adjoint; }

virtual bool libMesh::SteadySolver::is_steady (  )  const [inline, virtual]

This is a steady-state solver.

Implements libMesh::TimeSolver.

Definition at line 106 of file steady_solver.h.

00106 { return true; }

virtual AutoPtr<LinearSolver<Number> >& libMesh::TimeSolver::linear_solver (  )  [inline, virtual, inherited]

An implicit linear solver to use for adjoint and sensitivity problems.

Definition at line 172 of file time_solver.h.

References libMesh::TimeSolver::_linear_solver.

00172 { return _linear_solver; }

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::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::TimeSolver::reinit (  )  [virtual, inherited]

The reinitialization function. This method is used after changes in the mesh

Reimplemented in libMesh::AdaptiveTimeSolver, libMesh::EigenTimeSolver, and libMesh::UnsteadySolver.

Definition at line 48 of file time_solver.C.

References libMesh::TimeSolver::_diff_solver, libMesh::TimeSolver::_linear_solver, libMesh::AutoPtr< Tp >::get(), and libMesh::TimeSolver::system().

00049 {
00050   libmesh_assert(_diff_solver.get());
00051   libmesh_assert_equal_to (&(_diff_solver->system()), &(this->system()));
00052   _diff_solver->reinit();
00053 
00054   libmesh_assert(_linear_solver.get());
00055   _linear_solver->clear();
00056   _linear_solver->init();
00057 }

void libMesh::TimeSolver::retrieve_timestep (  )  [virtual, inherited]

This method retrieves all the stored solutions at the current system.time

Reimplemented in libMesh::UnsteadySolver.

Definition at line 104 of file time_solver.C.

00105 {
00106 }

void libMesh::TimeSolver::set_is_adjoint ( bool  _is_adjoint_value  )  [inline, inherited]

Accessor for setting whether we need to do a primal or adjoint solve

Definition at line 224 of file time_solver.h.

References libMesh::TimeSolver::_is_adjoint.

Referenced by libMesh::DifferentiableSystem::adjoint_solve(), libMesh::FEMSystem::postprocess(), and libMesh::DifferentiableSystem::solve().

00225   { _is_adjoint = _is_adjoint_value; }

void libMesh::TimeSolver::set_solution_history ( const SolutionHistory _solution_history  )  [inherited]

A setter function users will employ if they need to do something other than save no solution history

Definition at line 91 of file time_solver.C.

References libMesh::SolutionHistory::clone(), and libMesh::TimeSolver::solution_history.

00092  {
00093    solution_history = _solution_history.clone();
00094  }

bool libMesh::SteadySolver::side_residual ( bool  request_jacobian,
DiffContext context 
) [virtual]

This method uses the DifferentiableSystem's side_time_derivative() and side_constraint() to build a full residual/jacobian on an element's side.

Implements libMesh::TimeSolver.

Definition at line 62 of file steady_solver.C.

References libMesh::TimeSolver::_system, libMesh::DiffContext::elem_fixed_solution, libMesh::DiffContext::elem_solution, libMesh::DiffContext::fixed_solution_derivative, libMesh::DifferentiablePhysics::side_constraint(), libMesh::DifferentiablePhysics::side_time_derivative(), and libMesh::System::use_fixed_solution.

00064 {
00065   // If a fixed solution is requested, it will just be the current
00066   // solution
00067   if (_system.use_fixed_solution)
00068     {
00069       context.elem_fixed_solution = context.elem_solution;
00070       context.fixed_solution_derivative = 1.0;
00071     }
00072 
00073   bool jacobian_computed =
00074     _system.side_time_derivative(request_jacobian, context);
00075 
00076   // The user shouldn't compute a jacobian unless requested
00077   libmesh_assert (request_jacobian || !jacobian_computed);
00078 
00079   bool jacobian_computed2 =
00080     _system.side_constraint(jacobian_computed, context);
00081 
00082   // The user shouldn't compute a jacobian unless requested
00083   libmesh_assert (jacobian_computed || !jacobian_computed2);
00084 
00085   return jacobian_computed2;
00086 }

void libMesh::TimeSolver::solve (  )  [virtual, inherited]

This method solves for the solution at the next timestep (or solves for a steady-state solution). Usually we will only need to solve one (non)linear system per timestep, but more complex subclasses may override this.

Reimplemented in libMesh::AdaptiveTimeSolver, libMesh::EigenTimeSolver, libMesh::TwostepTimeSolver, and libMesh::UnsteadySolver.

Definition at line 83 of file time_solver.C.

References libMesh::TimeSolver::_diff_solver, libMesh::AutoPtr< Tp >::get(), and libMesh::TimeSolver::system().

00084 {
00085   libmesh_assert(_diff_solver.get());
00086   libmesh_assert_equal_to (&(_diff_solver->system()), &(this->system()));
00087   _diff_solver->solve();
00088 }

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

Definition at line 162 of file time_solver.h.

References libMesh::TimeSolver::_system.

00162 { return _system; }

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

Definition at line 157 of file time_solver.h.

References libMesh::TimeSolver::_system.

Referenced by libMesh::TimeSolver::reinit(), and libMesh::TimeSolver::solve().

00157 { return _system; }


Member Data Documentation

An implicit linear or nonlinear solver to use at each timestep.

Definition at line 232 of file time_solver.h.

Referenced by libMesh::TimeSolver::diff_solver(), libMesh::TimeSolver::init(), libMesh::TimeSolver::reinit(), libMesh::UnsteadySolver::solve(), and libMesh::TimeSolver::solve().

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().

An implicit linear solver to use for adjoint problems.

Definition at line 237 of file time_solver.h.

Referenced by libMesh::TimeSolver::init(), libMesh::TimeSolver::linear_solver(), and libMesh::TimeSolver::reinit().

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().

bool libMesh::TimeSolver::first_solve [protected, inherited]

A bool that will be true the first time solve() is called, and false thereafter

Reimplemented in libMesh::UnsteadySolver.

Definition at line 248 of file time_solver.h.

Serial vector of _system.get_vector("_old_nonlinear_solution")

Reimplemented in libMesh::UnsteadySolver.

Definition at line 253 of file time_solver.h.

bool libMesh::TimeSolver::quiet [inherited]

Print extra debugging information if quiet == false.

Definition at line 177 of file time_solver.h.

Referenced by libMesh::UnsteadySolver::solve(), libMesh::TwostepTimeSolver::solve(), and libMesh::EigenTimeSolver::solve().

This value (which defaults to zero) is the number of times the TimeSolver is allowed to halve deltat and let the DiffSolver repeat the latest failed solve with a reduced timestep. Note that this has no effect for SteadySolvers. Note that you must set at least one of the DiffSolver flags "continue_after_max_iterations" or "continue_after_backtrack_failure" to allow the TimeSolver to retry the solve.

Definition at line 205 of file time_solver.h.

Referenced by libMesh::UnsteadySolver::solve(), and libMesh::TwostepTimeSolver::solve().


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

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

Hosted By:
SourceForge.net Logo