https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MFEMNLConvectiveHeatFluxBC.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#ifdef MOOSE_MFEM_ENABLED
11
12#pragma once
13
14#include "MFEMIntegratedBC.h"
15
22{
23public:
25
28
30 virtual mfem::NonlinearFormIntegrator * createNLIntegrator() override;
31
32protected:
34 mfem::Coefficient & _heat_transfer_coef;
36 mfem::Coefficient & _d_heat_transfer_dT_coef;
38 mfem::Coefficient & _T_inf_coef;
40 mfem::Coefficient & _d_T_inf_dT_coef;
42 mfem::Coefficient & _T_coef;
43};
44
45#endif
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
mfem::Coefficient & _heat_transfer_coef
Heat transfer coefficient h(T).
mfem::Coefficient & _T_inf_coef
Far-field temperature T_inf(T).
mfem::Coefficient & _d_T_inf_dT_coef
Derivative dT_inf/dT of the far-field temperature coefficient.
static InputParameters validParams()
virtual mfem::NonlinearFormIntegrator * createNLIntegrator() override
Create MFEM non-linear integrator to apply to the LHS of the weak form. Ownership managed by the call...
mfem::Coefficient & _T_coef
Trial variable temperature T.
mfem::Coefficient & _d_heat_transfer_dT_coef
Derivative dh/dT of the heat transfer coefficient.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131