diff --git a/samples/python/reactors/PorousMediaBurner.py b/samples/python/reactors/PorousMediaBurner.py index c08b2ab7ecb..9650e1f3493 100644 --- a/samples/python/reactors/PorousMediaBurner.py +++ b/samples/python/reactors/PorousMediaBurner.py @@ -131,7 +131,7 @@ def __init__( def effectiveConductivitySiC(Ts): # for silicon carbide return (1 - 0.84) * 1857.0 * Ts**(-0.5332) -# YZA: Thermal conductivity of zirconia–alumina composites, N.P. Bansal, D. Zhu, +# YZA: Thermal conductivity of zirconia–alumina composites, N.P. Bansal, D. Zhu, # Ceramics International, 31(7), pp 911-916 (2015) def effectiveConductivityYZA(Ts): # for yittria-stabilized zirconia alumina return 0.3 @@ -409,3 +409,4 @@ def before_component_name(self, i): plt.xlabel("x (m)") plt.ylabel("T (K)") plt.savefig("T.png") +plt.show()