Page MenuHomec4science

contact_solver.hh
No OneTemporary

File Metadata

Created
Sat, May 25, 22:16

contact_solver.hh

/**
* @file
* @section LICENSE
*
* Copyright (©) 2016-2020 EPFL (École Polytechnique Fédérale de Lausanne),
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __CONTACT_SOLVER_HH__
#define __CONTACT_SOLVER_HH__
/* -------------------------------------------------------------------------- */
#include "model.hh"
#include "tamaas.hh"
#include "meta_functional.hh"
/* -------------------------------------------------------------------------- */
namespace tamaas {
class ContactSolver {
public:
/// Constructor
ContactSolver(Model& model, const GridBase<Real>& surface, Real tolerance);
/// Destructor
virtual ~ContactSolver() = default;
public:
/// Print state of solve
virtual void printState(UInt iter, Real cost_f, Real error);
/// Set maximum number of iterations
void setMaxIterations(UInt n) { max_iterations = n; }
/// Set dump_frequency
void setDumpFrequency(UInt n) { dump_frequency = n; }
/// Add term to functional
void addFunctionalTerm(std::shared_ptr<functional::Functional> func);
// Virtual functions
public:
virtual Real solve(std::vector<Real> /*load*/) {
TAMAAS_EXCEPTION("solve() not implemented");
}
virtual Real solve(Real load) {
return solve(std::vector<Real>{load});
}
public:
GridBase<Real>& getSurface() { return surface; }
Model& getModel() { return model; }
protected:
Model& model;
GridBase<Real> surface;
std::shared_ptr<GridBase<Real>> _gap = nullptr;
functional::MetaFunctional functional;
Real tolerance;
UInt max_iterations = 1000;
Real surface_stddev;
UInt dump_frequency = 100;
};
} // namespace tamaas
/* -------------------------------------------------------------------------- */
#endif // __CONTACT_SOLVER_HH__

Event Timeline