Action that creates the necessary objects, for the solid side, to couple a solid heat conduction region to a 1-D flow channel via convective heat transfer. More...
#include <CoupledHeatTransferAction.h>
Public Types | |
typedef DataFileName | DataFileParameterType |
Public Member Functions | |
CoupledHeatTransferAction (const InputParameters ¶ms) | |
virtual void | act () override |
void | timedAct () |
virtual void | addRelationshipManagers (Moose::RelationshipManagerType when_type) |
MooseObjectName | uniqueActionName () const |
const std::string & | specificTaskName () const |
const std::set< std::string > & | getAllTasks () const |
void | appendTask (const std::string &task) |
MooseApp & | getMooseApp () const |
const std::string & | type () const |
virtual const std::string & | name () const |
std::string | typeAndName () const |
std::string | errorPrefix (const std::string &error_type) const |
void | callMooseError (std::string msg, const bool with_prefix) const |
MooseObjectParameterName | uniqueParameterName (const std::string ¶meter_name) const |
const InputParameters & | parameters () const |
MooseObjectName | uniqueName () const |
const T & | getParam (const std::string &name) const |
std::vector< std::pair< T1, T2 > > | getParam (const std::string ¶m1, const std::string ¶m2) const |
const T * | queryParam (const std::string &name) const |
const T & | getRenamedParam (const std::string &old_name, const std::string &new_name) const |
T | getCheckedPointerParam (const std::string &name, const std::string &error_string="") const |
bool | isParamValid (const std::string &name) const |
bool | isParamSetByUser (const std::string &nm) const |
void | paramError (const std::string ¶m, Args... args) const |
void | paramWarning (const std::string ¶m, Args... args) const |
void | paramInfo (const std::string ¶m, Args... args) const |
void | connectControllableParams (const std::string ¶meter, const std::string &object_type, const std::string &object_name, const std::string &object_parameter) const |
void | mooseError (Args &&... args) const |
void | mooseErrorNonPrefixed (Args &&... args) const |
void | mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args) const |
void | mooseWarning (Args &&... args) const |
void | mooseWarningNonPrefixed (Args &&... args) const |
void | mooseDeprecated (Args &&... args) const |
void | mooseInfo (Args &&... args) const |
std::string | getDataFileName (const std::string ¶m) const |
std::string | getDataFileNameByName (const std::string &relative_path) const |
std::string | getDataFilePath (const std::string &relative_path) const |
PerfGraph & | perfGraph () |
const Parallel::Communicator & | comm () const |
processor_id_type | n_processors () const |
processor_id_type | processor_id () const |
Static Public Member Functions | |
static InputParameters | validParams () |
Public Attributes | |
const ConsoleStream | _console |
Static Public Attributes | |
static constexpr auto | SYSTEM |
static constexpr auto | NAME |
Protected Member Functions | |
virtual void | addBCs () |
virtual void | addUserObjects () |
virtual void | addTransfers () |
bool | addRelationshipManagers (Moose::RelationshipManagerType when_type, const InputParameters &moose_object_pars) |
void | associateWithParameter (const std::string ¶m_name, InputParameters ¶ms) const |
void | associateWithParameter (const InputParameters &from_params, const std::string ¶m_name, InputParameters ¶ms) const |
const T & | getMeshProperty (const std::string &data_name, const std::string &prefix) |
const T & | getMeshProperty (const std::string &data_name) |
bool | hasMeshProperty (const std::string &data_name, const std::string &prefix) const |
bool | hasMeshProperty (const std::string &data_name, const std::string &prefix) const |
bool | hasMeshProperty (const std::string &data_name) const |
bool | hasMeshProperty (const std::string &data_name) const |
std::string | meshPropertyName (const std::string &data_name) const |
PerfID | registerTimedSection (const std::string §ion_name, const unsigned int level) const |
PerfID | registerTimedSection (const std::string §ion_name, const unsigned int level, const std::string &live_message, const bool print_dots=true) const |
std::string | timedSectionName (const std::string §ion_name) const |
Static Protected Member Functions | |
static std::string | meshPropertyName (const std::string &data_name, const std::string &prefix) |
Protected Attributes | |
std::vector< BoundaryName > | _boundary |
Boundary where the BC is applied. More... | |
const VariableName | _T_solid_var_name |
Solid side temperature variable name. More... | |
const VariableName | _T_wall_var_name |
Variable on the flow channel side into which to transfer the solid temperature. More... | |
const std::vector< VariableName > | _T_fluid_var_names |
Variable(s) on the solid side into which to transfer the fluid temperature(s) More... | |
const std::vector< VariableName > | _htc_var_names |
Variable(s) on the solid side into which to transfer the heat transfer coefficient(s) More... | |
std::vector< VariableName > | _kappa_var_names |
Variables on the solid side into which to transfer the wall contact fractions. More... | |
const unsigned int | _n_phases |
Number of fluid phases. More... | |
const UserObjectName | _T_wall_user_object_name |
User object name with solid temperature. More... | |
std::vector< UserObjectName > | _T_fluid_user_object_names |
Spatial user object(s) holding the fluid temperature values. More... | |
std::vector< UserObjectName > | _htc_user_object_names |
Spatial user object(s) holding the heat transfer coefficient values. More... | |
std::vector< UserObjectName > | _kappa_user_object_names |
Spatial user objects holding the wall contact fraction values. More... | |
MultiAppName | _multi_app_name |
Name of the THM multi-app. More... | |
std::string | _registered_identifier |
std::string | _specific_task_name |
std::set< std::string > | _all_tasks |
ActionWarehouse & | _awh |
const std::string & | _current_task |
std::shared_ptr< MooseMesh > & | _mesh |
std::shared_ptr< MooseMesh > & | _displaced_mesh |
std::shared_ptr< FEProblemBase > & | _problem |
PerfID | _act_timer |
MooseApp & | _app |
const std::string | _type |
const std::string | _name |
const InputParameters & | _pars |
Factory & | _factory |
ActionFactory & | _action_factory |
MooseApp & | _pg_moose_app |
const std::string | _prefix |
const Parallel::Communicator & | _communicator |
Action that creates the necessary objects, for the solid side, to couple a solid heat conduction region to a 1-D flow channel via convective heat transfer.
Definition at line 20 of file CoupledHeatTransferAction.h.
CoupledHeatTransferAction::CoupledHeatTransferAction | ( | const InputParameters & | params | ) |
Definition at line 97 of file CoupledHeatTransferAction.C.
|
overridevirtual |
Implements Action.
Definition at line 163 of file CoupledHeatTransferAction.C.
|
protectedvirtual |
Definition at line 174 of file CoupledHeatTransferAction.C.
Referenced by act().
|
protectedvirtual |
Definition at line 238 of file CoupledHeatTransferAction.C.
Referenced by act().
|
protectedvirtual |
Definition at line 191 of file CoupledHeatTransferAction.C.
Referenced by act().
|
static |
Definition at line 19 of file CoupledHeatTransferAction.C.
|
protected |
Boundary where the BC is applied.
Definition at line 34 of file CoupledHeatTransferAction.h.
Referenced by addBCs(), and addUserObjects().
|
protected |
Spatial user object(s) holding the heat transfer coefficient values.
Definition at line 61 of file CoupledHeatTransferAction.h.
Referenced by addTransfers(), and CoupledHeatTransferAction().
|
protected |
Variable(s) on the solid side into which to transfer the heat transfer coefficient(s)
Definition at line 46 of file CoupledHeatTransferAction.h.
Referenced by addBCs(), addTransfers(), and CoupledHeatTransferAction().
|
protected |
Spatial user objects holding the wall contact fraction values.
Definition at line 64 of file CoupledHeatTransferAction.h.
Referenced by addTransfers(), and CoupledHeatTransferAction().
|
protected |
Variables on the solid side into which to transfer the wall contact fractions.
Definition at line 49 of file CoupledHeatTransferAction.h.
Referenced by addBCs(), addTransfers(), and CoupledHeatTransferAction().
|
protected |
Name of the THM multi-app.
Definition at line 67 of file CoupledHeatTransferAction.h.
Referenced by addTransfers().
|
protected |
Number of fluid phases.
Definition at line 52 of file CoupledHeatTransferAction.h.
Referenced by addBCs(), addTransfers(), and CoupledHeatTransferAction().
|
protected |
Spatial user object(s) holding the fluid temperature values.
Definition at line 58 of file CoupledHeatTransferAction.h.
Referenced by addTransfers(), and CoupledHeatTransferAction().
|
protected |
Variable(s) on the solid side into which to transfer the fluid temperature(s)
Definition at line 43 of file CoupledHeatTransferAction.h.
Referenced by addBCs(), and addTransfers().
|
protected |
Solid side temperature variable name.
Definition at line 37 of file CoupledHeatTransferAction.h.
Referenced by addBCs(), and addUserObjects().
|
protected |
User object name with solid temperature.
Definition at line 55 of file CoupledHeatTransferAction.h.
Referenced by addTransfers(), and addUserObjects().
|
protected |
Variable on the flow channel side into which to transfer the solid temperature.
Definition at line 40 of file CoupledHeatTransferAction.h.
Referenced by addTransfers().