https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MeshBaseDiagnosticsUtils.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12#include "MooseTypes.h"
13
14class ConsoleStream;
15namespace libMesh
16{
17class MeshBase;
18}
19
21{
22void checkNonConformalMesh(const std::unique_ptr<libMesh::MeshBase> & mesh,
23 const ConsoleStream & console,
24 const unsigned int num_outputs,
25 const Real conformality_tol,
26 unsigned int & num_nonconformal_nodes);
27
28bool checkFirstOrderEdgeOverlap(const Elem & edge1,
29 const Elem & edge2,
30 Point & intersection_point,
31 const Real intersection_tol);
32}
A helper class for re-directing output streams to Console output objects form MooseObjects.
bool checkFirstOrderEdgeOverlap(const Elem &edge1, const Elem &edge2, Point &intersection_point, const Real intersection_tol)
void checkNonConformalMesh(const std::unique_ptr< libMesh::MeshBase > &mesh, const ConsoleStream &console, const unsigned int num_outputs, const Real conformality_tol, unsigned int &num_nonconformal_nodes)
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...