MOAB: Mesh Oriented datABase  (version 5.4.1)
MBMesquite::ScalarMultiplyQualityMetric Class Reference

Multiplies quality metric value by a number (a double). More...

#include <ScalarMultiplyQualityMetric.hpp>

+ Inheritance diagram for MBMesquite::ScalarMultiplyQualityMetric:
+ Collaboration diagram for MBMesquite::ScalarMultiplyQualityMetric:

Public Member Functions

 ScalarMultiplyQualityMetric (QualityMetric *metric, double scale)
 ~ScalarMultiplyQualityMetric ()
MetricType get_metric_type () const
std::string get_name () const
int get_negate_flag () const
 1 if metric should be minimized, -1 if metric should be maximized.
void get_evaluations (PatchData &pd, std::vector< size_t > &handles, bool free_vertices_only, MsqError &err)
 Get locations at which metric can be evaluated.
bool evaluate (PatchData &pd, size_t handle, double &value, MsqError &err)
 Get metric value at a logical location in the patch.
bool evaluate_with_indices (PatchData &pd, size_t handle, double &value, std::vector< size_t > &indices, MsqError &err)
 Get metric value at a logical location in the patch.
bool evaluate_with_gradient (PatchData &pd, size_t handle, double &value, std::vector< size_t > &indices, std::vector< Vector3D > &gradient, MsqError &err)
 Get metric value and gradient at a logical location in the patch.
bool evaluate_with_Hessian (PatchData &pd, size_t handle, double &value, std::vector< size_t > &indices, std::vector< Vector3D > &gradient, std::vector< Matrix3D > &Hessian, MsqError &err)
 Get metric value and deravitives at a logical location in the patch.

Private Attributes

QualityMetricmMetric
double mScale

Detailed Description

Multiplies quality metric value by a number (a double).

Definition at line 49 of file ScalarMultiplyQualityMetric.hpp.


Constructor & Destructor Documentation

Definition at line 52 of file ScalarMultiplyQualityMetric.hpp.

: mMetric( metric ), mScale( scale ) {}

Member Function Documentation

bool ScalarMultiplyQualityMetric::evaluate ( PatchData pd,
size_t  handle,
double &  value,
MsqError err 
) [virtual]

Get metric value at a logical location in the patch.

Evaluate the metric at one location in the PatchData.

Parameters:
pdThe patch.
handleThe location in the patch (as passed back from get_evaluations).
valueThe output metric value.

Implements MBMesquite::QualityMetric.

Definition at line 55 of file ScalarMultiplyQualityMetric.cpp.

References MBMesquite::QualityMetric::evaluate(), mMetric, and mScale.

{
    bool rval = mMetric->evaluate( pd, handle, value, err );
    value *= mScale;
    return rval;
}
bool ScalarMultiplyQualityMetric::evaluate_with_gradient ( PatchData pd,
size_t  handle,
double &  value,
std::vector< size_t > &  indices,
std::vector< Vector3D > &  gradient,
MsqError err 
) [virtual]

Get metric value and gradient at a logical location in the patch.

Evaluate the metric at one location in the PatchData.

Parameters:
pdThe patch.
handleThe location in the patch (as passed back from get_evaluations).
valueThe output metric value.
indicesThe free vertices that the evaluation is a function of, specified as vertex indices in the PatchData.
gradientThe gradient of the metric as a function of the coordinates of the free vertices passed back in the indices list.

Reimplemented from MBMesquite::QualityMetric.

Definition at line 73 of file ScalarMultiplyQualityMetric.cpp.

References MBMesquite::QualityMetric::evaluate_with_gradient(), mMetric, mScale, and MSQ_CHKERR.

{
    bool rval = mMetric->evaluate_with_gradient( pd, handle, value, indices, gradient, err );
    value *= mScale;
    for( std::vector< Vector3D >::iterator i = gradient.begin(); i != gradient.end(); ++i )
        *i *= mScale;
    return !MSQ_CHKERR( err ) && rval;
}
bool ScalarMultiplyQualityMetric::evaluate_with_Hessian ( PatchData pd,
size_t  handle,
double &  value,
std::vector< size_t > &  indices,
std::vector< Vector3D > &  gradient,
std::vector< Matrix3D > &  Hessian,
MsqError err 
) [virtual]

Get metric value and deravitives at a logical location in the patch.

Evaluate the metric at one location in the PatchData.

Parameters:
pdThe patch.
handleThe location in the patch (as passed back from get_evaluations).
valueThe output metric value.
indicesThe free vertices that the evaluation is a function of, specified as vertex indices in the PatchData.
gradientThe gradient of the metric as a function of the coordinates of the free vertices passed back in the indices list.
HessianThe Hessian of the metric as a function of the coordinates. The Hessian is passed back as the upper-triangular portion of the matrix in row-major order, where each Matrix3D is the portion of the Hessian with respect to the vertices at the corresponding positions in the indices list.

Reimplemented from MBMesquite::QualityMetric.

Definition at line 87 of file ScalarMultiplyQualityMetric.cpp.

References MBMesquite::QualityMetric::evaluate_with_Hessian(), mMetric, mScale, and MSQ_CHKERR.

{
    bool rval = mMetric->evaluate_with_Hessian( pd, handle, value, indices, gradient, Hessian, err );
    value *= mScale;
    for( std::vector< Vector3D >::iterator i = gradient.begin(); i != gradient.end(); ++i )
        *i *= mScale;
    for( std::vector< Matrix3D >::iterator j = Hessian.begin(); j != Hessian.end(); ++j )
        *j *= mScale;
    return !MSQ_CHKERR( err ) && rval;
}
bool ScalarMultiplyQualityMetric::evaluate_with_indices ( PatchData pd,
size_t  handle,
double &  value,
std::vector< size_t > &  indices,
MsqError err 
) [virtual]

Get metric value at a logical location in the patch.

Evaluate the metric at one location in the PatchData.

Parameters:
pdThe patch.
handleThe location in the patch (as passed back from get_evaluations).
valueThe output metric value.
indicesThe free vertices that the evaluation is a function of, specified as vertex indices in the PatchData.

Implements MBMesquite::QualityMetric.

Definition at line 62 of file ScalarMultiplyQualityMetric.cpp.

References MBMesquite::QualityMetric::evaluate_with_indices(), mMetric, mScale, and MSQ_CHKERR.

{
    bool rval = mMetric->evaluate_with_indices( pd, handle, value, indices, err );
    value *= mScale;
    return !MSQ_CHKERR( err ) && rval;
}
void ScalarMultiplyQualityMetric::get_evaluations ( PatchData pd,
std::vector< size_t > &  handles,
bool  free_vertices_only,
MsqError err 
) [virtual]

Get locations at which metric can be evaluated.

Different metrics are evaluated for different things within a patch. For example, an element-based metric will be evaluated once for each element in patch, a vertex-based metric once for each veretx, and a target/sample-point based metric will be evaluated once for each samle point in each element. This method returns a list of handles, one for each location in the patch at which the metric can be evaluated. The handle values are used as input to the evaluate methods.

Parameters:
pdThe patch
handlesOutput list of handles
free_vertices_onlyIf true, only pass back evaluation points that depend on at least one free vertex.

Implements MBMesquite::QualityMetric.

Definition at line 47 of file ScalarMultiplyQualityMetric.cpp.

References MBMesquite::QualityMetric::get_evaluations(), mMetric, and MSQ_CHKERR.

{
    mMetric->get_evaluations( pd, handles, free_vertices_only, err );MSQ_CHKERR( err );
}
std::string ScalarMultiplyQualityMetric::get_name ( ) const [virtual]

Implements MBMesquite::QualityMetric.

Definition at line 42 of file ScalarMultiplyQualityMetric.cpp.

References MBMesquite::QualityMetric::get_name(), and mMetric.

{
    return std::string( "Scale(" ) + mMetric->get_name() + ")";
}

1 if metric should be minimized, -1 if metric should be maximized.

Implements MBMesquite::QualityMetric.

Definition at line 63 of file ScalarMultiplyQualityMetric.hpp.

References MBMesquite::QualityMetric::get_negate_flag(), and mMetric.

    {
        return mMetric->get_negate_flag();
    }

Member Data Documentation

List of all members.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines