Physical Property Methods and Models 11.1 Contents • Iii SRK

Total Page:16

File Type:pdf, Size:1020Kb

Physical Property Methods and Models 11.1 Contents • Iii SRK Part Number: Aspen Physical Property System 11.1 September 2001 Copyright (c) 1981-2001 by Aspen Technology, Inc. All rights reserved. Aspen Plus®, Aspen Properties®, Aspen Engineering Suite , AspenTech®, ModelManager , the aspen leaf logo and Plantelligence are trademarks or registered trademarks of Aspen Technology, Inc., Cambridge, MA. BATCHFRAC and RATEFRAC are trademarks of Koch Engineering Company, Inc. All other brand and product names are trademarks or registered trademarks of their respective companies. This manual is intended as a guide to using AspenTech’s software. This documentation contains AspenTech proprietary and confidential information and may not be disclosed, used, or copied without the prior consent of AspenTech or as set forth in the applicable license agreement. Users are solely responsible for the proper use of the software and the application of the results obtained. Although AspenTech has tested the software and reviewed the documentation, the sole warranty for the software may be found in the applicable license agreement between AspenTech and the user. ASPENTECH MAKES NO WARRANTY OR REPRESENTATION, EITHER EXPRESSED OR IMPLIED, WITH RESPECT TO THIS DOCUMENTATION, ITS QUALITY, PERFORMANCE, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. Corporate Aspen Technology, Inc. Ten Canal Park Cambridge, MA 02141-2201 USA Phone: (1) (617) 949-1021 Toll Free: (1) (888) 996-7001 Fax: (1) (617) 949-1724 URL: http://www.aspentech.com Division Design, Simulation and Optimization Systems Aspen Technology, Inc. Ten Canal Park Cambridge, MA 02141-2201 USA Phone: (617) 949-1000 Fax: (617) 949-1030 Contents For More Information.......................................................................................................viii Technical Support.............................................................................................................viii Contacting Customer Support ................................................................................ix Hours ......................................................................................................................ix Phone ......................................................................................................................ix Fax ...........................................................................................................................x E-mail ......................................................................................................................x Overview of Aspen Physical Property Methods 1-1 Overview ..........................................................................................................................1-1 Thermodynamic Property Methods..................................................................................1-2 Equation-of-State Method ....................................................................................1-3 Activity Coefficient Method.................................................................................1-8 Equation-of-State Models...................................................................................1-20 Activity Coefficient Models ...............................................................................1-29 Transport Property Methods...........................................................................................1-32 Viscosity and Thermal Conductivity Methods...................................................1-32 Diffusion Coefficient Methods...........................................................................1-33 Surface Tension Methods ...................................................................................1-34 Nonconventional Component Enthalpy Calculation ......................................................1-34 References ......................................................................................................................1-36 Property Method Descriptions 2-1 Overview ..........................................................................................................................2-1 Classification of Property Methods and Recommended Use ...........................................2-1 IDEAL Property Method..................................................................................................2-7 Property Methods for Petroleum Mixtures.....................................................................2-10 Liquid Fugacity and K-Value Model Property Methods....................................2-11 BK10...................................................................................................................2-11 CHAO-SEA........................................................................................................2-12 GRAYSON/ GRAYSON2 .................................................................................2-13 MXBONNEL......................................................................................................2-15 Petroleum-Tuned Equation-of-State Property Methods.....................................2-15 PENG-ROB ........................................................................................................2-16 RK-SOAVE........................................................................................................2-17 Physical Property Methods and Models 11.1 Contents • iii SRK ....................................................................................................................2-18 Common Models ................................................................................................2-20 Equation-of-State Property Methods for High-Pressure Hydrocarbon Applications.....2-21 BWR-LS .............................................................................................................2-22 BWRS.................................................................................................................2-23 LK-PLOCK ........................................................................................................2-25 PR-BM................................................................................................................2-26 RKS-BM.............................................................................................................2-27 Common Models ................................................................................................2-28 Flexible and Predictive Equation-of-State Property Methods........................................2-29 PRMHV2............................................................................................................2-31 PRWS .................................................................................................................2-32 PSRK ..................................................................................................................2-33 RK-ASPEN.........................................................................................................2-34 RKSMHV2 .........................................................................................................2-35 RKSWS ..............................................................................................................2-36 SR-POLAR.........................................................................................................2-37 Common Models ................................................................................................2-38 Liquid Activity Coefficient Property Methods...............................................................2-40 Equations of State...............................................................................................2-40 Activity Coefficient Models ...............................................................................2-47 Common Models ................................................................................................2-56 Electrolyte Property Methods.........................................................................................2-56 AMINES.............................................................................................................2-58 APISOUR ...........................................................................................................2-60 ELECNRTL........................................................................................................2-61 ENRTL-HF.........................................................................................................2-63 ENRTL-HG ........................................................................................................2-63 PITZER...............................................................................................................2-64 B-PITZER...........................................................................................................2-66 PITZ-HG.............................................................................................................2-68 General and Transport Property Model Parameter Requirements......................2-68 Solids Handling Property Method ..................................................................................2-69 Steam Tables...................................................................................................................2-73 STEAM-TA........................................................................................................2-73 STEAMNBS/STEAMNBS2 ..............................................................................2-74 Property
Recommended publications
  • FUGACITY It Is Simply a Measure of Molar Gibbs Energy of a Real Gas
    FUGACITY It is simply a measure of molar Gibbs energy of a real gas . Modifying the simple equation for the chemical potential of an ideal gas by introducing the concept of a fugacity (f). The fugacity is an “ effective pressure” which forces the equation below to be true for real gases: θθθ f µµµ ,p( T) === µµµ (T) +++ RT ln where pθ = 1 atm pθθθ A plot of the chemical potential for an ideal and real gas is shown as a function of the pressure at constant temperature. The fugacity has the units of pressure. As the pressure approaches zero, the real gas approach the ideal gas behavior and f approaches the pressure. 1 If fugacity is an “effective pressure” i.e, the pressure that gives the right value for the chemical potential of a real gas. So, the only way we can get a value for it and hence for µµµ is from the gas pressure. Thus we must find the relation between the effective pressure f and the measured pressure p. let f = φ p φ is defined as the fugacity coefficient. φφφ is the “fudge factor” that modifies the actual measured pressure to give the true chemical potential of the real gas. By introducing φ we have just put off finding f directly. Thus, now we have to find φ. Substituting for φφφ in the above equation gives: p µ=µ+(p,T)θ (T) RT ln + RT ln φ=µ (ideal gas) + RT ln φ pθ µµµ(p,T) −−− µµµ(ideal gas ) === RT ln φφφ This equation shows that the difference in chemical potential between the real and ideal gas lies in the term RT ln φφφ.φ This is the term due to molecular interaction effects.
    [Show full text]
  • 'Unix' in a File
    ============================ AWK COMMANDS ================================ 1) find the total occurances of pattern of 'unix' in a file. ==> $awk '/unix/ {count++} END{print count}' nova.txt 2) find the total line of a file. ==> $awk 'END{print NR}' nova.txt 3) print the total number of even line of a file. ==> $awk 'NR % 2' nova.txt 4) print the total number of odd line of a file. ==> $awk 'NR % 2 == 1' nova.txt 5) print the sums of the field of every line of a file. ==> $awk '{ sum = $3+sum } END{print sum}' emp.txt 6) display those words whose length greater than 10 and consist of digits only in file awk ==> $awk '/^[0-9]+$/ length<10 {print}' t3.txt 7) display those words whose length less than 10 and consist of alpha only in file awk ==> $awk '/^[a-zA-Z]+$/ length >3 {print}' t3.txt 8) print odd number of word in each line ==> awk -F\| '{s="";for (i=1;i<=NF;i+=2) { {s=s? $i:$i} print s }}' nova.txt { s = ""; for (i = 1; i <= NF; i+=2) { s = s ? $i : $i } print s } 9) print even number of word in each line ==> awk -F\| '{s="";for (i=0;i<=NF;i+=2) { {s=s? $i:$i} print s }}' nova.txt ==> { s = ""; for (i = 0; i <= NF; i+=2) { s = s ? $i : $i } print s } 10) print the last character of a string using awk ==> awk '{print substr($0,length($0),1)}' nova.txt ============================ MIX COMMANDS ================================ 1) Assign value of 10th positional parameter to 1 variable x. ==> x=${10} 2) Display system process; ==> ps -e ==> ps -A 3) Display number of process; ==> ps aux 4) to run a utility x1 at 11:00 AM ==> at 11:00 am x1 5) Write a command to print only last 3 characters of a line or string.
    [Show full text]
  • Selection of Thermodynamic Methods
    P & I Design Ltd Process Instrumentation Consultancy & Design 2 Reed Street, Gladstone Industrial Estate, Thornaby, TS17 7AF, United Kingdom. Tel. +44 (0) 1642 617444 Fax. +44 (0) 1642 616447 Web Site: www.pidesign.co.uk PROCESS MODELLING SELECTION OF THERMODYNAMIC METHODS by John E. Edwards [email protected] MNL031B 10/08 PAGE 1 OF 38 Process Modelling Selection of Thermodynamic Methods Contents 1.0 Introduction 2.0 Thermodynamic Fundamentals 2.1 Thermodynamic Energies 2.2 Gibbs Phase Rule 2.3 Enthalpy 2.4 Thermodynamics of Real Processes 3.0 System Phases 3.1 Single Phase Gas 3.2 Liquid Phase 3.3 Vapour liquid equilibrium 4.0 Chemical Reactions 4.1 Reaction Chemistry 4.2 Reaction Chemistry Applied 5.0 Summary Appendices I Enthalpy Calculations in CHEMCAD II Thermodynamic Model Synopsis – Vapor Liquid Equilibrium III Thermodynamic Model Selection – Application Tables IV K Model – Henry’s Law Review V Inert Gases and Infinitely Dilute Solutions VI Post Combustion Carbon Capture Thermodynamics VII Thermodynamic Guidance Note VIII Prediction of Physical Properties Figures 1 Ideal Solution Txy Diagram 2 Enthalpy Isobar 3 Thermodynamic Phases 4 van der Waals Equation of State 5 Relative Volatility in VLE Diagram 6 Azeotrope γ Value in VLE Diagram 7 VLE Diagram and Convergence Effects 8 CHEMCAD K and H Values Wizard 9 Thermodynamic Model Decision Tree 10 K Value and Enthalpy Models Selection Basis PAGE 2 OF 38 MNL 031B Issued November 2008, Prepared by J.E.Edwards of P & I Design Ltd, Teesside, UK www.pidesign.co.uk Process Modelling Selection of Thermodynamic Methods References 1.
    [Show full text]
  • Questions: Physical Properties and 7 Step Process
    Questions: Physical Properties and 7 Step Process 1. Why does a water-saturated sandstone typically have a higher P-wave velocity than a dry sandstone? A saturated sandstone: a. is more dense b. has a larger bulk modulus c. has a larger shear modulus d. has a higher tensile strength 2. The relative permittivity of a given rock is considered large when: a. it contains a lot of pore water b. an applied electric field results in a larger electric dipole moment c. it has a value of 30 d. b and c are correct e. a,b and c are correct 3. You measure a resistance of 16 kΩ between two parallel faces of a 2cm x 2cm x 2cm cube. Determine the resistivity. a. 320 Ωm b. 800000 Ωm c. 32000 Ωm d. 8000 Ωm 4. You are flying a gravity survey over a sedimentary basin. The flight path crosses a known dyke. What would be the expected gravity response and why? a. Gravity high over the dyke; the dyke is more dense than the background b. Gravity low over the dyke; the dyke is less dense than the background c. Gravity high over the dyke; the dyke is less dense than the background d. Gravity low over the dyke; the dyke is more dense than the background 5. You are building a road through known active Karst terrain in Ireland. Which set of physical property contrasts would be most diagnostic for locating regions where sink- holes could form? a. Karstified: low density, Limestone: high density b. Karstified: low resistivity, Limestone: high resistivity c.
    [Show full text]
  • Evaluation of UNIFAC Group Interaction Parameters Usijng Properties Based on Quantum Mechanical Calculations Hansan Kim New Jersey Institute of Technology
    New Jersey Institute of Technology Digital Commons @ NJIT Theses Theses and Dissertations Spring 2005 Evaluation of UNIFAC group interaction parameters usijng properties based on quantum mechanical calculations Hansan Kim New Jersey Institute of Technology Follow this and additional works at: https://digitalcommons.njit.edu/theses Part of the Chemical Engineering Commons Recommended Citation Kim, Hansan, "Evaluation of UNIFAC group interaction parameters usijng properties based on quantum mechanical calculations" (2005). Theses. 479. https://digitalcommons.njit.edu/theses/479 This Thesis is brought to you for free and open access by the Theses and Dissertations at Digital Commons @ NJIT. It has been accepted for inclusion in Theses by an authorized administrator of Digital Commons @ NJIT. For more information, please contact [email protected]. Copyright Warning & Restrictions The copyright law of the United States (Title 17, United States Code) governs the making of photocopies or other reproductions of copyrighted material. Under certain conditions specified in the law, libraries and archives are authorized to furnish a photocopy or other reproduction. One of these specified conditions is that the photocopy or reproduction is not to be “used for any purpose other than private study, scholarship, or research.” If a, user makes a request for, or later uses, a photocopy or reproduction for purposes in excess of “fair use” that user may be liable for copyright infringement, This institution reserves the right to refuse to accept a copying
    [Show full text]
  • 5 Command Line Functions by Barbara C
    ADAPS: Chapter 5. Command Line Functions 5 Command Line Functions by Barbara C. Hoopes and James F. Cornwall This chapter describes ADAPS command line functions. These are functions that are executed from the UNIX command line instead of from ADAPS menus, and that may be run manually or by automated means such as “cron” jobs. Most of these functions are NOT accessible from the ADAPS menus. These command line functions are described in detail below. 5.1 Hydra Although Hydra is available from ADAPS at the PR sub-menu, Edit Time Series Data using Hydra (TS_EDIT), it can also be started from the command line. However, to start Hydra outside of ADAPS, a DV or UV RDB file needs to be available to edit. The command is “hydra rdb_file_name.” For a complete description of using Hydra, refer to Section 4.5.2 Edit Time-Series Data using Hydra (TS_EDIT). 5.2 nwrt2rdb This command is used to output rating information in RDB format. It writes RDB files with a table containing the rating equation parameters or the rating point pairs, with all other information contained in the RDB comments. The following arguments can be used with this command: nwrt2rdb -ooutfile -zdbnum -aagency -nstation -dddid -trating_type -irating_id -e (indicates to output ratings in expanded form; it is ignored for equation ratings.) -l loctzcd (time zone code or local time code "LOC") -m (indicates multiple output files.) -r (rounding suppression) Rules • If -o is omitted, nwrt2rdb writes to stdout; AND arguments -n, -d, -t, and -i must be present. • If -o is present, no other arguments are required, and the program will use ADAPS routines to prompt for them.
    [Show full text]
  • The AWK Programming Language
    The Programming ~" ·. Language PolyAWK- The Toolbox Language· Auru:o V. AHo BRIAN W.I<ERNIGHAN PETER J. WEINBERGER TheAWK4 Programming~ Language TheAWI(. Programming~ Language ALFRED V. AHo BRIAN w. KERNIGHAN PETER J. WEINBERGER AT& T Bell Laboratories Murray Hill, New Jersey A ADDISON-WESLEY•• PUBLISHING COMPANY Reading, Massachusetts • Menlo Park, California • New York Don Mills, Ontario • Wokingham, England • Amsterdam • Bonn Sydney • Singapore • Tokyo • Madrid • Bogota Santiago • San Juan This book is in the Addison-Wesley Series in Computer Science Michael A. Harrison Consulting Editor Library of Congress Cataloging-in-Publication Data Aho, Alfred V. The AWK programming language. Includes index. I. AWK (Computer program language) I. Kernighan, Brian W. II. Weinberger, Peter J. III. Title. QA76.73.A95A35 1988 005.13'3 87-17566 ISBN 0-201-07981-X This book was typeset in Times Roman and Courier by the authors, using an Autologic APS-5 phototypesetter and a DEC VAX 8550 running the 9th Edition of the UNIX~ operating system. -~- ATs.T Copyright c 1988 by Bell Telephone Laboratories, Incorporated. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy­ ing, recording, or otherwise, without the prior written permission of the publisher. Printed in the United States of America. Published simultaneously in Canada. UNIX is a registered trademark of AT&T. DEFGHIJ-AL-898 PREFACE Computer users spend a lot of time doing simple, mechanical data manipula­ tion - changing the format of data, checking its validity, finding items with some property, adding up numbers, printing reports, and the like.
    [Show full text]
  • AC Measurement System (ACMS) Option User's Manual
    Physical Property Measurement System AC Measurement System (ACMS) Option User’s Manual Part Number 1084-100 C-1 Quantum Design 11578 Sorrento Valley Rd. San Diego, CA 92121-1311 USA Technical support (858) 481-4400 (800) 289-6996 Fax (858) 481-7410 Fourth edition of manual completed June 2003. Trademarks All product and company names appearing in this manual are trademarks or registered trademarks of their respective holders. U.S. Patents 4,791,788 Method for Obtaining Improved Temperature Regulation When Using Liquid Helium Cooling 4,848,093 Apparatus and Method for Regulating Temperature in a Cryogenic Test Chamber 5,311,125 Magnetic Property Characterization System Employing a Single Sensing Coil Arrangement to Measure AC Susceptibility and DC Moment of a Sample (patent licensed from Lakeshore) 5,647,228 Apparatus and Method for Regulating Temperature in Cryogenic Test Chamber 5,798,641 Torque Magnetometer Utilizing Integrated Piezoresistive Levers Foreign Patents U.K. 9713380.5 Apparatus and Method for Regulating Temperature in Cryogenic Test Chamber CONTENTS Table of Contents PREFACE Contents and Conventions ...............................................................................................................................vii P.1 Introduction .......................................................................................................................................................vii P.2 Scope of the Manual..........................................................................................................................................vii
    [Show full text]
  • Lab 1 - Physical Properties of Minerals
    Page - Lab 1 - Physical Properties of Minerals All rocks are composed of one or more minerals. In order to be able to identify rocks you have to be able to recognize those key minerals that make of the bulk of rocks. By definition, any substance is classified as a mineral if it meets all 5 of the following criteria: - is naturally occurring (ie. not man-made); - solid (not liquid or gaseous); - inorganic (not living and never was alive); - crystalline (has an orderly, repetitive atomic structure); - a definite chemical composition (you can write a discrete chemical formula for any mineral). Identifying an unknown mineral is like identifying any group of unknowns (leaves, flowers, bugs... etc.) You begin with a box, or a pile, of unknown minerals and try to find any group features in the samples that will allow you to separate them into smaller and smaller piles, until you are down to a single mineral and a unique name. For minerals, these group features are called physical properties. Physical properties are any features that you can use your 5 senses (see, hear, feel, taste or smell) to aid in identifying an unknown mineral. Mineral physical properties are generally organized in a mineral key and the proper use of this key will allow you to name your unknown mineral sample. The major physical properties will be discussed briefly below in the order in which they are used to identify an unknown mineral sample. Luster Luster is the way that a mineral reflects light. There are two major types of luster; metallic and non-metallic luster.
    [Show full text]
  • The Evolution of the Unix Time-Sharing System*
    The Evolution of the Unix Time-sharing System* Dennis M. Ritchie Bell Laboratories, Murray Hill, NJ, 07974 ABSTRACT This paper presents a brief history of the early development of the Unix operating system. It concentrates on the evolution of the file system, the process-control mechanism, and the idea of pipelined commands. Some attention is paid to social conditions during the development of the system. NOTE: *This paper was first presented at the Language Design and Programming Methodology conference at Sydney, Australia, September 1979. The conference proceedings were published as Lecture Notes in Computer Science #79: Language Design and Programming Methodology, Springer-Verlag, 1980. This rendition is based on a reprinted version appearing in AT&T Bell Laboratories Technical Journal 63 No. 6 Part 2, October 1984, pp. 1577-93. Introduction During the past few years, the Unix operating system has come into wide use, so wide that its very name has become a trademark of Bell Laboratories. Its important characteristics have become known to many people. It has suffered much rewriting and tinkering since the first publication describing it in 1974 [1], but few fundamental changes. However, Unix was born in 1969 not 1974, and the account of its development makes a little-known and perhaps instructive story. This paper presents a technical and social history of the evolution of the system. Origins For computer science at Bell Laboratories, the period 1968-1969 was somewhat unsettled. The main reason for this was the slow, though clearly inevitable, withdrawal of the Labs from the Multics project. To the Labs computing community as a whole, the problem was the increasing obviousness of the failure of Multics to deliver promptly any sort of usable system, let alone the panacea envisioned earlier.
    [Show full text]
  • Properties of Matter
    Properties of Matter Say Thanks to the Authors Click http://www.ck12.org/saythanks (No sign in required) To access a customizable version of this book, as well as other interactive content, visit www.ck12.org CK-12 Foundation is a non-profit organization with a mission to reduce the cost of textbook materials for the K-12 market both in the U.S. and worldwide. Using an open-content, web-based collaborative model termed the FlexBook®, CK-12 intends to pioneer the generation and distribution of high-quality educational content that will serve both as core text as well as provide an adaptive environment for learning, powered through the FlexBook Platform®. Copyright © 2013 CK-12 Foundation, www.ck12.org The names “CK-12” and “CK12” and associated logos and the terms “FlexBook®” and “FlexBook Platform®” (collectively “CK-12 Marks”) are trademarks and service marks of CK-12 Foundation and are protected by federal, state, and international laws. Any form of reproduction of this book in any format or medium, in whole or in sections must include the referral attribution link http://www.ck12.org/saythanks (placed in a visible location) in addition to the following terms. Except as otherwise noted, all CK-12 Content (including CK-12 Curriculum Material) is made available to Users in accordance with the Creative Commons Attribution/Non- Commercial/Share Alike 3.0 Unported (CC BY-NC-SA) License (http://creativecommons.org/licenses/by-nc-sa/3.0/), as amended and updated by Creative Commons from time to time (the “CC License”), which is incorporated herein by this reference.
    [Show full text]
  • Prediction of Solubility of Amino Acids Based on Cosmo Calculaition
    PREDICTION OF SOLUBILITY OF AMINO ACIDS BASED ON COSMO CALCULAITION by Kaiyu Li A dissertation submitted to Johns Hopkins University in conformity with the requirement for the degree of Master of Science in Engineering Baltimore, Maryland October 2019 Abstract In order to maximize the concentration of amino acids in the culture, we need to obtain solubility of amino acid as a function of concentration of other components in the solution. This function can be obtained by calculating the activity coefficient along with solubility model. The activity coefficient of the amino acid can be calculated by UNIFAC. Due to the wide range of applications of UNIFAC, the prediction of the activity coefficient of amino acids is not very accurate. So we want to fit the parameters specific to amino acids based on the UNIFAC framework and existing solubility data. Due to the lack of solubility of amino acids in the multi-system, some interaction parameters are not available. COSMO is a widely used way to describe pairwise interactions in the solutions in the chemical industry. After suitable assumptions COSMO can calculate the pairwise interactions in the solutions, and largely reduce the complexion of quantum chemical calculation. In this paper, a method combining quantum chemistry and COSMO calculation is designed to accurately predict the solubility of amino acids in multi-component solutions in the ii absence of parameters, as a supplement to experimental data. Primary Reader and Advisor: Marc D. Donohue Secondary Reader: Gregory Aranovich iii Contents
    [Show full text]