-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the simple documentation of the cstr using readme.
- Loading branch information
1 parent
b308fb0
commit 0aa9e0c
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# GDP Reactor Series Design | ||
Function that builds CSTR superstructure model of size NT (default = 5). | ||
NT is the number of reactors in series. | ||
The CSTRs have a single 1st order auto catalytic reaction A -> B and minimizes total reactors series volume. | ||
The optimal solution should yield NT reactors with a recycle before reactor NT. | ||
|
||
Reference: | ||
> Linan, D. A., Bernal, D. E., Gomez, J. M., & Ricardez-Sandoval, L. A. (2021). Optimal synthesis and design of catalytic distillation columns: A rate-based modeling approach. Chemical Engineering Science, 231, 116294. https://doi.org/10.1016/j.ces.2020.116294 | ||
### Solution | ||
|
||
Best known objective value: 3.06181298849707 | ||
|
||
### Size | ||
|
||
Number of reactors in series is 5. | ||
|
||
| Problem | vars | Bool | bin | int | cont | cons | nl | disj | disjtn | | ||
|-----------|------|------|-----|-----|------|------|----|------|--------| | ||
| gdp_reactors | 71 | 15 | 0 | 0 | 56 | 25 | 2 | 20 | 10 | | ||
|
||
- ``vars``: variables | ||
- ``Bool``: Boolean variables | ||
- ``bin``: binary variables | ||
- ``int``: integer variables | ||
- ``cont``: continuous variables | ||
- ``cons``: constraints | ||
- ``nl``: nonlinear constraints | ||
- ``disj``: disjuncts | ||
- ``disjtn``: disjunctions |