Page MenuHomec4science

boundary_condition_python_functor.hh
No OneTemporary

File Metadata

Created
Fri, Jun 28, 09:01

boundary_condition_python_functor.hh

/**
* @file boundary_condition_python_functor.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
*
* @section LICENSE
*
* Copyright (©) 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu 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.
*
* Akantu 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 Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
#include "boundary_condition_functor.hh"
/* -------------------------------------------------------------------------- */
#include <Python.h>
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_BOUNDARY_CONDITION_PYTHON_FUNCTOR_HH__
#define __AKANTU_BOUNDARY_CONDITION_PYTHON_FUNCTOR_HH__
__BEGIN_AKANTU__
namespace BC {
class PythonFunctor : public Functor {
public:
PythonFunctor(PyObject * obj);
protected:
void callFunctor(PyObject * functor,
PyObject * args,
PyObject * kwargs) const;
template <typename T>
PyObject *convertArrayToNumpy(const Vector<T> & array) const;
PyObject * python_obj;
};
class PythonFunctorDirichlet : public PythonFunctor {
public:
PythonFunctorDirichlet(PyObject * obj) : PythonFunctor(obj) {}
public:
void operator()(UInt node,
Vector<bool> & flags,
Vector<Real> & primal,
const Vector<Real> & coord) const;
public:
static const Type type = _dirichlet;
};
class PythonFunctorNeumann : public PythonFunctor {
public:
PythonFunctorNeumann(PyObject * obj) : PythonFunctor(obj) {}
public:
void operator()(const IntegrationPoint & quad_point,
Vector<Real> & dual,
const Vector<Real> & coord,
const Vector<Real> & normals) const;
public:
static const Type type = _neumann;
};
}//end namespace BC
__END_AKANTU__
#endif /* __AKANTU_BOUNDARY_CONDITION_PYTHON_FUNCTOR_HH__ */

Event Timeline