ArticlePDF Available

DEVELOPMENT OF AN EQUATION-ORIENTED STEADY-STATE EVAPORATION PLANT SIMULATOR

Authors:

Abstract and Figures

An equation-oriented process simulator was developed for simulating evaporation plants. The simulator graphical user interface was written in Python 2.7, and its engine, in C++. The simulator orders and partitions the system of equations that describe the evaporator system under study and solves the partitions sequentially using the Newton-Raphson method. If no good initial estimates can be provided by the user, the simulator solves a simplified problem to generate the estimates, which greatly facilitates convergence. Calculations are based on steam table correlations and on black liquor enthalpy correlations described in the literature. Two multiple-effect counter-current evaporator scenarios were extracted from the literature and used to validate the simulator: a simple 3-effect system and a realistic 6-effect system. The simulator converged to the solutions with relative ease, provided that the model equations were written as described, that equations were ordered and partitioned, and the simplified model was used to generate good initial estimates. Good agreement was found between the calculated values and those reported in the literature, indicating that the proposed simulation framework could be extended to accommodate more complex systems. Deviations from the reported values can be explained by the different choices of physical properties correlations.
Content may be subject to copyright.
83
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Julho/July 2020
Revista O Papel
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
DEVELOPMENT OF AN
EQUATION-ORIENTED STEADY-STATE
EVAPORATION PLANT SIMULATOR
Authors: rcio R. Vianna Neto 1, Marcelo Cardoso 1, Esa K. Vakkilainen 2, Éder D. Oliveira 1
1 Universidade Federal de Minas Gerais. Brazil
2
Lappeenranta University of Technology. Finland
ABSTRACT
An equation-oriented process simulator was developed for
simulating evaporation plants. e simulator graphical user
interface was written in Python 2.7, and its engine, in C++.
e simulator orders and partitions the system of equations
that describe the evaporator system under study and solves
the partitions sequentially using the Newton-Raphson
method. If no good initial estimates can be provided by the
user, the simulator solves a simplied problem to generate the
estimates, which greatly facilitates convergence. Calculations
are based on steam table correlations and on black liquor
enthalpy correlations described in the literature. Two multiple-
eect counter-current evaporator scenarios were extracted
from the literature and used to validate the simulator: a simple
3-eect system and a realistic 6-eect system. e simulator
converged to the solutions with relative ease, provided that
the model equations were written as described, that equations
were ordered and partitioned, and the simplied model was
used to generate good initial estimates. Good agreement was
found between the calculated values and those reported in the
literature, indicating that the proposed simulation framework
could be extended to accommodate more complex systems.
Deviations from the reported values can be explained by the
dierent choices of physical properties correlations.
Keywords: simulation, multiple-eect, evaporation, equation-
oriented, partitioning
1. INTRODUCTION
It is desirable to increase the energetic eciency of pulping
plants to make the process more competitive. Moreover, by
increasing its energetic eciency, less energy resources need to
be consumed, lowering fossil-red carbon dioxide generation,
which is key to achieving sustainable development [1,2]. For
these reasons, the energetic optimization of chemical pulping
plants has received attention in the literature [3,4].
Black liquor is a residue produced during the chemical
pulping process. In the chemical recovery cycle, black liquor is
burned in the recovery boiler to produce energy and to recover
chemicals that are consumed during the cooking process.
is step is key to making the pulping process economically
feasible [4, 5–7]. Before the black liquor can be burned in the
recovery boiler, it is necessary to reduce its water fraction
to increase combustion eciency. Evaporation and drying
are the most energy intensive steps in the chemical pulping
process. Evaporation is typically carried out in a Multiple-
Eect Evaporator (MEE) train, usually constituted of 5 to 7+
evaporator bodies. MEE trains concentrate black liquors from a
dry solids mass fraction of approximately 15% to about 80-85%
[8]. e evaporation step makes up 24-30% of the total energy
used by a pulp mill, which justies its optimization [9].
e simulation and optimization of MEE systems has
received considerable attention in the literature. Cardoso et
al. (2009) simulated and optimized a pulp mill for minimum
energy consumption [6]. Saturnino (2012) modeled the
chemical balance of a Kra mill. e evaporator train was
simulated using two commercial process simulators [7]. Ji
et al. (2012) constructed a simplied evaporator model and
conducted process integration through a mixed-integer linear
programming (MILP) approach [4]. Mesfun and Toolo (2013)
applied a process integration methodology to optimize the
evaporator train and the CHP system of a Kra pulp and paper
mill [3]. Several other deterministic and non-deterministic
approaches to simulate MEE trains and optimize their energy
consumption have also been tried [10–22]. Verma et al. (2019)
recently published a review of methods used evaporator train
simulation and optimization [19].
However, these approaches rely on the user having to
hard code each individual system to be optimized, which
is tedious and error-prone for large systems. In this paper
we present an equation-oriented steady-state simulator
constructed specifically to facilitate the optimization
Corresponding author: Márcio R. Vianna Neto. Universidade Federal de Minas Gerais. Av. Pres. Antônio Carlos, 6627 – Pampulha.
Belo Horizonte – MG. 31270-901. Brazil. Phone: +55-31-34091735. marciorvneto@ufmg.br
84
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Revista O Papel
Julho/July 2020
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
of MEE systems. The equation-oriented architecture is
advantageous for optimization because it exposes the
equations that constitute the system under study, allowing
their mathematical properties to be fully exploited. The
simulator is general enough to enable systems of arbitrary
complexity to be constructed, simulated and optimized. In
this paper, we will focus on the architecture and validation
of the results calculated by the simulator engine.
METHODS
Simulator architecture
e simulator is equation-oriented, which means that
the unit processes involved in the simulation are abstracted
as a system of equations, which is then solved. A Graphical
User Interface (GUI) is exposed, through which it is possible
to assemble the block diagram corresponding to the MEE
system under study and to input process parameters. In these
diagrams, unit processes are represented as blocks, which are
interconnected through streams.
Figure1 summarizes the calculation process carried out by
the simulator. Initially, the user inputs a block diagram and its
respective process parameters through the GUI. Blocks and
streams, collectively referred in Figure1 as elements, supply
equations to the simulation engine, which assembles the Global
System of Equations (GSE). e equations are then ordered to
facilitate convergence.
e ordering process begins by constructing the bipartite
graph corresponding to the GSE, as shown in [24]. In this graph,
two sets of vertices exist: equation vertices and variable vertices.
An edge connects an equation vertex i to a variable vertex j
if variable j takes part in equation i. e maximum bipartite
matching M for this graph is then determined using the Ford-
Fulkerson algorithm. e bipartite graph is then converted into
a directed graph through the following process: for every edge
e connecting the equation vertex i to the variable vertex j, if e
belongs to M, replace it by a directed edge connecting i to j. If e
is not in M, replace it by a directed edge connecting j to i. e
topological ordering of this directed graph gives the ordering of
the equations.
Once the equations ordering has been determined, the
simulator proceeds to determine the clusters of equations that
need to be solved simultaneously. is step is referred to as
partitioning the GSE.
Having completed these steps, the simulator solves each
partition following the determined equation ordering using
the Newton-Raphson (NR) method. Initial estimates for the
variables may either be supplied by the user or asked to be
calculated by the simulator. In the latter case, the simulator is
run using simplied models for each unit process to facilitate
convergence, as will be detailed in the next section. e values
found by solving the simplied models are then used as initial
estimates for the original system. e stopping criterion for NR
is the Euclidean distance between two successive iterations,
which must be smaller than some small error tolerance input
by the user. Once the simulator has concluded its calculations,
the results can be either displayed to the user via the GUI, or be
fed to an objective function, if optimization is to be performed.
e GUI was developed using Python 2.7, whereas the
graph algorithms, as well as the numerical routines were
implemented in C++.
Figure 1. Simulator architecture
Simulator
Block diagram (GUI) Simulation engine
Global system of eqs.
Element 1
Equation 1
Equation 1
Equation 2
Equation 3
...
Equation n
Equation n-p
System of equations
partitioning
Equation ordering
Newton-Raphson
Error tolerance
Initial estimates Results
Equation m
Equation е
...
...
Element n
85
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Julho/July 2020
Revista O Papel
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
Unit processes, blocks and streams
e unit processes currently supported by the simulator are:
evaporation, black liquor and condensate ashing, black liquor
mixing, vapor and condensate mixing. Streams represent mass
ows, and are divided into black liquor, vapor and condensate
streams. Table 1 lists the currently supported process blocks
and the equations corresponding to each of them. Table 2
lists the variables that describe each type of stream. In these
equations, variable subscripts denote the streams to which they
correspond, except the subscript sat, which denotes saturation.
Mass ows are indicated by
m
, enthalpies by H , temperatures
and pressures by T and P respectively, the dissolved solids mass
fraction by
xD
and the boiling point rise of black liquor, by BPR.
As mentioned before, if no initial estimates are supplied by
the user, the simulator solves simplied models to obtain those
estimates. e simplied model equations are the same as those
listed in Table1, for all blocks, except the Evaporator. Its energy
balance is replaced by the equation
mS=mV
and the heat of
steam condensation is approximated by
Q=2200
mS
.
Table 1. Unit processes supported by the simulator and their respective equations.
Process block Description Equations
Evaporator
e black liquor stream F and the inlet
vapor stream S enter the Evaporator
block. e outlet black liquor stream
L, the condensate stream C and the
outlet vapor stream V exit the block.
Evaporator blocks take as parameters the
heat transfer coecient U and the heat
transfer area A.
mS
=
mC
mF
=
mL+mV
PS
=
PC
TC
=
Tsat(PS)
TV
=
Tsat PV+BPR(PV,xD,L)
TV
=
TL
Q
=
mS(HS-HC)
Q
=
UA(TS-TL)
Q+ mFHF
=
mLHL+mVHV
Flash tank
e inlet black liquor or condensate
stream F enters the Flash block. e
outlet vapor stream V and the outlet
black liquor or condensate stream L
exit the block. e ash tank pressure is
determined by the outlet vapor stream
pressure, PV.
mF
=
mL+mV
TV
=
TL
PV
=
Psat(TV)
PL
=
Psat(TV)
Black liquor mixer
An arbitrary number of black liquor
streams Li enter the mixer block, and a
single combined black liquor stream Lout
exits it.
mi
i
=
mout
mi
i
Hi
=
moutHout
mi
i
xD,i
=
moutxD,out
Vapor mixer
An arbitrary number of vapor or
condensate streams Vi enter the mixer
block, and a single combined vapor or
condensate stream Vout exits it. In this
work, the vapor mixer is assumed to
cause negligible pressure drop and to
impose that all pressures be equal.
mi
i
=
mout
mi
i
=
mout
P1=P2=…=Pn=Pout
86
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Revista O Papel
Julho/July 2020
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
Validation scenarios
Two MEE plants were taken as case studies to validate the
results given by the simulator. e rst scenario was a simple
counter-current 3-eect MEE system, depicted in Figure2. In
this scenario, condensate leaving the rst and second eects are
ashed and fed to the second and third eects, respectively. is
system was adapted from [5] and, due to its relative simplicity,
was intended to aid in the testing of the unit process models
and the simulator code. Black streams denote black liquor, red
streams denote vapor and blue streams, condensate.
e input values for this system are listed in Table3. All heat
exchange areas were assumed to be equal.
Table 2. Stream types and their describing variables.
Stream type Variables
Black liquor
m
,
T
,
xD
Vap or
m
,
T
,
P
Condensate
m
,
T
,
P
Physical properties
Energy balances require black liquor, water steam enthalpies
to be known. Water and steam enthalpies were calculated from
steam table correlations, implemented in C++ as described in
the 2007 revised release on the International Association for the
Properties of Water and Steam IAPWS Industrial Formulation
of 1997 standard [25].
Black liquor enthalpies were calculated from the correlation
described by Zaman and Fricke (1996), which expresses the
enthalpy of black liquor at 80 °C, H80, as shown in Equation(1)
[26]. In this equation, Hw denotes the water enthalpy at 80 °C,
xD is the black liquor dissolved solids fraction, and the constants
and depend on the type of black liquor being considered. In
this work, it was assumed that kJ/kg.K and .
H80=Hw+b -1+exp
xD
c
(1)
In order to account for black liquor enthalpies at other
temperatures, H80 is corrected using the black liquor specic
heat correlation given by Equation(2), where t stands for the
temperature measured in °C [5].
c
p
=4.216 1-x
D
+1.675+
3.31t
1000.0
x
D
+4.87+
20t
1000.0
1-x
D
x
D
3
(2)
e black liquor Boiling Point Rise (BPR) also needs to be
considered in evaporator calculations. BPR is accounted for
using Equations(3) and(4), where TP is the boiling temperature
of water at pressure P.
BPR(P,xD)=BPRatm(xD)[1+0.6(TP-373.16)/100]
(3)
BPRatm xD=6.173xD-7.48xD
1.5+32.747xD
2
(4)
Figure 2. The simple 3-effect MEE system, adapted from [5]
Table 3. Input values for the 3-effect MEE system.
Variabl e Value Units
Live steam temperature 120 °C
Black liquor inlet mass ow 50 kg/s
Black liquor inlet
temperature 70 °C
Black liquor inlet
dissolved solids 20 %
Vapor temperature
from E3 60 °C
Heat transfer coecient
of E1 (U1) 1.2 kW/m²K
Heat transfer coecient
of E2 (U2) 1.6 kW/m²K
Heat transfer coecient
of E2 (U3) 2.0 kW/m²K
Outlet black liquor
dissolved solids 50 %
87
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Julho/July 2020
Revista O Papel
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
A more realistic 6-effect system was adapted from [9]
and is shown in Figure3. It should be noted that black
liquor exiting the first effect is flashed and its vapor is
fed to the fourth effect. In their original paper, Jyoti and
Khanam (2014) used polynomial fits to estimate steam table
properties and correlations to calculate the evaporators
heat transfer coefficients. The input values for this system
are listed in Table4. All heat transfer areas were assumed
to be equal.
Figure 2: Realistic 6-eect MEE system, adapted from [9].
e two systems were input to the simulator without
supplying any initial estimates for the variables, which means
that they were calculated by rst solving the simplied models.
e NR error tolerance was set to 10-6.
Figure 3. Realistic 6-effect MEE system, adapted from [9].
Table 4. Input values for the 6-effect MEE system
Variabl e Value Units
Live steam temperature to E1 140 °C
Live steam temperature to E2 147 °C
Vapor temperature from E7 52 °C
Black liquor inlet mass ow 15.6 kg/s
Black liquor inlet temperature 64.7 °C
Black liquor inlet dissolved solids 11.8 %
Black liquor outlet dissolved solids 31 %
Heat transfer coecient of E1 (U1) 0.296 kW/m²K
Heat transfer coecient of E2 (U2) 0.4303 kW/m²K
Heat transfer coecient of E2 (U3) 0.2584 kW/m²K
Heat transfer coecient of E2 (U4) 0.6955 kW/m²K
Heat transfer coecient of E2 (U5) 0.839 kW/m²K
Heat transfer coecient of E2 (U6) 0.9698 kW/m²K
Heat transfer coecient of E2 (U7) 1.224 kW/m²K
88
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Revista O Papel
Julho/July 2020
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
RESULTS AND DISCUSSION
Table5 displays some of the key variables found for the
3-eect MEE system, and their respective values as reported
from the original reference. Notice that there is a strong
agreement between calculated and reference values. ere is,
however, the simulator underestimated the heat transfer area
and the black liquor outlet temperature, as compared to the
reference values. is discrepancy is justied by the fact that
the black liquor enthalpies in this work were calculated from
dierent correlations than those of the original reference.
Table6 displays some of the key variables found for the
6-effect MEE system, and their respective values as reported
from the original reference. As before, there is a strong
agreement between calculated and reference values, and the
discrepancy are likely due to the different correlations used.
Notice that the heat transfer areas are not shown in Table6,
as they were not reported in the original publication.
It should be noted that the steps of ordering the GSE,
partitioning it and obtaining initial estimates by solving the
simplified model were critical to ensure that the simulator
would converge. In both scenarios, the combination of
these steps allowed the simulator to converge with relative
ease. This, however, was not the case when any of the steps
were skipped. Solving all the equations simultaneously
via NR proved to be a particularly poor approach, as poor
initial estimates often led to singular Jacobians during the
NR iterations.
It must also be emphasized that the simulator determines the
ordering of the GSE based on the form taken by each equation
Table 5. Comparison between calculated values and reference values for the 3-effect system
Variable Calculated value Reference value Units
Heat transfer areas (all eects) 810.0 1040.0
Vapor temperature from E1 93.7 91.6 °C
Vapor temperature from E2 74.2 73.3 °C
Vapor temperature from E3 60.0 60.0 °C
Black liquor dissolved solids from E1 50.0 50.0 %
Black liquor dissolved solids from E2 33.3 33 %
Black liquor dissolved solids from E3 25.2 25 %
Outlet black liquor temperature 93.7 99.8 °C
Live steam mass ow 11.6 11.3 kg/s
Table 6. Comparison between calculated values and reference values for the 6-effect system
Vari a b le Calculated value Reference value Units
Vapor temperature from E1 129,0 106,3 °C
Vapor temperature from E2 128,5 126,8 °C
Vapor temperature from E3 93,6 89,5 °C
Vapor temperature from E4 78,3 77,2 °C
Vapor temperature from E5 67,1 67,2 °C
Vapor temperature from E6 58,3 58,7 °C
Vapor temperature from E7 52,0 52 °C
Black liquor dissolved solids from E1 29.17 31.65 %
Black liquor dissolved solids from E2 26.59 26.29 %
Black liquor dissolved solids from E3 23.08 24.42 %
Black liquor dissolved solids from E4 19.59 20.32 %
Black liquor dissolved solids from E5 16.66 17.29 %
Black liquor dissolved solids from E6 14.67 15.12 %
Black liquor dissolved solids from E7 13.24 13.45 %
Total live steam mass ow 2.2 1.9 kg/s
89
ARTIGO TÉCNICO/ TECHNICAL ARTICLE
Julho/July 2020
Revista O Papel
O PAPEL vol. 81, num. 07, pp. 83 - 89 - JUL 2020
i.e. the set of variables present in each equation. In other words,
the way the equations are written has a direct impact on the
performance of the simulator. e equations described in Table1
are written in the way that yielded the most satisfactory results.
CONCLUSIONS
e simulator was capable of calculating realistic MEE
systems. To facilitate convergence, it is desirable to make
sure that the equations take a suitable form and that they
are ordered and partitioned. If no good initial estimates can
be given, it is also desirable to solve a simplied model to
generate reasonable estimates.
e simulator currently assumes that the heat transfer
coecient is given by the user, as opposed to being calculated
by the simulator. In the future, this issue may be addressed by
introducing heat transfer correlations. In future work, more unit
processes can be modeled, such as condensate preheaters and
recovery boilers, which would allow for more realistic scenarios
to be simulated. More complex systems should also be tested to
verify if the current solution strategy remains robust.
ACKNOWLEDGEMENTS
e authors are indebted to the Conselho Nacional de
Desenvolvimento Cientíco e Tecnológico (CNPq/BRAZIL) and
Fundação de Amparo à Pesquisa do Estado de Minas Gerais
(Fapemig/BRAZIL) for supporting this study. n
REFERENCES
1. T. Fleiter, D. Fehrenbach, E. Worrell, and W. Eichhammer, “Energy eciency in the German pulp and paper industry–A model-based
assessment of saving potentials,” Energy, vol. 40, no. 1, pp. 84–99. (2012).
2. L. Kong, A. Hasanbeigi, and L. Price, “Assessment of emerging energy-eciency technologies for the pulp and paper industry: a technical
review,” Journal of Cleaner Production, vol. 122, pp. 5–28. (2016).
3. S. Mesfun and A. Toolo, “Optimization of process integration in a Kra pulp and paper mill–Evaporation train and CHP system,” Applied
energy, vol. 107, pp. 98–110. (2013).
4. X. Ji, J. Lundgren, C. Wang, J. Dahl, and C.-E. Grip, “Simulation and energy optimization of a pulp and paper mill–Evaporation plant and
digester,” Applied energy, vol. 97, pp. 30–37. (2012).
5. P. Tikka, “Chemical pulping part 2, Recovery of chemicals and energy,” Papermaking Science and Technology. (2008).
6. M. Cardoso, K. D. de Oliveira, G. A. A. Costa, and M. L. Passos, “Chemical process simulation for minimizing energy consumption in pulp
mills,” Applied Energy, vol. 86, no. 1, pp. 45–51. (2009).
7. D. M. Saturnino, Modeling of kra mill chemical balance. PhD thesis, University of Toronto. (2012).
8. M. R. Olsson, Simulations of Evaporation Plants in Kra Pulp Mills: Including Lignin Extraction and Use of Excess Heat. PhD thesis,
Chalmers University of Technology. (2009).
9. G. Jyoti and S. Khanam, “Simulation of heat integrated multiple eect evaporator system,” International Journal of ermal Sciences, vol.
76, pp. 110–117. (2014).
10. R. Bhargava, S. Khanam, B. Mohanty, and A. Ray, “Selection of optimal feed ow sequence for a multiple eect evaporator system,
Computers & Chemical Engineering, vol. 32, no. 10, pp. 2203–2216. (2008).
11. X. Ding, W. Cai, L. Jia, and C. Wen, “Evaporator modeling–A hybrid approach,” Applied Energy, vol. 86, no. 1, pp. 81–88. (2009).
12. M. Sagharichiha, A. Jafarian, M. Asgari, and R. Kouhikamali, “Simulation of a forward feed multiple eect desalinationplant with vertical
tube evaporators,” Chemical Engineering and Processing: Process Intensication, vol. 75, pp. 110–118. (2014).
13. M. Kermani, Z. Périn-Levasseur, M. Benali, L. Savulescu, and F. Maréchal, “A novel MILP approach for simultaneous optimization of water
and energy: Application to a Canadian sowood Kra pulping mill,” Computers & Chemical Engineering, vol. 102, pp. 238–257. (2017).
14. C. Diel, R. Canevesi, D. Zempulski, J. Awadallak, C. Borba, F. Palú, and E. Silva, “Optimization of multiple-eect evaporation in the pulp
and paper industry using response surface methodology,” Applied ermal Engineering, vol. 95, pp. 18–23. (2016).
15. S. Khanam and B. Mohanty, “Development of a new model for multiple eect evaporator system,” Computers & Chemical Engineering,
vol. 35, no. 10, pp. 1983–1993. (2011).
16. O. P. Verma, G. Manik, and T. H. Mohammed, “Energy management in multi stage evaporator through a steady and dynamic state analysis,
Korean Journal of Chemical Engineering, vol. 34, no. 10, pp. 2570–2583. (2017).
17. O. P. Verma, G. Manik, V. K. Jain, D. K. Jain, H. Wang, et al., “Minimization of energy consumption in multiple stage evaporator using
genetic algorithm,” Sustainable Computing: Informatics and Systems, vol. 20, pp. 130–140. (2018).
18. O. P. Verma, T. H. Mohammed, S. Mangal, and G. Manik, “Minimization of energy consumption in multi-stage evaporator system of kra
recovery process using interior-point method,” Energy, vol. 129, pp. 148–157. (2017).
19. O. P. Verma, G. Manik, and S. K. Sethi, “A comprehensive review of renewable energy source on energy optimization of black liquor in MSE
using steady and dynamic state modeling, simulation and control,” Renewable and Sustainable Energy Reviews, vol. 100, pp. 90–109. (2019).
20. M. Khademi, M. Rahimpour, and A. Jahanmiri, “Simulation and optimization of a six-eect evaporator in a desalination process,” Chemical
Engineering and Processing: Process Intensication, vol. 48, no. 1, pp. 339–347. (2009).
21. D. Srivastava, B. Mohanty, and R. Bhargava, “Modeling and simulation of mee system used in the sugar industry,” Chemical engineering
communications, vol. 200, no. 8, pp. 1089–1101. (2013).
22. S. Khanam and B. Mohanty, “Energy reduction schemes for multiple eect evaporator systems,” Applied Energy, vol. 87, no. 4, pp. 1102–
1111. (2010).
23. D. Kaya and H. I. Sarac, “Mathematical modeling of multiple-eect evaporators and energy economy,” Energ y, vol. 32, no. 8, pp. 1536–1542.
(2007).
24. Fritzson, P. “Principles of object-oriented modeling and simulation with Modelica 2.1.”. John Wiley & Sons. (2010).
25. W. Wagner and H.-J. Kretzschmar, International Steam Tables-Properties of Water and Steam based on the Industrial Formulation IAPWS-
IF97: Tables, Algorithms, Diagrams, and CD-ROM Electronic Steam Tables-All of the equations of IAPWS-IF97 including a complete set of
supplementary backward equations for fast calculations of heat cycles, boilers, and steam turbines. Springer Science & Business Media. (2007).
26. A. Zaman and A. Fricke, “Heat of dilution and enthalpy concentration relations for slash pine kra black liquors,” Chemical Engineering
Communications, vol. 155, no. 1, pp. 197–216. (1996).
ResearchGate has not been able to resolve any citations for this publication.
Thesis
Full-text available
In this thesis, evaporation plants at kraft pulp mills are simulated with the purpose of making them more energy efficient. The work is important since energy saving is assumed to be one of the major solutions for handling the world's energy demand in the future. Pulp and paper mills can do much in this respect; they represent almost 50% of the energy consumption in Swedish industry. In kraft pulp mills, the greatest energy demand is usually in the evaporation plant. To simulate the plants, an existing tool was developed and used; important parameters for the simulations are the amount of water evaporated, the number of evaporation effects, and the solids content profile of the evaporation train. The evaporation plants are assumed to be situated in a model mill resembling typical Scandinavian market pulp mills. To assure realistic assumptions, the project was conducted in cooperation with industrial representatives in a national research programme. Previous research shows that great energy savings can be obtained in evaporation plants by reusing excess heat, provided that excess heat can be made available in the mill. Evaporation plants that reuse excess heat are called process-integrated (PI) plants. The energy surplus resulting from the savings could be exported from the mill to replace fossil fuels. For example, the surplus could be extracted as the energy-rich component lignin. As an excerpt of the results, 26% of the live steam could be saved in the evaporation plant by employing a 7-effect PI plant (1.0 GJ/ADt of excess heat) instead of a modern 7-effect conventional plant. The additional profit for PI plants was 0.3–1.5 €/ADt in comparison with conventional plants (for the conditions in Paper 6). With predictably higher energy prices in the future, the profits from energy-saving measures could increase further. As an example of the results for lignin extraction, an evaporation plant with 190 kg/ADt lignin extraction (LE) requires 12% more live steam than a plant without LE. Should the viscosity of lignin-lean black liquor be as low as recent experiments indicate, the investment cost for a plant with LE may be only 5% higher than that for a plant without LE. An overall conclusion from the cooperative work is that LE may be economically interesting for pulp mills, at least in connection with increased pulp production. However, the results depend greatly on the electricity and lignin prices.
Article
Full-text available
In this work, a generalized steady-state mathematical model has been developed for simulation of the multiple effect evaporator (MEE) system, used in the Indian sugar industry. The developed model is capable of handling exhaust steam (saturated/superheated) inputs in more than one effect, vapor bleeding from desired effects, heat loss from each effect, and variations in boiling point rise as well as specific heat capacity with combination, heat transfer coefficient through external empirical correlations, and condensate flashing. The developed model has been solved by the globally convergent method. The results of present investigations have been validated against the data obtained from the Indian sugar industry with seven effects. The predicted exit liquor concentration, vapor body temperature, and amount of vapor bleed from each effect shows close agreement with the industry data within a maximum error band of ±2%. Further, a correlation has been developed for the prediction of overall heat transfer coefficient (OHTC) of each effect. The developed model can be further used to improve the steam economy of the MEE system by the incorporation of flash vapors from condensate stream.
Article
Increasing energy demand, high energy cost and global warming issues require energy-intensive industries to make sincere efforts to improve energy efficiency. The energy consumption data available for different industries suggests that pulp and paper industry accounts for a significant share. Amongst various procedures to make paper, Kraft recovery process is majorly employed that yields weak but lignin-rich black liquor as a byproduct. Black liquor is one of the emerging biomass energy resources with a strong potential to be used as a biofuel for generating steam/energy to operate the process units, thereby, ensuring process self-sufficiency and sustainability. A Multi-Stage Evaporator (MSE) is needed to concentrate it but suffers from being the most energy consuming unit among all. This piques our interest to explore various energy reducing schemes or configurations used previously for MSE and to report previous research endeavors in the area of steady–state, dynamic modeling and simulation of such processes. It is noted that steady-state and transient behavior analysis together with an efficient controller design may significantly contribute in eliminating or troubleshooting problems to ensure both energy savings and product quality. The article highlights that such an analysis and effective solutions of developed models, due to their non-linear complex nature, are highly dependent on the nature of the algorithm employed. Attempts to design control techniques to enable efficient process control and to eliminate process uncertainties have suffered limitations not only due to inherent inefficiency of control techniques but also due to insufficient underlying knowledge or inappropriate modeling of system transience. With this perspective in mind, advanced and intelligent control techniques and their influence on process/energy transience and optimization have been reviewed. Here, we propose that it is very essential to maintain sufficient prudence in selecting an appropriate simulation, optimization and control algorithm to ensure a sustainable production.
Article
Maximization of the steam efficiency of a multiple stage evaporator employed for concentrating black liquor in pulp and paper mills carries immense significance and relevance in today's scenario. Nonlinear mathematical models of heptads' effects backward feed flow with various energy saving schemes namely, steam-split, feed-split, feed-preheating and their hybrid operations have been developed. The steam economy as a cost function translates the problem into a nonlinear optimal search problem. The mass and heat balance equations act as nonlinear equality constraints while vapor temperatures and liquor flows appear as inequality constraints. The formulated problem has been solved efficiently to attain optimal solution using Genetic Algorithm approach which demonstrates advantages of convergence and relative less sensitivity towards initial values versus conventional algorithms. The simulations indicate that a hybrid of steam-split, feed-split and feed-preheating process arrangements with backward feed flow could provide the highest heat transfer across evaporator effects with an optimum steam economy of 6.47 and consumption of 6541.93. kg/h.
Article
Increasing energy demand, high cost of energy and global warming issues across the globe require energyintensive industries, such as paper mills to improve energy efficiency. Multi-stage evaporators used to concentrate the black liquor in such mills form its most energy consuming unit and require a strong understanding of steady and unsteady state behavior to ensure energy savings. The modeling of nonlinear heptads’ effect system yielded a set of complex nonlinear algebraic and differential equations that are analyzed using Interior-point method and state space representation. Dynamic response of product concentration and system vapor temperatures along with system stability and controllability have been explored by disturbing the flow rate, concentration and temperature of feed, and fresh steam flow rate. Simulations predict that steam flow rate, feed flow rate and its concentration invariably are major controlling factors (in decreasing order) of vapor temperature and product concentration. The interactive behavior between different effects translates into slower responses of the effects with increasing separation from disturbance source. This steady state and transient study opens many new explanations to this relatively less explored area and helps to propose and implement industrial PID controllers to reduce steam consumption and control product quality.
Article
The maximization of the energy (steam) efficiency of a multi-stage evaporator system used for concentrating the black liquor in pulp and paper mills carries immense significance in today’s scenario. The nonlinear mathematical models of heptads’ effect backward feed flow with various energy saving schemes namely, steam-split, feed-split, feed-preheating and their hybrid operations have been developed. The steam economy as a cost function translates the problem into a nonlinear optimal search problem. The mass and heat balance equations act as nonlinear equality constraints while vapor temperatures and liquor flows appear as inequality constraints. The formulated optimal problem has been solved efficiently using Interior-Point Method which demonstrates advantages of convergence and less sensitivity towards initial values versus conventional algorithms. The simulation results indicate that a hybrid of steam-split, feed-split and feed-preheating process arrangements with backward feed flow could provide the highest heat transfer across evaporator effects with optimum of steam economy of ∼6.49 and consumption of ∼1.97 kg/s.
Article
An optimization methodology based on Mixed Integer Linear Programming (MILP) has been developed for simultaneous optimization of water and energy (SOWE) in industrial processes. The superstructure integrates non-water process thermal streams and optimizes the consumption of water, while maximizing internal heat recovery to reduce thermal utility consumption. To address the complexity of water and energy stream distribution in pulp and paper processes, three features have been incorporated in the proposed SOWE method: (a) Non-Isothermal Mixing (NIM) has been considered through different locations to reduce the number of thermal streams and decrease the investment cost by avoiding unnecessary investment on heat exchangers; (b) the concept of restricted matches combined with water tanks has been added to the superstructure; and (c) the Integer-Cut Constraint technique has been combined with the MILP model to systematically generate a set of optimal solutions to support the decision-making for cost-effective configurations. The performance of the proposed improved MILP approach has been evaluated using several examples from the literature and applied to a Canadian softwood Kraft pulping mill as an industrial case study. The results indicate that this approach provides enhanced key performance indicators as compared to conceptual and non-linear complex mathematical optimization approaches.
Article
The pulp and paper industry accounts for approximately 5% of total industrial energy consumption and contributes 2% of direct carbon dioxide (CO2) emissions from industries. World paper and paperboard demand and production are increasing significantly, leading to an increase in this sector's energy use and CO2 emissions. Although current studies identify a wide range of energy-efficiency technologies that have already been commercialized for the pulp and paper industry, information is limited or scattered regarding new energy-efficiency technologies that are not yet fully commercialized. Development of emerging or advanced energy-efficiency technologies and their deployment in the market will be crucial for this industry's mid- and long-term energy saving and climate change mitigation strategies. This paper compiles available information on energy savings, environmental and other benefits, costs, and commercialization status for 25 emerging technologies to reduce the energy use and CO2 emissions. The purpose is to provide a well-structured comprehensive review on these emerging energy-efficiency technologies for engineers, researchers, investors, policy makers, pulp and/or paper companies, and other interested parties.
Article
The steady-state evaporation process was modeled by means of a phenomenological model based on mass and energy balances. The Newton method for nonlinear systems was adopted and then statistical methods were used for the preparation of an empirical model. The mathematical model was validated through a comparison with data reported in the literature. Surface responses were used for the optimization of the process by considering the output composition of the black liquor and the coefficient performance of the evaporator system (COP) as the response variables. The variables evaluated in the planning were the live steam ratio and the temperature of the live steam in evaporators 1 and 2. The temperature of the live steam entering the second evaporator was shown to be the most influential variable for the output composition, followed by the live steam flow ratio. For COP, the live steam flow ratio was the most influential variable, followed by the temperature of the live steam entering the first and second evaporators. The maximum value of the COP was achieved for a live steam flow ratio of 0.47 with the temperature of the live steam in evaporator 1 at 128.24 °C and the temperature of the live steam in evaporator 2 at 137.52 °C with a desirable function of 5.29.