Get Report Results

This script gets report results for the indicted report and sample:

Copy
mic.report(report_name='', result='', sample_number=0):

Get report results for the indicated report and sample

Keyword arguments:

  sample_number --- Identifier for the sample data to retrieve.
                    0           : current sample file (default)
                    1 through 8 : corresponding overlay sample file

Usage:

  sa                  = mic.report('bet', 'surface area')

  porew, incvol, desc = mic.report('bjhads',
                                   'incremental distribution')

The available report keywords, result keywords and a corresponding
description of the result is listed in the table below

   Report        Result                   Description
-----------   --------------              -----------
    bet        surface area               Surface area (m^2/g)
    bet        bet constant               BET constant (dimensionless)
    bet        monolayer capacity         Monolayer capacity (cm^3/g)
    tplot      external surface area      External surface area (m^2/g)
    tplot      micropore volume           Micropore volume (cm^3/g)
    bjhads     incremental distribution   Incremental Distribution
    bjhdes     incremental distribution   Incremental Distribution
    dhads      incremental distribution   Incremental Distribution
    hk         incremental distribution   Incremental Distribution
    dft        incremental distribution   Incremental Distribution
    nldft      incremental distribution   Incremental Distribution


  where the incremental pore distribution result above (for those
  reports which return this) is a list with three components being,

  porew  --- array of pore dimension boundaries (angstroms);
             empty-array if unavailable.
  incvol --- array of incremental pore volumes (cm^3/g);
             empty-array if unavailable.
  desc   --- Name of data set; empty-string if unavailable.