https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ADOneDHeatFluxBase.C
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#include "ADOneDHeatFluxBase.h"
12
15{
17 params.addRequiredParam<UserObjectName>(
18 "q_uo", "The name of the user object that computed the heat flux");
19 params.addClassDescription("Base class for a heat flux in the energy equation for 1-phase flow");
20 return params;
21}
22
24 : ADKernel(parameters), _q_uo(getUserObject<ADHeatFluxFromHeatStructureBaseUserObject>("q_uo"))
25{
26}
Base class for caching heat flux between a flow channel and a heat structure.
static InputParameters validParams()
ADOneDHeatFluxBase(const InputParameters &parameters)
static InputParameters validParams()
void addRequiredParam(const std::string &name, const std::string &doc_string)
void addClassDescription(const std::string &doc_string)