Model description
This example shows how to solve a dynamic optimization problem with single shooting via MOSAICmodeling. The case study focuses on a CSTR for which two inputs must be optimally chosen so that the integral of component 1 over a time horizon of one hour is maximized. The example is governed by the following equations:
The first equation is the generic component balance. The second equation is the energy balance. The third equation determines the integral of the concentration of component 1 numerically. The fourth equation represents an inequality constraint that specifies the upper bound of the reactor temperature. Finally, the last equation calculates the objective value for the optimization. This is the negative integral as we want to minimize the function later on.
Modeling Workflow
Notation of equation system
For the notation of the equation, we need to set up all base names, superscripts, and indices that appear in the equations, i.e.
Base names
- , enthalpy difference in kJ/mol
- , stoichiometric coefficient
- , density in kg/m³
- , molar concentration in mol/m³
- , activation energy in J/mol
- , objective
- , volume flow in m³/s
- , inequality slack variable in K
- , pre-exponential factor for kinetics in 1/s
- , universal gas constant in J/mol/K
- , time in s
- , temperature in K
- , product of overall heat transfer coefficient and jacket are in kW/K
- , volume in m³
Superscripts
- in, inlet
- integral, integral over time horizon
- max, maximum
Subscripts
- jacket, reactor jacket
- R, reaction
Indices
- , component index 1..NC
- , reaction index 1..NR
The resulting notation has ID 185805.
Equations
Next, we can define the equations of the model. Therefore, we open the equation editor, load the notation we just created, and enter the equations as stated above in the model description. The formulated equations are available with the IDs 185806, 185807, 185819, 185811, and 185812 (5 equations).
Equation system
Now we are able to construct our equation system:
- Go to “Equation System” and load the notation for the equations
- Add the eleven constraints and the objective function to your system in the Connected Elements tab
- Save your equation system
This equation system is available with ID 185808.
Simulation workflow
Your model is now complete and you can move on to the “Simulation” section of MOSAICmodeling.
- Enter a suitable description
- Select the tab Equation System and load the system created in the previous steps. Assign the maximum values for the available indices (NC = 3, NR = 2) and click on Confirm Index Data
- Select the tab Specifications. In the list ALL VARIABLES, you will find the variables as defined in your model notation.
- Classify the variables as design variables and iteration values, respectively, by selecting the category from the dropdown menu in the Type column.
The simulation will be specified and initialized with the values given in Table 1. After having assigned the initial guesses and the parameter values, you can save the variable specification and then the simulation. The simulation is available in MOSAICmodeling with ID 185809. The respective variable specification that may serve as initialization for the optimization has ID 185810.
Name | Description | Value / Initial guess / Initial condition |
---|---|---|
Enthalpy of reaction for reaction 1 | 45000.0 | |
Enthalpy of reaction for reaction 2 | -55000.0 | |
Stoichiometric coefficient of component 1 for reaction 1 | -1 | |
Stoichiometric coefficient of component 1 for reaction 2 | 1 | |
Stoichiometric coefficient of component 2 for reaction 1 | 0 | |
Stoichiometric coefficient of component 2 for reaction 2 | -1 | |
Stoichiometric coefficient of component 2 for reaction 1 | 1 | |
Stoichiometric coefficient of component 3 for reaction 2 | 0 | |
Density | 800.0 | |
Activation energy of reaction 1 | 69000.0 | |
Activation energy of reaction 2 | 72000.0 | |
Volume flow of feed | 6.5E-4 | |
Universal gas constant | 8.3144598 | |
Inlet temperature | 333.0 | |
Maximum temperature | 350.0 | |
Temperature of jacket | 333.0 | |
Cooling characteristic | 1.4 | |
Volume | 1.0 | |
Inlet concentration of component 1 | 5.0 | |
Inlet concentration of component 2 | 20.0 | |
Inlet concentration of component 3 | 3.0 | |
Heat capacity | 3.5 | |
Pre-exponential factor of reaction 1 | 5.0E6 | |
Pre-exponential factor of reaction 2 | 1.0E7 | |
Initial condition for temperature | 333.0 | |
Initial condition for concentration of component 1 | 8.0 | |
Initial condition for concentration of component 2 | 20.0 | |
Initial condition for concentration of component 3 | 0.0 | |
Initial condition for integral of concentration of component 1 | 0.0 | |
Initial guess for slack variable | -17.0 | |
Initial guess for objective | 0.0 |
Optimization workflow
Now move to the “Optimization” section in MOSAICmodeling and go to the Specification tab.
Constraints
Go to the Constraints tab and load your simulation from the previous step. Make sure that all constraints and the objective function are loaded successfully.
Variable specification
Go to the Variable specification. If you saved the simulation after you saved the variable specification, the variable specification from the simulation should be loaded in the optimization as well.
- Start by assigning as objective value.
- Then assign and as optimization values and set their lower and upper bounds to 273 and 373, respectively
- Set an upper bound of 0 for
- You can now save the variable specification – either by overwriting the one from your simulation or by creating a new one.
- Save the optimization
The resulting variable specification with the updated type classifications and variable bounds has ID 185817. The optimization has ID 186816.
Code generation and execution
Go to the tab Code Generation & Execution and take a look at the Status window: It should read 1 variable selected for minimization and 2 variables selected for optimization. Load the user-defined language specificator with ID 185804, which is created in the example Use of User-defined Language Specifications II – Parameter Estimation with Single Shooting and click on Generate Code. Copy the export to Matlab and solve this optimization problem sequentially. Note that the algorithm ‘SQP’ is chosen as preference because this was the only algorithm that was able to solve this problem. The default algorithm ‘Interior-point’ might be able to solve the problem if the algorithm’s parameters are modified. With the default options, it terminates with an infeasible solution. The optimal solution for the two controls and are 327 K and 328 K, respectively. However, the solution depends on the initial guesses for the decisions as the only constraint for the maximum temperature is active and the reactor temperature can either be reduced by a lower inlet temperature or a lower cooling temperature.
Note that the used UDLS is still fairly simple as only one control setpoint is allowed over the full time horizon of one hour. Of course, this could be further refined.