Revision 17a2a33724c2d2c51cdb2b5038f47babb8611a29 authored by Dmitry Yu. Naumov on 08 March 2021, 12:34:36 UTC, committed by Dmitry Yu. Naumov on 08 March 2021, 12:34:36 UTC
GMSH2OGS; extract boundary meshes

See merge request ogs/ogs!3482
2 parent s d93b2a6 + 63005e5
Raw File
RadiusEdgeRatioMetric.h
/**
 * \file
 * \author Karsten Rink
 * \date   2014-09-02
 * \brief  Definition of the RadiusEdgeRatioMetric class.
 *
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include "ElementQualityMetric.h"

namespace MeshLib
{

/**
 * Calculates the quality of mesh elements based on the ratio between
 * radius of the smallest enclosing sphere and the shortest element edge
 */
class RadiusEdgeRatioMetric : public ElementQualityMetric
{
public:
    explicit RadiusEdgeRatioMetric(Mesh const& mesh);
    ~RadiusEdgeRatioMetric() override = default;

    void calculateQuality() override;
};
}  // namespace MeshLib
back to top