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 : #pragma once 11 : 12 : #include "InterfaceQpMaterialPropertyBaseUserObject.h" 13 : 14 : /** 15 : * Specialization of InterfaceQpMaterialPropertyBaseUserObject for Real material properties. 16 : */ 17 : class InterfaceQpMaterialPropertyRealUO : public InterfaceQpMaterialPropertyBaseUserObject<Real> 18 : { 19 : public: 20 : static InputParameters validParams(); 21 : /** 22 : * Class constructor 23 : * @param parameters The input parameters for this object 24 : */ 25 : InterfaceQpMaterialPropertyRealUO(const InputParameters & parameters); 26 72 : virtual ~InterfaceQpMaterialPropertyRealUO(){}; 27 : 28 : protected: 29 : /** 30 : * return the material property value at the give qp 31 : **/ 32 5552 : virtual Real computeScalarMaterialProperty(const MaterialProperty<Real> * p, 33 : const unsigned int qp) override final 34 : { 35 5552 : return (*p)[qp]; 36 : } 37 : };