├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md └── docs ├── CCSI Process Models User Manual.docx └── CCSI Process Models User Manual.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Solvents/MEA_ssm"] 2 | path = Solvents/MEA_ssm 3 | url = git@github.com:CCSI-Toolset/MEA_ssm.git 4 | [submodule "Solvents/MEA_dm"] 5 | path = Solvents/MEA_dm 6 | url = git@github.com:CCSI-Toolset/MEA_dm.git 7 | [submodule "Solvents/SolventCrossflowHX"] 8 | path = Solvents/SolventCrossflowHX 9 | url = git@github.com:CCSI-Toolset/SolventCrossflowHX.git 10 | [submodule "OtherModels/compressor"] 11 | path = OtherModels/compressor 12 | url = git@github.com:CCSI-Toolset/compressor.git 13 | [submodule "OtherModels/membrane_model"] 14 | path = OtherModels/membrane_model 15 | url = git@github.com:CCSI-Toolset/membrane_model.git 16 | [submodule "SolidSorbents/bfb_reactor"] 17 | path = SolidSorbents/bfb_reactor 18 | url = git@github.com:CCSI-Toolset/bfb_reactor.git 19 | [submodule "SolidSorbents/intcap"] 20 | path = SolidSorbents/intcap 21 | url = git@github.com:CCSI-Toolset/intcap.git 22 | [submodule "SolidSorbents/mb_reactor"] 23 | path = SolidSorbents/mb_reactor 24 | url = git@github.com:CCSI-Toolset/mb_reactor.git 25 | [submodule "SolidSorbents/bfb_drom"] 26 | path = SolidSorbents/bfb_drom 27 | url = git@github.com:CCSI-Toolset/bfb_drom.git 28 | [submodule "Solvents/2-mpz"] 29 | path = Solvents/2-mpz 30 | url = git@github.com:CCSI-Toolset/2-mpz.git 31 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 - 2018 2 | 3 | ### Copyright Notice ### 4 | 5 | Process Models Bundle was produced under the DOE Carbon Capture Simulation Initiative (CCSI), and is copyright (c) 2012 - 2018 by the software owners: Oak Ridge Institute for Science and Education (ORISE), Los Alamos National Security, LLC., Lawrence Livermore National Security, LLC., The Regents of the University of California, through Lawrence Berkeley National Laboratory, Battelle Memorial Institute, Pacific Northwest Division through Pacific Northwest National Laboratory, Carnegie Mellon University, West Virginia University, Boston University, the Trustees of Princeton University, The University of Texas at Austin, URS Energy & Construction, Inc., et al.. All rights reserved. 6 | 7 | NOTICE. This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit other to do so. 8 | 9 | ### License Agreement ### 10 | 11 | Process Models Bundle Copyright (c) 2012 - 2018, by the software owners: Oak Ridge Institute for Science and Education (ORISE), Los Alamos National Security, LLC., Lawrence Livermore National Security, LLC., The Regents of the University of California, through Lawrence Berkeley National Laboratory, Battelle Memorial Institute, Pacific Northwest Division through Pacific Northwest National Laboratory, Carnegie Mellon University, West Virginia University, Boston University, the Trustees of Princeton University, The University of Texas at Austin, URS Energy & Construction, Inc., et al. All rights reserved. 12 | 13 | 14 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 15 | 16 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 17 | 18 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 19 | 20 | 3. Neither the name of the Carbon Capture Simulation Initiative, U.S. Dept. of Energy, the National Energy Technology Laboratory, Oak Ridge Institute for Science and Education (ORISE), Los Alamos National Security, LLC., Lawrence Livermore National Security, LLC., the University of California, Lawrence Berkeley National Laboratory, Battelle Memorial Institute, Pacific Northwest National Laboratory, Carnegie Mellon University, West Virginia University, Boston University, the Trustees of Princeton University, the University of Texas at Austin, URS Energy & Construction, Inc., nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 21 | 22 | 23 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 | 25 | 26 | You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to Lawrence Berkeley National Laboratory, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. 27 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # A simple makefile for creating the High Resolution CFD Models bundled product 2 | VERSION := $(shell git describe --tags --dirty) 3 | PRODUCT := Process Models Bundle 4 | PROD_SNAME := ProcessModels_bundle 5 | LICENSE := LICENSE.md 6 | PKG_DIR := CCSI_$(PROD_SNAME)_$(VERSION) 7 | PACKAGE := $(PKG_DIR).zip 8 | 9 | CATEGORIES := SolidSorbents Solvents OtherModels 10 | 11 | TARBALLS := *.tgz 12 | ZIPFILES := *.zip 13 | 14 | # The bundled packages, as found in each category subdir 15 | SUB_PACKAGES := $(foreach c,$(CATEGORIES), $(wildcard $c/$(TARBALLS) $c/$(ZIPFILES))) 16 | 17 | PAYLOAD := README.md \ 18 | docs/*.pdf \ 19 | $(LICENSE) 20 | 21 | # Get just the top part (not dirname) of each entry so cp -r does the right thing 22 | PAYLOAD_TOPS := $(foreach v,$(PAYLOAD),$(shell echo $v | cut -d'/' -f1)) 23 | # And the payload (including expanded projects) with the PKG_DIR prepended 24 | PKG_PAYLOAD := $(addprefix $(PKG_DIR)/, $(PAYLOAD) $(basename $(SUB_PACKAGES))) 25 | 26 | # OS detection & changes 27 | UNAME := $(shell uname) 28 | ifeq ($(UNAME), Linux) 29 | MD5BIN=md5sum 30 | endif 31 | ifeq ($(UNAME), Darwin) 32 | MD5BIN=md5 33 | endif 34 | ifeq ($(UNAME), FreeBSD) 35 | MD5BIN=md5 36 | endif 37 | 38 | .PHONY: all clean $(CATEGORIES) 39 | 40 | all: $(PACKAGE) 41 | 42 | # Go into each category's subdir and break open the archives there 43 | # into the corresponding subdir in the PKG_DIR 44 | $(CATEGORIES): 45 | @mkdir -p $(PKG_DIR)/$@ 46 | 47 | @for dir in $(wildcard $@/*); \ 48 | do \ 49 | $(MAKE) -C $$dir clean; \ 50 | $(MAKE) -C $$dir; \ 51 | done 52 | 53 | @for tb in $(wildcard $@/*/$(TARBALLS)); do \ 54 | tar -xzf $$tb -C $(PKG_DIR)/$@; \ 55 | done 56 | 57 | @for zf in $(wildcard $@/*/$(ZIPFILES)); do \ 58 | unzip -qo $$zf -d $(PKG_DIR)/$@; \ 59 | done 60 | 61 | 62 | 63 | $(PACKAGE): $(CATEGORIES) $(PAYLOAD) 64 | @mkdir -p $(PKG_DIR) 65 | @cp -r $(PAYLOAD_TOPS) $(PKG_DIR) 66 | @zip -qXr $(PACKAGE) $(PKG_PAYLOAD) 67 | @$(MD5BIN) $(PACKAGE) 68 | @rm -rf $(PKG_DIR) 69 | 70 | clean: 71 | @rm -rf $(PACKAGE) $(PKG_DIR) 72 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Process Models Bundle 2 | A suite of process models implemented in both Aspen Custom Modeler and gPROMS Model Builder, as well as models implemented within Aspen Plus and Aspen Plus Dynamics. 3 | 4 | This is a convenience bundle containing the following CCSI Toolset products: 5 | 6 | **Solid Sorbents** 7 | - [Bubbling Fluidized Bed Dynamic Reduced Order](../../../bfb_drom) 8 | - [Bubbling Fluidized Bed Reactor](../../../bfb_reactor) 9 | - [Integrated Capture Systems Model](../../../intcap) 10 | - [Moving Bed Reactor Model](../../../mb_reactor) 11 | 12 | **Solvents** 13 | - [High Viscosity Solvent Model, 2-MPZ](../../../2-mpz) 14 | - [MEA Dynamic Model](../../../MEA_dm) 15 | - [MEA Steady State Model](../../../MEA_ssm) 16 | - [Solvent Crossflow Heat Exchanger Calculator](../../../SolventCrossflowHX) 17 | 18 | **Other Process Models** 19 | - [Multi-stage Centrifugal Compressor Model](../../../compressor) 20 | - [Membrane Separation Model](../../../membrane_model) 21 | 22 | You can download the entire [bundle](../../releases/latest) or follow the above links to the individual products. 23 | 24 | ## Getting Started 25 | See installation and user guide documents in the [documentation](docs) subdirectory. 26 | 27 | ## Versioning 28 | We use [SemVer](http://semver.org/) for versioning. For the versions available, 29 | see the [releases](../../releases) or [tags](../../tags) on this repository. 30 | 31 | ## License & Copyright 32 | See [LICENSE.md](LICENSE.md) file for details 33 | -------------------------------------------------------------------------------- /docs/CCSI Process Models User Manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSI-Toolset/ProcessModels_bundle/14183b9db40771b3e7712c26fc08f50a7af43d6b/docs/CCSI Process Models User Manual.docx -------------------------------------------------------------------------------- /docs/CCSI Process Models User Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSI-Toolset/ProcessModels_bundle/14183b9db40771b3e7712c26fc08f50a7af43d6b/docs/CCSI Process Models User Manual.pdf --------------------------------------------------------------------------------