Skip to content

Commit

Permalink
[samples] Add plt.show() to PorousMediaBurner sample
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Aug 23, 2024
1 parent 7399f97 commit d295959
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion samples/python/reactors/PorousMediaBurner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -409,3 +409,4 @@ def before_component_name(self, i):
plt.xlabel("x (m)")
plt.ylabel("T (K)")
plt.savefig("T.png")
plt.show()

0 comments on commit d295959

Please sign in to comment.