remove ASMu3D::getParametricVolume
method is not used
This commit is contained in:
@@ -684,27 +684,6 @@ double ASMu3D::getParametricArea (int iel, int dir) const
|
||||
}
|
||||
|
||||
|
||||
double ASMu3D::getParametricVolume (int iel) const
|
||||
{
|
||||
#ifdef INDEX_CHECK
|
||||
if (iel < 1 || (size_t)iel > MNPC.size())
|
||||
{
|
||||
std::cerr <<" *** ASMu3D::getParametricArea: Element index "<< iel
|
||||
<<" out of range [1,"<< MNPC.size() <<"]."<< std::endl;
|
||||
return DERR;
|
||||
}
|
||||
#endif
|
||||
if (MNPC[iel-1].empty())
|
||||
return 0.0;
|
||||
|
||||
const LR::Element* el = lrspline->getElement(iel-1);
|
||||
double du = el->getParmax(0) - el->getParmin(0);
|
||||
double dv = el->getParmax(1) - el->getParmin(1);
|
||||
double dw = el->getParmax(2) - el->getParmin(2);
|
||||
return du*dv*dw;
|
||||
}
|
||||
|
||||
|
||||
bool ASMu3D::getElementCoordinates (Matrix& X, int iel, bool forceItg) const
|
||||
{
|
||||
#ifdef INDEX_CHECK
|
||||
|
||||
@@ -617,9 +617,6 @@ protected:
|
||||
//! \param[in] dir Parameter direction (0,1,2)
|
||||
bool getQuasiInterplParameters(RealArray& prm, int dir) const;
|
||||
|
||||
//! \brief Returns the volume in the parameter space for an element.
|
||||
//! \param[in] iel 1-based element index
|
||||
double getParametricVolume(int iel) const;
|
||||
//! \brief Returns boundary face area in the parameter space for an element.
|
||||
//! \param[in] iel 1-based element index
|
||||
//! \param[in] dir Local face index of the boundary face
|
||||
|
||||
Reference in New Issue
Block a user