|
Flow123d
release_3.0.0-1263-g7cf53c1
|
#include <heat_model.hh>


Public Types | |
| enum | Heat_bc_types { bc_inflow, bc_dirichlet, bc_total_flux, bc_diffusive_flux } |
Public Types inherited from FieldFlag | |
| typedef FlagArray< FieldFlag > | Flags |
| typedef Flags::Mask | Mask |
Public Member Functions | |
| ModelEqData () | |
Public Member Functions inherited from FieldSet | |
| DECLARE_EXCEPTION (ExcUnknownField,<< "Field set has no field with name: "<< FieldCommon::EI_Field::qval) | |
| Input::Type::Record | make_field_descriptor_type (const std::string &equation_name) const |
| void | set_field (const std::string &dest_field_name, FieldCommon &source) |
| FieldCommon * | field (const std::string &field_name) const |
| FieldCommon & | operator[] (const std::string &field_name) const |
| void | set_components (const std::vector< string > &names) |
| void | set_mesh (const Mesh &mesh) |
| void | set_input_list (Input::Array input_list, const TimeGovernor &tg) |
| void | flags_add (FieldFlag::Flags::Mask mask) |
| bool | set_time (const TimeStep &time, LimitSide limit_side) |
| void | output_type (OutputTime::DiscreteSpace rt) |
| void | mark_input_times (const TimeGovernor &tg) |
| bool | changed () const |
| bool | is_constant (Region reg) const |
| bool | is_jump_time () const |
Static Public Member Functions | |
| static constexpr const char * | name () |
| static string | default_output_field () |
| static const Input::Type::Selection & | get_bc_type_selection () |
| static IT::Selection | get_output_selection () |
Public Attributes | |
| BCField< 3, FieldValue< 3 >::Enum > | bc_type |
| Type of boundary condition (see also BC_Type) More... | |
| BCMultiField< 3, FieldValue< 3 >::Scalar > | bc_dirichlet_value |
| Dirichlet boundary condition for temperature. More... | |
| BCField< 3, FieldValue< 3 >::Scalar > | bc_flux |
| Flux value in total/diffusive flux b.c. More... | |
| BCField< 3, FieldValue< 3 >::Scalar > | bc_robin_sigma |
| Transition coefficient in total/diffusive flux b.c. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | init_temperature |
| Initial temperature. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | porosity |
| Porosity of solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | water_content |
| Water content passed from Darcy flow model. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | fluid_density |
| Density of fluid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | fluid_heat_capacity |
| Heat capacity of fluid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | fluid_heat_conductivity |
| Heat conductivity of fluid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | solid_density |
| Density of solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | solid_heat_capacity |
| Heat capacity of solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | solid_heat_conductivity |
| Heat conductivity of solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | disp_l |
| Longitudal heat dispersivity. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | disp_t |
| Transversal heat dispersivity. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | fluid_thermal_source |
| Thermal source in fluid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | solid_thermal_source |
| Thermal source in solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | fluid_heat_exchange_rate |
| Heat exchange rate in fluid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | solid_heat_exchange_rate |
| Heat exchange rate in solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | fluid_ref_temperature |
| Reference temperature in fluid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | solid_ref_temperature |
| Reference temperature in solid. More... | |
| Field< 3, FieldValue< 3 >::Scalar > | cross_section |
| Pointer to DarcyFlow field cross_section. More... | |
| MultiField< 3, FieldValue< 3 >::Scalar > | output_field |
Additional Inherited Members | |
Static Public Attributes inherited from FieldFlag | |
| static constexpr unsigned int | flags_size_ = 3 |
| Number of bits used by Field itself. More... | |
| static constexpr Mask | equation_input {1 << 0} |
| The field is data parameter of the owning equation. (default on) More... | |
| static constexpr Mask | declare_input {1 << 1} |
| The field can be set from input. The key in input field descriptor is declared. (default on) More... | |
| static constexpr Mask | allow_output {1 << 2} |
| The field can output. Is part of generated output selection. (default on) More... | |
| static constexpr Mask | input_copy = ~declare_input & equation_input |
| static constexpr Mask | in_time_term {1 << 8} |
| A field is part of time term of the equation. More... | |
| static constexpr Mask | in_main_matrix {1 << 9} |
| A field is part of main "stiffness matrix" of the equation. More... | |
| static constexpr Mask | in_rhs {1 << 10} |
| A field is part of the right hand side of the equation. More... | |
| static constexpr Mask | equation_result = allow_output & ~declare_input & ~equation_input |
| Match result fields. These are never given by input or copy of input. More... | |
| static constexpr Mask | equation_external_output = allow_output & input_copy |
| Match an output field, that can be also copy of other field. More... | |
Protected Attributes inherited from FieldSet | |
| std::vector< FieldCommon * > | field_list |
| List of all fields. More... | |
Definition at line 100 of file heat_model.hh.
| Enumerator | |
|---|---|
| bc_inflow | |
| bc_dirichlet | |
| bc_total_flux | |
| bc_diffusive_flux | |
Definition at line 103 of file heat_model.hh.
| HeatTransferModel::ModelEqData::ModelEqData | ( | ) |
Definition at line 65 of file heat_model.cc.
|
inlinestatic |
Definition at line 165 of file heat_model.hh.
|
static |
Definition at line 39 of file heat_model.cc.
|
static |
Definition at line 241 of file heat_model.cc.
|
inlinestatic |
Definition at line 163 of file heat_model.hh.
| BCMultiField<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::bc_dirichlet_value |
Dirichlet boundary condition for temperature.
Definition at line 113 of file heat_model.hh.
| BCField<3, FieldValue<3>::Scalar > HeatTransferModel::ModelEqData::bc_flux |
Flux value in total/diffusive flux b.c.
Definition at line 115 of file heat_model.hh.
| BCField<3, FieldValue<3>::Scalar > HeatTransferModel::ModelEqData::bc_robin_sigma |
Transition coefficient in total/diffusive flux b.c.
Definition at line 117 of file heat_model.hh.
| BCField<3, FieldValue<3>::Enum > HeatTransferModel::ModelEqData::bc_type |
Type of boundary condition (see also BC_Type)
Definition at line 111 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar > HeatTransferModel::ModelEqData::cross_section |
Pointer to DarcyFlow field cross_section.
Definition at line 154 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::disp_l |
Longitudal heat dispersivity.
Definition at line 137 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::disp_t |
Transversal heat dispersivity.
Definition at line 139 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::fluid_density |
Density of fluid.
Definition at line 125 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::fluid_heat_capacity |
Heat capacity of fluid.
Definition at line 127 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::fluid_heat_conductivity |
Heat conductivity of fluid.
Definition at line 129 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::fluid_heat_exchange_rate |
Heat exchange rate in fluid.
Definition at line 145 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::fluid_ref_temperature |
Reference temperature in fluid.
Definition at line 149 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::fluid_thermal_source |
Thermal source in fluid.
Definition at line 141 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::init_temperature |
Initial temperature.
Definition at line 119 of file heat_model.hh.
| MultiField<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::output_field |
Definition at line 157 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::porosity |
Porosity of solid.
Definition at line 121 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::solid_density |
Density of solid.
Definition at line 131 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::solid_heat_capacity |
Heat capacity of solid.
Definition at line 133 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::solid_heat_conductivity |
Heat conductivity of solid.
Definition at line 135 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::solid_heat_exchange_rate |
Heat exchange rate in solid.
Definition at line 147 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::solid_ref_temperature |
Reference temperature in solid.
Definition at line 151 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::solid_thermal_source |
Thermal source in solid.
Definition at line 143 of file heat_model.hh.
| Field<3, FieldValue<3>::Scalar> HeatTransferModel::ModelEqData::water_content |
Water content passed from Darcy flow model.
Definition at line 123 of file heat_model.hh.
1.8.11