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.
import mic sa = mic.report("bet", "surface area") c = mic.report("bet", "bet constant") vm = mic.report("bet", "monolayer capacity") esa = mic.report("tplot", "external surface area") vol = mic.report("tplot", "micropore volume") mic.summary( "BET and T-plot Results" ) mic.summary.add( "Report Results", [ "bet surface area", "bet constant", "bety 6" , "tplot external surface area", "tplot micropore volume"], [ "%10.5f" % sa, "%10.5f" % c, "%10.5f" % vm, "%10.5f" % esa, "%10.5f" % vol ] )
The result is:
Acquiring the results from a pore-distribution report such as the BJH method is done in a similar way as in the previous script except the return values from the mic.report call are slightly different since they involve lists of data. For example,
import mic xdat, ydat, desc = mic.report('bjhads' ,'incremental distribution' ) mic.graph( 'BJH Ads/Des', 'Pore diameter', 'Incremental Volume' ) mic.graph.add( desc, xdat, ydat )
The result is:
See the Mic Module Python Calls section for a more complete description of the usage and scope of the mic.report call.
Copyright © 2014 - 2018. Micromeritics Instrument Corporation. All rights reserved.