https://mooseframework.inl.gov
CohesiveZoneMortarUserObjectAux.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 "AuxKernel.h"
13 #include "MooseEnum.h"
14 
15 #include <functional>
16 #include <map>
17 #include <tuple>
18 #include <string>
19 
20 class UserObject;
22 
27 {
28 public:
30 
32 
33 protected:
36  {
41  };
42 
43  virtual Real computeValue() override;
44 
47 
50 
54 
56  std::map<CohesiveQuantityEnum, std::tuple<std::string, const void *, std::function<Real(void)>>>
58 
61 };
const UserObject & _user_object
The user object inputted by the user to obtain the cohesive zone quantities.
static const MooseEnum _cohesive_zone_quantities
Available cohesive zone model quantities.
CohesiveZoneMortarUserObjectAux(const InputParameters &parameters)
const CohesiveQuantityEnum _cohesive_zone_quantity
What penalty mortar contact quantity we&#39;d like to output.
Auxiliary kernel to output mortar cohesive zone model quantities of interest.
const BilinearMixedModeCohesiveZoneModel * _cohesive_zone_uo
Cast pointers to specific UOs.
CohesiveQuantityEnum
What type of cohesive zone quantity we are querying.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
std::map< CohesiveQuantityEnum, std::tuple< std::string, const void *, std::function< Real(void)> > > _outputs
Definition of the output quantities and.
User object that interface pressure resulting from a simple traction separation law.
const InputParameters & parameters() const