- temperatureTemperature
C++ Type:std::vector<VariableName>
Unit:(no unit assumed)
Controllable:No
Description:Temperature
Tungsten Thermal Properties Material
Computes tungsten thermal properties as a function of temperature
This class provides tungsten's thermal conductivity, specific heat, and density as material properties as a function of temperature based on the models listed in Milner et al. (2024).
Thermal conductivity
For temperature range: 1 ≤ T < 55 K, the thermal conductivity is defined as
(1)
where:
is the thermal conductivity
[W/m.K]
,is the temperature
[K]
,
and the model parameters values provided in Table 1.
Table 1: Parameters values for the thermal conductivity model from Eq. (1).
Constant | Value | Unit |
---|---|---|
N | 8.740E-01 | [-] |
A0 | 7.348E+05 | [W/m.K] |
A1 | 2.544E+01 | [-] |
A2 | -8.304E+03 | [-] |
A3 | 1.180E+06 | [-] |
For temperature range 55 ≤ ≤ 3653 K, the thermal conductivity is defined as
(2)
where:
is the thermal conductivity
[W/m.K]
,is the temperature
[K]
,
and the model parameters values provided in Table 2.
Table 2: Parameters values for the thermal conductivity model from Eq. (2).
Constant | Value | Unit |
---|---|---|
B0 | -3.679E+00 | [W/m.K] |
B1 | 1.181E+02 | [W/m.K] |
B2 | 5.879E+01 | [W/m.K] |
B3 | 2.867E+00 | [W/m.K] |
C0 | -2.052E-02 | [-] |
C1 | 4.741E-01 | [-] |
Specific Heat
For temperature range: 11 ≤ < 293 K, the specific heat is described as:
(3)
where:
(T)$ is the specific heat
[J/g.K]
,is the temperature
[K]
,
and the model parameters values provided in Table 3.
Table 3: Parameters values for the specific heat model from Eq. (3).
Constant | Value | Unit |
---|---|---|
N | 3.030E+00 | [-] |
A0 | 3.103E+02 | [J/g.K] |
A1 | -8.815E+00 | [-] |
A2 | 1.295E+02 | [-] |
A3 | 1.874E+03 | [-] |
For temperature range: 293 ≤ < 3700 K, the specific heat is defined as
(4)
where:
(T)$ is the specific heat
[J/g.K]
,is the temperature
[K]
,
and the model parameters values provided in Table 4.
Table 4: Parameters values for the specific heat model from Eq. (4).
Constant | Value | Unit |
---|---|---|
B0 | 1.301E-01 | [J/g.K] |
B1 | 2.225E-02 | [J/g.K] |
B2 | -7.224E-03 | [J/g.K] |
B3 | 3.539E-03 | [J/g.K] |
B | -3.061E-04 | [J/g.K] |
Density
For the temperature range: 5 ≤ < 3600 K, the density is defined as (5)
where:
is the density
[Kg/m
]
,is the room temperature density, set to 19250
[Kg/m
]
,is the temperature
[K]
,
and the thermal expansion [%]
is given by:
(6)
The values of the model parameters in Eq. (6) are provided in Table 5 for low temperatures (5 ≤ < 294 K), and Table 6 for high temperatures (294 ≤ ≤ 3600 K).
Table 5: Parameters values for the thermal expansion model from Eq. (6) for 5 ≤ < 294 K.
Constant | Value | Unit |
---|---|---|
A0 | -8.529E-02 | [-] |
A1 | -9.915E-02 | [-] |
A2 | 2.257E+00 | [-] |
A3 | -3.157E+00 | [-] |
Table 6: Parameters values for the thermal expansion model from Eq. (6) for 294 ≤ ≤ 3600 K.
Constant | Value | Unit |
---|---|---|
A0 | -1.400E-01 | [-] |
A1 | 4.869E-01 | [-] |
A2 | -3.056E-02 | [-] |
A3 | 2.234E-02 | [-] |
Input Parameters
- blockThe list of blocks (ids or names) that this object will be applied
C++ Type:std::vector<SubdomainName>
Controllable:No
Description:The list of blocks (ids or names) that this object will be applied
- boundaryThe list of boundaries (ids or names) from the mesh where this object applies
C++ Type:std::vector<BoundaryName>
Controllable:No
Description:The list of boundaries (ids or names) from the mesh where this object applies
- computeTrueWhen false, MOOSE will not call compute methods on this material. The user must call computeProperties() after retrieving the MaterialBase via MaterialBasePropertyInterface::getMaterialBase(). Non-computed MaterialBases are not sorted for dependencies.
Default:True
C++ Type:bool
Controllable:No
Description:When false, MOOSE will not call compute methods on this material. The user must call computeProperties() after retrieving the MaterialBase via MaterialBasePropertyInterface::getMaterialBase(). Non-computed MaterialBases are not sorted for dependencies.
- constant_onNONEWhen ELEMENT, MOOSE will only call computeQpProperties() for the 0th quadrature point, and then copy that value to the other qps.When SUBDOMAIN, MOOSE will only call computeQpProperties() for the 0th quadrature point, and then copy that value to the other qps. Evaluations on element qps will be skipped
Default:NONE
C++ Type:MooseEnum
Controllable:No
Description:When ELEMENT, MOOSE will only call computeQpProperties() for the 0th quadrature point, and then copy that value to the other qps.When SUBDOMAIN, MOOSE will only call computeQpProperties() for the 0th quadrature point, and then copy that value to the other qps. Evaluations on element qps will be skipped
- declare_suffixAn optional suffix parameter that can be appended to any declared properties. The suffix will be prepended with a '_' character.
C++ Type:MaterialPropertyName
Unit:(no unit assumed)
Controllable:No
Description:An optional suffix parameter that can be appended to any declared properties. The suffix will be prepended with a '_' character.
- densitydensityName to be used for the density
Default:density
C++ Type:std::string
Controllable:No
Description:Name to be used for the density
- specific_heatspecific_heatName to be used for the specific heat
Default:specific_heat
C++ Type:std::string
Controllable:No
Description:Name to be used for the specific heat
- thermal_conductivitythermal_conductivityName to be used for the thermal conductivity
Default:thermal_conductivity
C++ Type:std::string
Controllable:No
Description:Name to be used for the thermal conductivity
Optional Parameters
- control_tagsAdds user-defined labels for accessing object parameters via control logic.
C++ Type:std::vector<std::string>
Controllable:No
Description:Adds user-defined labels for accessing object parameters via control logic.
- enableTrueSet the enabled status of the MooseObject.
Default:True
C++ Type:bool
Controllable:Yes
Description:Set the enabled status of the MooseObject.
- implicitTrueDetermines whether this object is calculated using an implicit or explicit form
Default:True
C++ Type:bool
Controllable:No
Description:Determines whether this object is calculated using an implicit or explicit form
- seed0The seed for the master random number generator
Default:0
C++ Type:unsigned int
Controllable:No
Description:The seed for the master random number generator
- use_displaced_meshFalseWhether or not this object should use the displaced mesh for computation. Note that in the case this is true but no displacements are provided in the Mesh block the undisplaced mesh will still be used.
Default:False
C++ Type:bool
Controllable:No
Description:Whether or not this object should use the displaced mesh for computation. Note that in the case this is true but no displacements are provided in the Mesh block the undisplaced mesh will still be used.
Advanced Parameters
- output_propertiesList of material properties, from this material, to output (outputs must also be defined to an output type)
C++ Type:std::vector<std::string>
Controllable:No
Description:List of material properties, from this material, to output (outputs must also be defined to an output type)
- outputsnone Vector of output names where you would like to restrict the output of variables(s) associated with this object
Default:none
C++ Type:std::vector<OutputName>
Controllable:No
Description:Vector of output names where you would like to restrict the output of variables(s) associated with this object
Outputs Parameters
- prop_getter_suffixAn optional suffix parameter that can be appended to any attempt to retrieve/get material properties. The suffix will be prepended with a '_' character.
C++ Type:MaterialPropertyName
Unit:(no unit assumed)
Controllable:No
Description:An optional suffix parameter that can be appended to any attempt to retrieve/get material properties. The suffix will be prepended with a '_' character.
- use_interpolated_stateFalseFor the old and older state use projected material properties interpolated at the quadrature points. To set up projection use the ProjectedStatefulMaterialStorageAction.
Default:False
C++ Type:bool
Controllable:No
Description:For the old and older state use projected material properties interpolated at the quadrature points. To set up projection use the ProjectedStatefulMaterialStorageAction.
Material Property Retrieval Parameters
Input Files
References
- Justin L Milner, Peter Karkos, and Jessica Jane Bowers.
Space nuclear propulsion (snp) material property handbook.
Technical Report, National Aeronautics and Space Administration, 2024.[BibTeX]