class matlantis_features.features.md.post_features.thermal_expansion.PostMDThermalExpansionFeatureResult(volume: VolumeResult, thermal_expansion: ThermalExpansionResult)#

Bases: object

Result dataclass for the thermal expansion feature.

Methods

__init__(volume, thermal_expansion)

plot([plt_name])

Plot the result.

__init__(volume: VolumeResult, thermal_expansion: ThermalExpansionResult) None#
plot(plt_name: Optional[str] = None) Figure#

Plot the result.

Parameters

plt_name (str or None, optional) – File name to write the plot. Supported formats include ‘png’ ‘jpg’ ‘jpeg’ ‘webp’
‘svg’ and ‘pdf’. If ‘None’ is provided, the figure will not be saved.
Defaults to None.

Returns

Resulting plotly’s graph object.

Return type

go.Figure

Attributes

volume: VolumeResult#
thermal_expansion: ThermalExpansionResult#