Forked from
ogs / ogs
19270 commits behind the upstream repository.
-
Christoph Lehmann authoredChristoph Lehmann authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ElementCoordinatesMappingLocal.h 1.48 KiB
/**
* \copyright
* Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*/
#ifndef ELEMENTCOORDINATESMAPPINGLOCAL_H_
#define ELEMENTCOORDINATESMAPPINGLOCAL_H_
#include <vector>
#include <Eigen/Eigen>
#include "MathLib/Point3d.h"
namespace MeshLib
{
class Element;
}
namespace MeshLib
{
typedef Eigen::Matrix<double, 3u, 3u, Eigen::RowMajor> RotationMatrix;
/**
* This class maps node coordinates on intrinsic coordinates of the given element.
*/
class ElementCoordinatesMappingLocal final
{
public:
/**
* Constructor
* \param e Mesh element whose node coordinates are mapped
* \param global_dim Global dimension
*/
ElementCoordinatesMappingLocal(const Element &e, const unsigned global_dim);
/// return the global dimension
unsigned getGlobalDimension() const { return _global_dim; }
/// return mapped coordinates of the node
MathLib::Point3d const& getMappedCoordinates(std::size_t node_id) const
{
return _points[node_id];
}
/// return a rotation matrix converting to global coordinates
const RotationMatrix& getRotationMatrixToGlobal() const {return _matR2global;}
private:
const unsigned _global_dim;
std::vector<MathLib::Point3d> _points;
RotationMatrix _matR2global;
};
}
#endif // ELEMENTCOORDINATESMAPPINGLOCAL_H_