Line data Source code
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 : #include "MatAnisoDiffusion.h" 11 : 12 : registerMooseObject("PhaseFieldApp", MatAnisoDiffusion); 13 : registerMooseObject("PhaseFieldApp", ADMatAnisoDiffusion); 14 : 15 : template <bool is_ad> 16 : InputParameters 17 72 : MatAnisoDiffusionTempl<is_ad>::validParams() 18 : { 19 72 : InputParameters params = MatAnisoDiffusionBaseParent<is_ad>::validParams(); 20 72 : params.addClassDescription( 21 : "Diffusion equation Kernel that takes an anisotropic Diffusivity from a material property"); 22 72 : return params; 23 0 : } 24 : 25 : template <bool is_ad> 26 38 : MatAnisoDiffusionTempl<is_ad>::MatAnisoDiffusionTempl(const InputParameters & parameters) 27 38 : : MatAnisoDiffusionBaseParent<is_ad>(parameters) 28 : { 29 38 : } 30 : 31 : template class MatAnisoDiffusionTempl<false>; 32 : template class MatAnisoDiffusionTempl<true>;