SolidificationSimulation/drawcoolingcurve.py

9 lines
203 B
Python

import matplotlib.pyplot as plt
import HeatTransferCalculation as HC
class Drawcoolingcurve:
def draw(self,xarr,yarr):
fig, ax = plt.subplots()
ax.plot(xarr,yarr)
plt.show()