Skip to content
Snippets Groups Projects
Commit ee245941 authored by Oliver Sander's avatar Oliver Sander
Browse files

FixedArray instead of Mat used to stored coordinates

[[Imported from SVN: r1088]]
parent 9f1d2316
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,8 @@ namespace Dune {
void makeRefElemCoords();
//! the vertex coordinates
Mat<dimworld,dim+1, UGCtype> coord_;
//Mat<dimworld,dim+1, UGCtype> coord_;
FixedArray<FieldVector<UGCtype, dimworld>, (dim==2) ? 4 : 8> coord_;
//! The jacobian inverse
Mat<dimworld,dimworld> jac_inverse_;
......@@ -184,13 +185,14 @@ namespace Dune {
void makeRefElemCoords();
//! the vertex coordinates
Mat<3,3, UGCtype> coord_;
//Mat<3,3, UGCtype> coord_;
FixedArray<FieldVector<UGCtype, 3>, 4> coord_;
//! The jacobian inverse
Mat<3,3> jac_inverse_;
//! storage for global coords
FieldVector<UGCtype, 3> globalCoord_;
FieldVector<UGCtype, 4> globalCoord_;
//! storage for local coords
FieldVector<UGCtype, 2> localCoord_;
......@@ -208,6 +210,9 @@ namespace Dune {
public ElementDefault <1, 2, UGCtype,UGGridElement>
{
template <int codim_, int dim_, int dimworld_>
friend class UGGridEntity;
public:
//! for makeRefElement == true a Element with the coordinates of the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment