tidy3d.VerticalNaturalConvectionCoeffModel#
- class VerticalNaturalConvectionCoeffModel[source]#
Bases:
Tidy3dBaseModelSpecification for natural convection from a vertical plate.
- Parameters:
attrs (dict = {}) β Dictionary storing arbitrary metadata for a Tidy3D object. This dictionary can be freely used by the user for storing data without affecting the operation of Tidy3D as it is not used internally. Note that, unlike regular Tidy3D fields,
attrsare mutable. For example, the following is allowed for setting anattrobj.attrs['foo'] = bar. Also note that Tidy3D will raise aTypeErrorifattrscontain objects that can not be serialized. One can check ifattrsare serializable by callingobj.json().medium (Optional[FluidMedium] = None) β The
FluidMediumused for the heat transfer coefficient calculation. If None, the fluid is automatically deduced from the interface, which can be definedby either aMediumMediumInterfaceor aStructureStructureInterface.plate_length (NonNegativeFloat) β [units = um]. Characteristic length (L), defined as the height of the vertical plate.
gravity (NonNegativeFloat = 9806650.0) β [units = um/s^2]. Gravitational acceleration (g).
Notes
This class calculates the heat transfer coefficient (h) based on fluid properties and an expected temperature difference, then provides these values as \(\text{base_l}\), \(\text{base_nl}\), and \(\text{exponent}\) for a generalized heat flux equation
\[q = \text{base_nl} * (T_\text{surf} - T_\text{fluid})^\text{exponent} + \text{base}_{l} * (T_\text{surf}- T_\text{fluid}).\]Attributes
Methods
from_si_units([medium,Β gravity])Create an instance from standard SI units.
Inherited Common Usage
- medium#
- plate_length#
- gravity#
- from_si_units(medium=None, gravity=9.80665)[source]#
Create an instance from standard SI units.
- Args:
plate_length: Plate characteristic length in [m]. gravity: Gravitational acceleration in [m/s**2].
- Returns:
An instance of VerticalNaturalConvectionCoeffModel with all values converted to Tidy3Dβs internal unit system.
- __hash__()#
Hash method.