Page MenuHomec4science

be_engine.hh
No OneTemporary

File Metadata

Created
Wed, Jun 12, 08:35

be_engine.hh

/**
* @file
*
* @author Lucas Frérot <lucas.frerot@epfl.ch>
*
* @section LICENSE
*
* Copyright (©) 2017 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Tamaas is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Tamaas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tamaas. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __BE_ENGINE_HH__
#define __BE_ENGINE_HH__
/* -------------------------------------------------------------------------- */
#include "model.hh"
#include "model_type.hh"
#include "tamaas.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_TAMAAS__
class Model;
/**
* @brief Boundary element engine class. Solves the Neumann/Dirichlet problem
* This class should be dimension and model-type agnostic.
*/
class BEEngine {
public:
/// Constructor
BEEngine(Model* model) : model(model) {}
/// Destructor
virtual ~BEEngine() {}
public:
/// Initialize influence coefficients
virtual void initInfluence() = 0;
/// Solve Neumann problem (expects boundary data)
virtual void solveNeumann(GridBase<Real>& neumann,
GridBase<Real>& dirichlet) const = 0;
/// Solve Dirichlet problem (expects boundary data)
virtual void solveDirichlet(GridBase<Real>& dirichlet,
GridBase<Real>& neumann) const = 0;
/// Get model
const Model& getModel() const { return *model; }
protected:
Model* model;
};
__END_TAMAAS__
#endif // __BE_ENGINE_HH__

Event Timeline