Skip to content
Snippets Groups Projects
Commit af522b30 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[T] pass global dim explicitly

parent f9fee07a
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,9 @@ void debugOutput(MeshLib::Element *ele, MeshLib::ElementCoordinatesMappingLocal ...@@ -153,7 +153,9 @@ void debugOutput(MeshLib::Element *ele, MeshLib::ElementCoordinatesMappingLocal
TEST(MeshLib, CoordinatesMappingLocalLowerDimLineY) TEST(MeshLib, CoordinatesMappingLocalLowerDimLineY)
{ {
auto ele = TestLine2::createY(); auto ele = TestLine2::createY();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::CoordinateSystem(MeshLib::CoordinateSystemType::Y)); MeshLib::ElementCoordinatesMappingLocal mapping(
*ele, MeshLib::CoordinateSystem(MeshLib::CoordinateSystemType::Y)
.getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
...@@ -171,8 +173,10 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineY) ...@@ -171,8 +173,10 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineY)
TEST(MeshLib, CoordinatesMappingLocalLowerDimLineZ) TEST(MeshLib, CoordinatesMappingLocalLowerDimLineZ)
{ {
auto ele = TestLine2::createZ(); auto ele = TestLine2::createZ();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::ElementCoordinatesMappingLocal mapping(
MeshLib::CoordinateSystem(MeshLib::CoordinateSystemType::Z)); *ele,
MeshLib::CoordinateSystem(MeshLib::CoordinateSystemType::Z)
.getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
...@@ -188,7 +192,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineZ) ...@@ -188,7 +192,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineZ)
TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXY) TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXY)
{ {
auto ele = TestLine2::createXY(); auto ele = TestLine2::createXY();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::CoordinateSystem(*ele)); MeshLib::ElementCoordinatesMappingLocal mapping(
*ele, MeshLib::CoordinateSystem(*ele).getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
...@@ -206,7 +211,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXY) ...@@ -206,7 +211,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXY)
TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXYZ) TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXYZ)
{ {
auto ele = TestLine2::createXYZ(); auto ele = TestLine2::createXYZ();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::CoordinateSystem(*ele)); MeshLib::ElementCoordinatesMappingLocal mapping(
*ele, MeshLib::CoordinateSystem(*ele).getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
...@@ -224,7 +230,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXYZ) ...@@ -224,7 +230,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimLineXYZ)
TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadXZ) TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadXZ)
{ {
auto ele = TestQuad4::createXZ(); auto ele = TestQuad4::createXZ();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::CoordinateSystem(*ele)); MeshLib::ElementCoordinatesMappingLocal mapping(
*ele, MeshLib::CoordinateSystem(*ele).getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
...@@ -244,7 +251,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadXZ) ...@@ -244,7 +251,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadXZ)
TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadYZ) TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadYZ)
{ {
auto ele = TestQuad4::createYZ(); auto ele = TestQuad4::createYZ();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::CoordinateSystem(*ele)); MeshLib::ElementCoordinatesMappingLocal mapping(
*ele, MeshLib::CoordinateSystem(*ele).getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
...@@ -264,7 +272,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadYZ) ...@@ -264,7 +272,8 @@ TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadYZ)
TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadXYZ) TEST(MeshLib, CoordinatesMappingLocalLowerDimQuadXYZ)
{ {
auto ele = TestQuad4::createXYZ(); auto ele = TestQuad4::createXYZ();
MeshLib::ElementCoordinatesMappingLocal mapping(*ele, MeshLib::CoordinateSystem(*ele)); MeshLib::ElementCoordinatesMappingLocal mapping(
*ele, MeshLib::CoordinateSystem(*ele).getDimension());
auto matR(mapping.getRotationMatrixToGlobal()); auto matR(mapping.getRotationMatrixToGlobal());
//debugOutput(ele, mapping); //debugOutput(ele, mapping);
......
...@@ -62,7 +62,7 @@ public: ...@@ -62,7 +62,7 @@ public:
public: public:
NumLibFemNaturalCoordinatesMappingTest() NumLibFemNaturalCoordinatesMappingTest()
: eps(std::numeric_limits<double>::epsilon()) : eps(2*std::numeric_limits<double>::epsilon())
{ {
// create four elements used for testing // create four elements used for testing
naturalEle = this->createNaturalShape(); naturalEle = this->createNaturalShape();
...@@ -106,7 +106,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_N) ...@@ -106,7 +106,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_N)
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
//only N //only N
NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::N>(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::N>(*this->naturalEle, this->r, shape, this->dim); // TODO check dim
ASSERT_FALSE(shape.N.isZero()); ASSERT_FALSE(shape.N.isZero());
ASSERT_TRUE(shape.dNdr.isZero()); ASSERT_TRUE(shape.dNdr.isZero());
ASSERT_TRUE(shape.J.isZero()); ASSERT_TRUE(shape.J.isZero());
...@@ -122,7 +122,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_DNDR) ...@@ -122,7 +122,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_DNDR)
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
// dNdr // dNdr
NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::DNDR>(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::DNDR>(*this->naturalEle, this->r, shape, this->dim); // TODO check dim
ASSERT_TRUE(shape.N.isZero()); ASSERT_TRUE(shape.N.isZero());
ASSERT_FALSE(shape.dNdr.isZero()); ASSERT_FALSE(shape.dNdr.isZero());
ASSERT_TRUE(shape.J.isZero()); ASSERT_TRUE(shape.J.isZero());
...@@ -139,7 +139,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_N_J) ...@@ -139,7 +139,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_N_J)
// N_J // N_J
shape.setZero(); shape.setZero();
NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::N_J>(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::N_J>(*this->naturalEle, this->r, shape, this->dim); // TODO check dim
ASSERT_FALSE(shape.N.isZero()); ASSERT_FALSE(shape.N.isZero());
ASSERT_FALSE(shape.dNdr.isZero()); ASSERT_FALSE(shape.dNdr.isZero());
ASSERT_FALSE(shape.J.isZero()); ASSERT_FALSE(shape.J.isZero());
...@@ -155,7 +155,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_DNDR_ ...@@ -155,7 +155,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_DNDR_
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
// dNdr, J // dNdr, J
NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::DNDR_J>(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::DNDR_J>(*this->naturalEle, this->r, shape, this->dim); // TODO check dim
ASSERT_TRUE(shape.N.isZero()); ASSERT_TRUE(shape.N.isZero());
ASSERT_FALSE(shape.dNdr.isZero()); ASSERT_FALSE(shape.dNdr.isZero());
ASSERT_FALSE(shape.J.isZero()); ASSERT_FALSE(shape.J.isZero());
...@@ -172,7 +172,9 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_DNDX) ...@@ -172,7 +172,9 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_DNDX)
// DNDX // DNDX
shape.setZero(); shape.setZero();
NaturalCoordsMappingType::template computeShapeMatrices<ShapeMatrixType::DNDX>(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::template computeShapeMatrices<
ShapeMatrixType::DNDX>(*this->naturalEle, this->r, shape,
this->dim); // TODO check dim
ASSERT_TRUE(shape.N.isZero()); ASSERT_TRUE(shape.N.isZero());
ASSERT_FALSE(shape.dNdr.isZero()); ASSERT_FALSE(shape.dNdr.isZero());
ASSERT_FALSE(shape.J.isZero()); ASSERT_FALSE(shape.J.isZero());
...@@ -189,7 +191,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_ALL) ...@@ -189,7 +191,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckFieldSpecification_ALL)
// ALL // ALL
shape.setZero(); shape.setZero();
NaturalCoordsMappingType::computeShapeMatrices(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::computeShapeMatrices(*this->naturalEle, this->r, shape, this->dim); // TODO check dim
ASSERT_FALSE(shape.N.isZero()); ASSERT_FALSE(shape.N.isZero());
ASSERT_FALSE(shape.dNdr.isZero()); ASSERT_FALSE(shape.dNdr.isZero());
ASSERT_FALSE(shape.J.isZero()); ASSERT_FALSE(shape.J.isZero());
...@@ -205,7 +207,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckNaturalShape) ...@@ -205,7 +207,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckNaturalShape)
// identical to natural coordinates // identical to natural coordinates
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
NaturalCoordsMappingType::computeShapeMatrices(*this->naturalEle, this->r, shape); NaturalCoordsMappingType::computeShapeMatrices(*this->naturalEle, this->r, shape, this->dim); // TODO check dim
double exp_J[TestFixture::dim*TestFixture::dim]= {0.0}; double exp_J[TestFixture::dim*TestFixture::dim]= {0.0};
for (unsigned i=0; i<this->dim; i++) for (unsigned i=0; i<this->dim; i++)
exp_J[i+this->dim*i] = 1.0; exp_J[i+this->dim*i] = 1.0;
...@@ -225,7 +227,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckIrregularShape) ...@@ -225,7 +227,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckIrregularShape)
// irregular shape // irregular shape
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
NaturalCoordsMappingType::computeShapeMatrices(*this->irregularEle, this->r, shape); NaturalCoordsMappingType::computeShapeMatrices(*this->irregularEle, this->r, shape, this->dim); // TODO check dim
//std::cout << std::setprecision(16) << shape; //std::cout << std::setprecision(16) << shape;
ASSERT_ARRAY_NEAR(this->nat_exp_N, shape.N.data(), shape.N.size(), this->eps); ASSERT_ARRAY_NEAR(this->nat_exp_N, shape.N.data(), shape.N.size(), this->eps);
...@@ -243,7 +245,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckClockwise) ...@@ -243,7 +245,7 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckClockwise)
// clockwise node ordering, which is invalid) // clockwise node ordering, which is invalid)
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
NaturalCoordsMappingType::computeShapeMatrices(*this->clockwiseEle, this->r, shape); NaturalCoordsMappingType::computeShapeMatrices(*this->clockwiseEle, this->r, shape, this->dim); // TODO check dim
//std::cout << std::setprecision(16) << shape; //std::cout << std::setprecision(16) << shape;
// Inverse of the Jacobian matrix doesn't exist // Inverse of the Jacobian matrix doesn't exist
double exp_invJ[TestFixture::dim*TestFixture::dim]= {0.0}; double exp_invJ[TestFixture::dim*TestFixture::dim]= {0.0};
...@@ -263,8 +265,9 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckZeroVolume) ...@@ -263,8 +265,9 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckZeroVolume)
typedef typename TestFixture::NaturalCoordsMappingType NaturalCoordsMappingType; typedef typename TestFixture::NaturalCoordsMappingType NaturalCoordsMappingType;
ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes); ShapeMatricesType shape(this->dim, this->global_dim, this->e_nnodes);
NaturalCoordsMappingType::computeShapeMatrices(*this->zeroVolumeEle, this->r, shape); NaturalCoordsMappingType::computeShapeMatrices(
//std::cout << std::setprecision(16) << shape; *this->zeroVolumeEle, this->r, shape, this->dim); // TODO check dim
// std::cout << std::setprecision(16) << shape;
// Inverse of the Jacobian matrix doesn't exist // Inverse of the Jacobian matrix doesn't exist
double exp_invJ[TestFixture::dim*TestFixture::dim]= {0.0}; double exp_invJ[TestFixture::dim*TestFixture::dim]= {0.0};
double exp_dNdx[TestFixture::dim*TestFixture::e_nnodes]= {0.0}; double exp_dNdx[TestFixture::dim*TestFixture::e_nnodes]= {0.0};
...@@ -291,7 +294,7 @@ TEST(NumLib, FemNaturalCoordinatesMappingLineY) ...@@ -291,7 +294,7 @@ TEST(NumLib, FemNaturalCoordinatesMappingLineY)
static const unsigned dim = 1; static const unsigned dim = 1;
static const unsigned e_nnodes = 2; static const unsigned e_nnodes = 2;
ShapeMatricesType shape(dim, 2, e_nnodes); ShapeMatricesType shape(dim, 2, e_nnodes);
MappingType::computeShapeMatrices(*line, r, shape); MappingType::computeShapeMatrices(*line, r, shape, 2);
double exp_J[dim*dim]= {0.0}; double exp_J[dim*dim]= {0.0};
for (unsigned i=0; i<dim; i++) for (unsigned i=0; i<dim; i++)
......
...@@ -119,7 +119,7 @@ class NumLibFemIsoTest : public ::testing::Test, public T::TestFeType ...@@ -119,7 +119,7 @@ class NumLibFemIsoTest : public ::testing::Test, public T::TestFeType
setIdentityMatrix(dim, D); setIdentityMatrix(dim, D);
D *= conductivity; D *= conductivity;
MeshLib::ElementCoordinatesMappingLocal ele_local_coord( MeshLib::ElementCoordinatesMappingLocal ele_local_coord(
*mesh_element, MeshLib::CoordinateSystem(*mesh_element)); *mesh_element, MeshLib::CoordinateSystem(*mesh_element).getDimension());
auto R = ele_local_coord.getRotationMatrixToGlobal().topLeftCorner( auto R = ele_local_coord.getRotationMatrixToGlobal().topLeftCorner(
TestFeType::dim, TestFeType::global_dim); TestFeType::dim, TestFeType::global_dim);
globalD.noalias() = R.transpose() * (D * R); globalD.noalias() = R.transpose() * (D * R);
...@@ -161,7 +161,7 @@ template <class T> ...@@ -161,7 +161,7 @@ template <class T>
const double NumLibFemIsoTest<T>::conductivity = 1e-11; const double NumLibFemIsoTest<T>::conductivity = 1e-11;
template <class T> template <class T>
const double NumLibFemIsoTest<T>::eps = std::numeric_limits<double>::epsilon(); const double NumLibFemIsoTest<T>::eps = 2*std::numeric_limits<double>::epsilon();
template <class T> template <class T>
const unsigned NumLibFemIsoTest<T>::dim; const unsigned NumLibFemIsoTest<T>::dim;
...@@ -194,7 +194,8 @@ TYPED_TEST(NumLibFemIsoTest, CheckMassMatrix) ...@@ -194,7 +194,8 @@ TYPED_TEST(NumLibFemIsoTest, CheckMassMatrix)
for (std::size_t i=0; i < this->integration_method.getNumberOfPoints(); i++) { for (std::size_t i=0; i < this->integration_method.getNumberOfPoints(); i++) {
shape.setZero(); shape.setZero();
auto wp = this->integration_method.getWeightedPoint(i); auto wp = this->integration_method.getWeightedPoint(i);
fe.template computeShapeFunctions<ShapeMatrixType::N_J>(wp.getCoords(), shape); fe.template computeShapeFunctions<ShapeMatrixType::N_J>(
wp.getCoords(), shape, this->global_dim);
M.noalias() += shape.N.transpose() * shape.N * shape.detJ * wp.getWeight(); M.noalias() += shape.N.transpose() * shape.N * shape.detJ * wp.getWeight();
} }
//std::cout << "M=\n" << M; //std::cout << "M=\n" << M;
...@@ -218,7 +219,8 @@ TYPED_TEST(NumLibFemIsoTest, CheckLaplaceMatrix) ...@@ -218,7 +219,8 @@ TYPED_TEST(NumLibFemIsoTest, CheckLaplaceMatrix)
for (std::size_t i=0; i < this->integration_method.getNumberOfPoints(); i++) { for (std::size_t i=0; i < this->integration_method.getNumberOfPoints(); i++) {
shape.setZero(); shape.setZero();
auto wp = this->integration_method.getWeightedPoint(i); auto wp = this->integration_method.getWeightedPoint(i);
fe.template computeShapeFunctions<ShapeMatrixType::DNDX>(wp.getCoords(), shape); fe.template computeShapeFunctions<ShapeMatrixType::DNDX>(
wp.getCoords(), shape, this->global_dim);
K.noalias() += shape.dNdx.transpose() * this->globalD * shape.dNdx * shape.detJ * wp.getWeight(); K.noalias() += shape.dNdx.transpose() * this->globalD * shape.dNdx * shape.detJ * wp.getWeight();
} }
//std::cout << "K=\n" << K << std::endl; //std::cout << "K=\n" << K << std::endl;
...@@ -244,7 +246,7 @@ TYPED_TEST(NumLibFemIsoTest, CheckMassLaplaceMatrices) ...@@ -244,7 +246,7 @@ TYPED_TEST(NumLibFemIsoTest, CheckMassLaplaceMatrices)
for (std::size_t i=0; i < this->integration_method.getNumberOfPoints(); i++) { for (std::size_t i=0; i < this->integration_method.getNumberOfPoints(); i++) {
shape.setZero(); shape.setZero();
auto wp = this->integration_method.getWeightedPoint(i); auto wp = this->integration_method.getWeightedPoint(i);
fe.computeShapeFunctions(wp.getCoords(), shape); fe.computeShapeFunctions(wp.getCoords(), shape, this->global_dim);
M.noalias() += shape.N.transpose() * shape.N * shape.detJ * wp.getWeight(); M.noalias() += shape.N.transpose() * shape.N * shape.detJ * wp.getWeight();
K.noalias() += shape.dNdx.transpose() * (this->globalD * shape.dNdx) * shape.detJ * wp.getWeight(); K.noalias() += shape.dNdx.transpose() * (this->globalD * shape.dNdx) * shape.detJ * wp.getWeight();
} }
......
...@@ -71,7 +71,7 @@ TEST(NumLibFunctionInterpolationTest, Linear1DElement) ...@@ -71,7 +71,7 @@ TEST(NumLibFunctionInterpolationTest, Linear1DElement)
finite_element.computeShapeFunctions( finite_element.computeShapeFunctions(
integration_method.getWeightedPoint(0).getCoords(), integration_method.getWeightedPoint(0).getCoords(),
shape_matrix); shape_matrix, ShapeFunction::DIM); // TODO check DIM
ASSERT_EQ(2, shape_matrix.N.size()); ASSERT_EQ(2, shape_matrix.N.size());
// actual test // actual test
......
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