www.mooseframework.org
ThermalMaterialBaseBPD.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 
15 class Function;
16 
17 template <>
18 InputParameters validParams<ThermalMaterialBaseBPD>();
19 
24 {
25 public:
26  ThermalMaterialBaseBPD(const InputParameters & parameters);
27 
28 protected:
29  virtual void computeProperties() override;
30 
35  virtual void computePeridynamicsParams(const Real ave_thermal_conductivity) = 0;
36 
38  MooseVariable * _temp_var;
39  std::vector<Real> _temp;
41 
43  MaterialProperty<Real> & _bond_heat_flow;
44  MaterialProperty<Real> & _bond_dQdT;
46 
48  const MaterialProperty<Real> & _thermal_conductivity;
49 
51  Real _Kij;
52 };
ThermalMaterialBaseBPD::_Kij
Real _Kij
Micro-conductivity.
Definition: ThermalMaterialBaseBPD.h:51
ThermalMaterialBaseBPD::_thermal_conductivity
const MaterialProperty< Real > & _thermal_conductivity
Thermal conductivity.
Definition: ThermalMaterialBaseBPD.h:48
ThermalMaterialBaseBPD::_temp
std::vector< Real > _temp
Definition: ThermalMaterialBaseBPD.h:39
ThermalMaterialBaseBPD::_bond_heat_flow
MaterialProperty< Real > & _bond_heat_flow
Material properties to be stored.
Definition: ThermalMaterialBaseBPD.h:43
validParams< ThermalMaterialBaseBPD >
InputParameters validParams< ThermalMaterialBaseBPD >()
Definition: ThermalMaterialBaseBPD.C:19
PeridynamicsMaterialBase
Base class for peridynamics material models.
Definition: PeridynamicsMaterialBase.h:23
ThermalMaterialBaseBPD::computePeridynamicsParams
virtual void computePeridynamicsParams(const Real ave_thermal_conductivity)=0
Function to compute micro-conductivity.
ThermalMaterialBaseBPD::_bond_dQdT
MaterialProperty< Real > & _bond_dQdT
Definition: ThermalMaterialBaseBPD.h:44
ThermalMaterialBaseBPD::_temp_var
MooseVariable * _temp_var
Temperature variable and values.
Definition: ThermalMaterialBaseBPD.h:38
PeridynamicsMaterialBase.h
ThermalMaterialBaseBPD
Base material class for bond based peridynamic heat conduction models.
Definition: ThermalMaterialBaseBPD.h:23
ThermalMaterialBaseBPD::ThermalMaterialBaseBPD
ThermalMaterialBaseBPD(const InputParameters &parameters)
Definition: ThermalMaterialBaseBPD.C:31
ThermalMaterialBaseBPD::computeProperties
virtual void computeProperties() override
Definition: ThermalMaterialBaseBPD.C:42