In [2]:
%matplotlib inline

catplot 的简单使用


In [3]:
from catplot.ep_components.ep_canvas import EPCanvas
from catplot.ep_components.ep_lines import ElementaryLine

创建一个Energy Profile 画布


In [4]:
canvas = EPCanvas()


创建针对一个基元反应的 Energy Profile Line


In [5]:
line = ElementaryLine([0.0, 1.2, 0.8])

像画布中添加 Energy Profile Line


In [6]:
canvas.add_line(line)

进行绘制


In [7]:
canvas.draw()

显示效果


In [10]:
canvas.figure


Out[10]: