https://mooseframework.inl.gov
LineSegmentCutSetUserObject.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 
13 
14 // Forward declarations
15 
17 {
18 public:
20 
22 
23  virtual const std::vector<Point>
24 
25  getCrackFrontPoints(unsigned int num_crack_front_points) const override;
26 
27  virtual const std::vector<RealVectorValue>
28 
29  getCrackPlaneNormals(unsigned int num_crack_front_points) const override;
30 
34  virtual std::vector<Real> getCutData() const { return _cut_data; };
35 
36 protected:
37  std::vector<Real> _cut_data;
38 };
virtual const std::vector< RealVectorValue > getCrackPlaneNormals(unsigned int num_crack_front_points) const override
get a set of normal vectors along a crack front from a XFEM GeometricCutUserObject ...
static InputParameters validParams()
LineSegmentCutSetUserObject(const InputParameters &parameters)
virtual std::vector< Real > getCutData() const
Get the cut location information.
const InputParameters & parameters() const
virtual const std::vector< Point > getCrackFrontPoints(unsigned int num_crack_front_points) const override
get a set of points along a crack front from a XFEM GeometricCutUserObject