Chemical Engineering October 2016 - 77

file and assigning these variables to
the simulation forms the " skeleton "
for the code that will be written.
Crude slate example
FIGURE 5. A simple flowsheet is given to demonstrate the generation of the HMB table for three
crude slates
Mistakes in programming VBA
code are also common. After all, we
are only human. An error as simple
as entering the stream temperature
values in the spreadsheet row that
is set up for pressure values is an
easy mistake to make. The process
engineer should always review the
HMB for these types of errors.
VBA will extract all properties
and conditions by the variable unit
exactly as defined by the process
simulator. For example, the Hysys
unit for pounds per hour is " lb/hr, "
not " lbs/h " and kilograms per hour
is " kg/h, " not " kg/hr " . These must
be consistent in order for the code
to function correctly.
Not only can VBA extract data
from the simulation, but it can also
write data to the simulation. This
becomes useful if the engineer
needs to modify the simulation with
data in the spreadsheet and then
extract data that results from the
user upload. For example, an engineer
may need to extract HMB data
for a process with different material
feed conditions, such as temperature,
flow or pressure. The engineer
would use the SetValue method
to change the stream properties.
Then the code would extract the
simulation data that result from the
updated feed properties.
T
68
The Developer tab in Excel has
a function called " Record Macro. "
This is a very useful function that
automatically generates code for
the user. For example, if a user
clicks " Record Macro " and then
changes the color of any cell, VBA
will automatically generate the necessary
code to change the color of
a cell. To record a macro, first, set
up Excel to show the Developer tab.
The user should press the Office
button, click on Excel options and
then check, " Show Developer tab in
the Ribbon " from the Popular page.
The Object Browser (Figure 2)
from the VBA Editor View menu is
helpful to find the available properties
and methods of each object.
Many properties have their own
properties and methods. These are
easily found by placing a period
after the first property, and a dropdown
list will appear (Figure 3).
It is important to remember to
add references to your Excel file.
From the VBA editor, click the
Tools menu, click References, and
then enable the Hysys Type Library
(Figure 4) check box (or whichever
library is appropriate for your process
simulator of choice).
Another critical step to get started
is variable declaration. Declaring the
VBA variables for the Hysys HMB
CODE EXAMPLE FOR GETVALUE COMMAND
he following code presents a simple example of the GetValue command for the
given spreadsheet data:
Set HMB_stream = ProjectSimulation.Flowsheet.MaterialStreams.Item( " 100 " )
Range( " B2 " ).Value = HMB_stream.Pressure.GetValue( " kPa " )
Range( " B3 " ).Value = HMB_stream.MassFlow.GetValue( " kg/h " )
Range( " B5 " ).Value = HMB_stream.ComponentMassFraction(0)
Range( " B6 " ).Value = HMB_stream.ComponentMassFraction(1) ❑
In many cases, the owner would like
to analyze different operating cases
for the same (or similar) process configurations.
These cases could differ
with regard to feed composition, operating
temperature and pressure,
flowrate or product quality. Instead
of creating different simulation files,
VBA could be used with different parameters
to set the values within the
simulation. Then, once converged,
the spreadsheet could get the values
from the simulation to populate
the HMB.
Consider the example of a petroleum
refinery processing different
crude slates. Each crude slate assay
would have various components,
composition and true boiling-point
(TBP) data. This could consist of over
100 components once the crude
assay is input into Hysys. A simple
method would be to use VBA to assign
an assay composition to the feed
and allow the simulation to converge
for its unique material balance. Consider
this simple example of three different
crude slates, each with its own
process requirement of temperature
and pressure (Figures 5 and 6).
The user would write the VBA
code to select the assay and assign
the composition to the unit feedstream.
The code would then assign
the feed flowrate, temperature and
pressure, as well as the temperature
and pressure downstream of the
heat exchanger.
A real-world, practical example of
an application of VBA automation
to a process with several different
operating configurations is demonstrated
by a request from one of the
author's recent clients, a petroleum
refinery. The client wanted to analyze
eight different cases and determine
which configuration would provide
the greatest profit versus performance,
as well as verify the process
against different feedstocks. The
engineering team reviewed two different
feedstocks, and four different
operating conditions for each. That
is, several different operating points
(pressure at the distillation column,
temperature at the outlet of different
heat exchangers and column pumpCHEMICAL
ENGINEERING WWW.CHEMENGONLINE.COM
OCTOBER 2016
http://WWW.CHEMENGONLINE.COM

Chemical Engineering October 2016

Table of Contents for the Digital Edition of Chemical Engineering October 2016

Contents
Chemical Engineering October 2016 - Cover1
Chemical Engineering October 2016 - Cover2
Chemical Engineering October 2016 - Contents
Chemical Engineering October 2016 - 2
Chemical Engineering October 2016 - 3
Chemical Engineering October 2016 - 4
Chemical Engineering October 2016 - 5
Chemical Engineering October 2016 - 6
Chemical Engineering October 2016 - 7
Chemical Engineering October 2016 - 8
Chemical Engineering October 2016 - 9
Chemical Engineering October 2016 - 10
Chemical Engineering October 2016 - 11
Chemical Engineering October 2016 - 12
Chemical Engineering October 2016 - 13
Chemical Engineering October 2016 - 14
Chemical Engineering October 2016 - 15
Chemical Engineering October 2016 - 16
Chemical Engineering October 2016 - 17
Chemical Engineering October 2016 - 18
Chemical Engineering October 2016 - 19
Chemical Engineering October 2016 - 20
Chemical Engineering October 2016 - 21
Chemical Engineering October 2016 - 22
Chemical Engineering October 2016 - 23
Chemical Engineering October 2016 - 24
Chemical Engineering October 2016 - 25
Chemical Engineering October 2016 - 26
Chemical Engineering October 2016 - 27
Chemical Engineering October 2016 - 28
Chemical Engineering October 2016 - 29
Chemical Engineering October 2016 - 30
Chemical Engineering October 2016 - 31
Chemical Engineering October 2016 - 32
Chemical Engineering October 2016 - 33
Chemical Engineering October 2016 - 34
Chemical Engineering October 2016 - 35
Chemical Engineering October 2016 - 36
Chemical Engineering October 2016 - 37
Chemical Engineering October 2016 - 38
Chemical Engineering October 2016 - 39
Chemical Engineering October 2016 - 40
Chemical Engineering October 2016 - 41
Chemical Engineering October 2016 - 42
Chemical Engineering October 2016 - 43
Chemical Engineering October 2016 - 44
Chemical Engineering October 2016 - 45
Chemical Engineering October 2016 - 46
Chemical Engineering October 2016 - 47
Chemical Engineering October 2016 - 48
Chemical Engineering October 2016 - 49
Chemical Engineering October 2016 - 50
Chemical Engineering October 2016 - 51
Chemical Engineering October 2016 - 52
Chemical Engineering October 2016 - 53
Chemical Engineering October 2016 - 54
Chemical Engineering October 2016 - 55
Chemical Engineering October 2016 - 56
Chemical Engineering October 2016 - 57
Chemical Engineering October 2016 - 58
Chemical Engineering October 2016 - 59
Chemical Engineering October 2016 - 60
Chemical Engineering October 2016 - 61
Chemical Engineering October 2016 - 62
Chemical Engineering October 2016 - 63
Chemical Engineering October 2016 - 64
Chemical Engineering October 2016 - 65
Chemical Engineering October 2016 - 66
Chemical Engineering October 2016 - 67
Chemical Engineering October 2016 - 68
Chemical Engineering October 2016 - 69
Chemical Engineering October 2016 - 70
Chemical Engineering October 2016 - 71
Chemical Engineering October 2016 - 72
Chemical Engineering October 2016 - 73
Chemical Engineering October 2016 - 74
Chemical Engineering October 2016 - 75
Chemical Engineering October 2016 - 76
Chemical Engineering October 2016 - 77
Chemical Engineering October 2016 - 78
Chemical Engineering October 2016 - 79
Chemical Engineering October 2016 - 80
Chemical Engineering October 2016 - 81
Chemical Engineering October 2016 - 82
Chemical Engineering October 2016 - 83
Chemical Engineering October 2016 - 84
Chemical Engineering October 2016 - 85
Chemical Engineering October 2016 - 86
Chemical Engineering October 2016 - 87
Chemical Engineering October 2016 - 88
Chemical Engineering October 2016 - 89
Chemical Engineering October 2016 - 90
Chemical Engineering October 2016 - Cover3
Chemical Engineering October 2016 - Cover4
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_october-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_september-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_august-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_july-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che-achema1_june-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_june-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_may-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_april-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_march-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_february-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_january-2024
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_november-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/che_december-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering_october-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2023
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-intl-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-intl-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-intl-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-intl-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2022
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2021
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2020
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2019
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2018
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2017
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2016
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2015
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2014
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2013
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2012
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-april-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-march-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-february-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-january-2011
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-december-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-november-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-october-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-september-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-august-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-july-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-june-2010
https://www.nxtbook.com/accessintelligence/ChemicalEngineering/chemical-engineering-may-2010
https://www.nxtbookmedia.com