Skip to content
Snippets Groups Projects
Commit bdc2edbe authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

hack: add explicit cast to FieldVector to compile the code again after the...

hack: add explicit cast to FieldVector to compile the code again after the introduction of DenseVector in dune-common

[[Imported from SVN: r6390]]
parent dd31ef3c
No related branches found
No related tags found
No related merge requests found
......@@ -458,7 +458,7 @@ void computeTotalForceAndTorque(const BoundaryPatchBase<GridView>& interface,
// Sum up the total torque \int (x - x_0) \times f dx
Dune::FieldVector<double,dim> worldPos = it->geometry().global(quadPos);
outputTorque.axpy(quad[qp].weight()*integrationElement,
crossProduct(worldPos - center, localPressure));
crossProduct(Dune::FieldVector<double,dim>(worldPos - center), localPressure));
}
......@@ -568,7 +568,7 @@ void computeAveragePressure(const Dune::FieldVector<double,GridType::dimension>&
phi_i[j] = shapeFunctionValues[i];
mu_tilde[i][j].axpy(quad[qp].weight() * integrationElement,
crossProduct(worldPos-crossSection.r, phi_i));
crossProduct(Dune::FieldVector<double,dim>(worldPos-crossSection.r), phi_i));
}
......
......@@ -21,7 +21,7 @@ void makeStraightRod(std::vector<RigidBodyMotion<dim> >& rod, int n,
Dune::FieldVector<double,3> zAxis(0);
zAxis[2] = 1;
Dune::FieldVector<double,3> axis = crossProduct(end-beginning, zAxis);
Dune::FieldVector<double,3> axis = crossProduct(Dune::FieldVector<double,3>(end-beginning), zAxis);
if (axis.two_norm() != 0)
axis /= -axis.two_norm();
......
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