www.mooseframework.org
LineSegmentCutUserObject.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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
16 
17 template <>
19 
21 {
22 public:
23  LineSegmentCutUserObject(const InputParameters & parameters);
24 
25  virtual const std::vector<Point>
26  getCrackFrontPoints(unsigned int num_crack_front_points) const override;
27 
28 protected:
29  std::vector<Real> _cut_data;
30 };
31 
GeometricCut2DUserObject.h
LineSegmentCutUserObject::LineSegmentCutUserObject
LineSegmentCutUserObject(const InputParameters &parameters)
Definition: LineSegmentCutUserObject.C:33
GeometricCut2DUserObject
Definition: GeometricCut2DUserObject.h:20
LineSegmentCutUserObject::getCrackFrontPoints
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
Definition: LineSegmentCutUserObject.C:79
LineSegmentCutUserObject
Definition: LineSegmentCutUserObject.h:20
validParams< LineSegmentCutUserObject >
InputParameters validParams< LineSegmentCutUserObject >()
Definition: LineSegmentCutUserObject.C:16
LineSegmentCutUserObject::_cut_data
std::vector< Real > _cut_data
Definition: LineSegmentCutUserObject.h:29