https://mooseframework.inl.gov
Loading...
Searching...
No Matches
CrackFrontData.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
14// libMesh
15#include "libmesh/node.h"
16
17class MooseMesh;
18
19// Forward Declarations
20
22{
23public:
25
27
28 virtual void initialize() override;
29 virtual void execute() override;
30 virtual void finalize() override;
31
35 virtual Real getValue() const override;
36
37protected:
39 const unsigned int _crack_front_point_index;
40 const Node * _crack_front_node;
42 std::string _var_name;
43 const Real _scale_factor;
45 Real _value;
46};
const Node * _crack_front_node
virtual Real getValue() const override
This will return the degrees of freedom in the system.
std::string _var_name
const Real _scale_factor
virtual void initialize() override
static InputParameters validParams()
const CrackFrontDefinition *const _crack_front_definition
MooseMesh & _mesh
virtual void execute() override
const unsigned int _crack_front_point_index
MooseVariable & _field_var
virtual void finalize() override
Class used in fracture integrals to define geometric characteristics of the crack front.
const InputParameters & parameters() const