A Advanced Reports - Python Module
ACQUIRE REPORT RESULTS
Sample file report results may be accessed using the mic.report call. This script prints a summary
of the results of the t-plot and BET reports.
1 import mic
2
3 sa= mic.report("bet", "surface area")
4 c= mic.report("bet", "bet constant")
5 vm= mic.report("bet", "monolayer capacity")
6 esa = mic.report("tplot", "external surface area")
7 vol = mic.report("tplot", "micropore volume")
8
9 mic.summary("BET and T-plot Results" )
10
11 mic.summary.add("Report Results",
12 ["BET surface area:",
13 "BET constant:",
14 "BET monolayer capacity:",
15 "T-plot external surface area:",
16 "T-plot micropore volume:" ],
17 ['{:10.5f}'.format(sa) + ' m²/g',
18 '{:10.5f}'.format(c),
19 '{:10.5f}'.format(vm) + ' cm³/g',
20 '{:10.5f}'.format(esa) + ' m²/g',
21 '{:10.5f}'.format(vol) + ' cm³/g' ] )
The result is:
A - 12
TriStar II Plus Operator Manual
303-42800-01 (Rev M ) — Sep 2023