Package HomoPolymer. R topics documented: February 19, Type Package

Size: px
Start display at page:

Download "Package HomoPolymer. R topics documented: February 19, Type Package"

Transcription

1 Type Package Package HomoPolymer February 19, 2015 Title Theoretical Model to Simulate Radical Polymerization Version 1.0 Date Author Maintainer A theoretical model to simulate radical polymerization. Material, energy and population balances are integrated for batch, semi batch and continuous process in a ideally mixed reactor. Limitations: single monomer (i.e.homo polymer), one phase (organic, aqueous). Datasets with chemical-physical data for the most common monomers is included. Some background in polymer science is suggested for its use. Graphical interface for a quick and friendly use is available. Depends R (>= 3.0.0), RGtk2, MenuCollection Imports desolve LazyData true LazyLoad true License GPL-2 NeedsCompilation no Repository CRAN Date/Publication :27:23 R topics documented: homopolymer-package DBk DBpp func_homo gel inpbox_computational_options inpbox_flow_options inpbox_reaction_formulation

2 2 homopolymer-package integral PlotBasic PlotChoice polymer_toolbar prepare StopConditions Index 15 homopolymer-package Mathematical Modelling of Homo Polymerization Process The package implements the theoretical model described in the references. It deals with the polymer production in a homogeneous phase (bulk, solution) with batch, semi batch and continuous process. Package: homopolymer Type: Package Version: 1.0 Date: License: GPL-2 The package tends to be friendly and flexible, fully driven by graphical menus. It also has a comprehensive database of physical/chemical characteristics for the different polymerization ingredients. Please note : the R-package is made using published information released in the references. It does not use any code of the original authors. So, there is no guarantee the code runs as described in the papers. However the package implements the material, energy and micro structural balances exactly as described and uses the optimal datasets highlighted. References Gao J., Penlidis A. (1996) A Comprehensive Simulator/Database Package for Reviewing Free- Radical Homopolymerization, J.M.S.-Rev.Macromol.Chem.Phys, C36(2), Kuindersma M., (1992) On the Modelling of Free-Radical Polymerization Reactions: Homopolymerization, M.A.Sc.Thesis, Chemical Engineering, University of Waterloo Gao J., (1992) Mathematical Modelling of Homopolymerizations: Simulation Package/Database Extensions, M.A.Sc.Thesis, Chemical Engineering, University of Waterloo Lawrence M.F.,Verzani J., (2012) Programming Graphical User Interfaces in R,CRC Press Taylor & Francis Group

3 DBk 3 DBk Kinetic constant data Pre-exponential and activation energy factor for kinetic constant of propagation, termination, transfer etc. data("dbk") Format A data frame with 99 observations on the following 8 variables. code1 code key for the chemical substance as in code in table DBpp code2 code key for the chemical substance as in code in table DBpp, value used only when binary interactions are involved type a factor with levels Kd initiator dissociation Kfm transfer to monomer Kfp transfer to polymer Kfs transfer to solvent Kft transfer to transfer agent Kfz termination to inhibitor Kp monomer propagation Kps terminal double bond polymerization Kpss internal double bond polymerization Kt bimolecular termination (global) Ktc bimolecular termination by combination Ktd bimolecular termination by disproportionation K0 pre-exponential factor (1/min, L/mol min) E activation energy (cal/mol) Ak pre-exponential factor for gel deactivation effect Ek activation energy for gel deactivation effect ABC exponential parameter for gel deactivation effect Examples data(dbk)

4 4 DBpp DBpp Chemical-physical properties Data of chemical-physical properties for monomers, solvents, initiators, inhibitors, transfer agents and polymers data("dbpp") Format A data frame with 34 observations on the following 17 variables. name character vector with the chemical name of the substance type a factor with levels C catalytic transfer agent H inhibitor I initiator M monomer P polymer S solvent T transfer agent code factor with short symbol to replace chemical names when needed Medium a factor with levels B aqueous and organic compound O only organic compound W only water soluble compound Keq equilibrium pka for dissociating compound (dimensionless) delta segmental diffusion parameter a root-mean-square end-to-end distance per square root of the number of segments of polymer chain sigma Lennard-Jones diameter of the monomer jc entanglement spacing of polymer MW molecular weight (g/mol) ro1 intercept for linear dependency density vs. temperature (kg/l) ro2 slope for linear dependency density vs. temperature (kg/l K) V0f free volume alfa volumetric expansion vs. temperature Tg glass transition temperature (K) Cp specific heat capacity (cal/kg K) DHp homo polymerization heat (cal/mol) Examples data(dbpp)

5 func_homo 5 func_homo Model derivative function It supplies the derivatives of the model as requested by ode integrator in desolve package func_homo(t,y,pars,kpf,kdf,kfz,kfm,kfs,kfp,kps,kpss,kfcta,kfccta,ktf,ktd,ktc,rom,ros,rop) t y pars Kpf Kdf Kfz Kfm Kfs Kfp Kps Kpss KfCTA KfCCTA Ktf Ktd Ktc rom ros rop integration time actual value of the integrated variables vector of physical parameters function for propagation kinetic constant function for initiator decomposition kinetic constant function for inhibition kinetic constant function for transfer to monomer kinetic constant function for transfer to solvent kinetic constant function for transfer to polymer kinetic constant function for external terminal bond kinetic constant function for internal terminal bond kinetic constant function for transfer to agent kinetic constant function for transfer to catalytic agent kinetic constant function for bimolecular termination kinetic constant function for disproportion kinetic constant function for combination kinetic constant function for density of Monomer function for density of Solvent function for density of Polymer The function gives the vector of actual values of the derivative using the ancillary function gel A list of values with model derivatives as first element

6 6 gel gel Gel effect function The function calculate the change of kinetic constants due to gel effect gel(y, pars, rom, ros, rop) y pars rom ros rop vector of material and energy balance, as supplied by the function prepare vector of chemical-physical parameters, as supplied by the function prepare function of monomer density (Kg/L) vs. temperature (K) function of solvent density (Kg/L) vs. temperature (K) function of polymer density (Kg/L) vs. temperature (K) The function evaluate the reduction of kinetic constant of propagation, termination, initiation when gel effect take place. Several models are implemented: diffusional, segmental and reactive. User can choose among them by menu choice A list with the following elements: Kt decrease of bimolecular termination constant by diffusional model Kp decrease of propagation constant by diffusional model Kd decrease of initiator factor efficiency by diffusional model Kts decrease of bimolecular termination constant by segmental model Ktrmin minimal decrease of bimolecular termination constant by segmental model Ktrmax maximal decrease of bimolecular termination constant by segmental model PhiMvolumetric volume fraction for Monomer PhiS volumetric volume fraction for Solvent PHiP volumetric volume fraction for Polymer K3 gel point parameter K3test gel point test parameter MwrMolecular weight at the gel point start Vfr Free volume at the gel point start Mw Actual molecular weight Vf Actual free volume Vfcr Critical free volume

7 inpbox_computational_options 7 inpbox_computational_options Graphical menu for process input It allows the choice of many process conditions and constrains inpbox_computational_options(inp) inp initial value vector The function is exclusively used by the prepare function A vector with user choice

8 8 inpbox_flow_options inpbox_flow_options Graphical menu for flow input It allows the choice of inflow and outflow quantities and times inpbox_flow_options(inp) inp initial value vector The function is exclusively used by the prepare function A vector with user choice

9 inpbox_reaction_formulation 9 inpbox_reaction_formulation Graphical menu for recipe input It allows the choice of chemicals and the input of mass quantities of reacting ingredients inpbox_reaction_formulation(dbpp,inp) DBpp inp chemical-physical properties database initial value vector The function is exclusively used by the prepare function A vector with user choice

10 10 PlotBasic integral Homopolymer Integration The function integrate the material and energy balance over the time integral(out) out a list as given and described by the prepare function The function integrate the material and energy balances over the time considering all the physical constrains A table of several variable integrate in the required periods, ready for customer visualization and plotting PlotBasic Basic Plots Show major trends of polymerization: Conversion, Residual Monomer, Reactor Temperature, Molecular Weight vs. time PlotBasic(out, pars) out pars table of numeric results as given by the function integral vector of chemical-physical parameters, as supplied by the function prepare

11 PlotChoice 11 Some basic graphics to follow the polymerization Just a graphical window with four plots PlotChoice Choose Plot User may choose the three quantities to plot in two different scale PlotChoice(out, otab) out otab table of numeric results as given by the function integral data.frame with quantities and their descriptions Some basic graphics to follow the polymerization Just a graphical window with a plot

12 12 prepare polymer_toolbar Main toolbar Main toolbar for HomoPolymer pacakage polymer_toolbar() Just a graphical menu to facilitate the sequence of User instructions None. After each command a function is activated and something is printed on the console or in a graphical window. prepare Define the polymerization condition It allows the user to define the polymerization condition trough graphycal menus and build the chemical-physical dataset prepare(dbpp,dbk,recipe.inp, process.inp, flow.inp, interact=true) DBpp DBk recipe.inp process.inp flow.inp interact chemical-physical properties database kinetic constant database a vector with the previous user choice for the polymerization recipe a vector with the previous user choice for the process conditions a vector with composition of in/out flow in case of continous polymerization logical, default=true graphical menus are visualized for user choice

13 prepare 13 The function prepare the system for the following integration. It defines the recipe, the process and the flow conditions. It also picks up the chemical physical quantities from the internal database required to perform calculation. Its output is a list with vectors and functions built following the user choice in the graphical menus. In case the function is used for parameter determination, graphical menus are disabled setting interact=false. A list with the following elements: y vector with the initial values for material and thermal balances required by integral function pars vector of chemical-physical parameters required by integral function tstep vector of integration step time interval required by integral function Kpf function of propagation constant (L/mol min) vs. temperature (K) Kdf function of initiator decomposition constant (1/ min) vs. temperature (K) Kfz function of inhibition constant (L/mol min) vs. temperature (K) Kfm function of transfer to monomer constant (L/mol min) vs. temperature (K) Kfs function of transfer to solvent constant (L/mol min) vs. temperature (K) Kfp function of transfer to polymer constant (L/mol min) vs. temperature (K) Kps function of terminal double bond termination (L/mol min) vs. temperature (K)erature (K) Kpss function of terminal internal double bond termination (L/mol min) vs. temperature (K) KfCTA function of transfer to chain transfer agent constant (L/mol min) vs. temperature (K) KfCCTA function of transfer to catalytic chain transfer agent constant (L/mol min) vs. temperature (K) Ktf function of overall bimolecular termination constant (L/mol min) vs. temperature (K) Ktd function of bimolecular termination by combination constant (L/mol min) vs. temperature (K) Ktc function of bimolecular termination by disproportion constant (L/mol min) vs. temperature (K) rom function of monomer density (Kg/L) vs temperature (K) ros function of solvent density (Kg/L) vs temperature (K) rop function of polymer density (Kg/L) vs temperature (K)

14 14 StopConditions StopConditions Physical conditions for stop Set the physical conditions that stop the reaction such as: temperature above limits, chemical concentrations close to zero, conversion close to unity, etc. StopConditions(t, y, pars,...) t y pars integration time (min) vector of material and energy balance, as supplied by the function prepare vector of chemical-physical parameters, as supplied by the function prepare... further functions to be passed through Return a vector of the residual for each constrain

15 Index Topic Constrain StopConditions, 14 Topic HomoPolymer polymer_toolbar, 12 Topic datasets DBk, 3 DBpp, 4 Topic derivatives func_homo, 5 Topic homopolymerization StopConditions, 14 Topic homopolymer gel, 6 inpbox_computational_options, 7 inpbox_flow_options, 8 inpbox_reaction_formulation, 9 integral, 10 PlotBasic, 10 PlotChoice, 11 prepare, 12 Topic package homopolymer-package, 2 Topic toolbar polymer_toolbar, 12 PlotChoice, 11 polymer_toolbar, 12 prepare, 12 StopConditions, 14 DBk, 3 DBpp, 4 func_homo, 5 gel, 6 homopolymer (homopolymer-package), 2 homopolymer-package, 2 inpbox_computational_options, 7 inpbox_flow_options, 8 inpbox_reaction_formulation, 9 integral, 10 PlotBasic, 10 15

R package: HomoPolymer

R package: HomoPolymer R package: HomoPolymer User Manual Gianmarco Polotti January 8, 2015 1 Package Structure The package structure with links among interconnected functions are shown below. The software may run either interactively

More information

Predici 11 Quick Overview

Predici 11 Quick Overview Predici 11 Quick Overview PREDICI is the leading simulation package for kinetic, process and property modeling with a major emphasis on macromolecular systems. It has been successfully utilized to model

More information

Engineering aspect of emulsion polymerization

Engineering aspect of emulsion polymerization Engineering aspect of emulsion polymerization Joong-In Kim Bayer Corp., Plastics, Technology Yonsei University Contents Free radical polymerization kinetics Emulsion polymerization Reactor configuration

More information

ANALYSIS OF ETHYLENE/1-OLEFIN COPOLYMERS MADE WITH ZIEGLER-NATTA CATALYSTS BY DECONVOLUTION OF GPC-IR DISTRIBUTIONS

ANALYSIS OF ETHYLENE/1-OLEFIN COPOLYMERS MADE WITH ZIEGLER-NATTA CATALYSTS BY DECONVOLUTION OF GPC-IR DISTRIBUTIONS ANALYSIS OF ETHYLENE/1-OLEFIN COPOLYMERS MADE WITH ZIEGLER-NATTA CATALYSTS BY DECONVOLUTION OF GPC-IR DISTRIBUTIONS João BP Soares, Saeid Mehdiabadi Department of Chemical and Materials Engineering University

More information

University of Groningen. Rheokinetics Cioffi, Mario

University of Groningen. Rheokinetics Cioffi, Mario University of Groningen Rheokinetics Cioffi, Mario IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to cite from it. Please check the document version below.

More information

Segmented Copolymers. Segmented Polyurethanes (Prof. Hammond s thesis)

Segmented Copolymers. Segmented Polyurethanes (Prof. Hammond s thesis) 0.569 Synthesis of Polymers Prof. Paula ammond Lecture 0: Introduction to Radical Polymerization Segmented opolymers Segmented Polyurethanes (Prof. ammond s thesis) soft segment ends in groups - oligomer

More information

Kinetic Modeling for a Semi-Interpenetrating Polymer Network (SIPN) Process

Kinetic Modeling for a Semi-Interpenetrating Polymer Network (SIPN) Process Kinetic Modeling for a Semi-Interpenetrating Polymer Network (SIPN) Process Weijie Lin Advisor: Lorenz T. Biegler, Annette Jacobson Chemical Engineering Department Carnegie Mellon University, Pittsburgh,

More information

Package EnergyOnlineCPM

Package EnergyOnlineCPM Type Package Package EnergyOnlineCPM October 2, 2017 Title Distribution Free Multivariate Control Chart Based on Energy Test Version 1.0 Date 2017-09-30 Author Yafei Xu Maintainer Yafei Xu

More information

Introduction to Polymerization Processes

Introduction to Polymerization Processes Introduction to Polymerization Processes Reference: Aspen Polymers: Unit Operations and Reaction Models, Aspen Technology, Inc., 2013. 1- Polymer Definition A polymer is a macromolecule made up of many

More information

Package LIStest. February 19, 2015

Package LIStest. February 19, 2015 Type Package Package LIStest February 19, 2015 Title Tests of independence based on the Longest Increasing Subsequence Version 2.1 Date 2014-03-12 Author J. E. Garcia and V. A. Gonzalez-Lopez Maintainer

More information

Athena Visual Software, Inc. 1

Athena Visual Software, Inc. 1 Athena Visual Studio Visual Kinetics Tutorial VisualKinetics is an integrated tool within the Athena Visual Studio software environment, which allows scientists and engineers to simulate the dynamic behavior

More information

Chapter 4 Copolymerization

Chapter 4 Copolymerization Chapter 4 Copolymerization 4.1 Kinetics of Copolymerization 4.1.1 Involved Chemical Reactions Initiation I 2 + M 2R 1 r = 2 fk d I 2 R I Propagation Chain Transfer Termination m,n + k p m+1,n m,n + B k

More information

KINETICS OF POLYMERIZATION OF METHYLMETHACRYLATE INITIATED BY THE Mn (III)- CITRIC ACID REDOX SYSTEM

KINETICS OF POLYMERIZATION OF METHYLMETHACRYLATE INITIATED BY THE Mn (III)- CITRIC ACID REDOX SYSTEM http://www.rasayanjournal.com ISSN: 0974-1496 CODEN: RJCABP KINETICS OF POLYMERIZATION OF METHYLMETHACRYLATE INITIATED BY THE Mn (III)- CITRIC ACID REDOX SYSTEM * Department of Chemistry, Government College,

More information

Package BayesNI. February 19, 2015

Package BayesNI. February 19, 2015 Package BayesNI February 19, 2015 Type Package Title BayesNI: Bayesian Testing Procedure for Noninferiority with Binary Endpoints Version 0.1 Date 2011-11-11 Author Sujit K Ghosh, Muhtarjan Osman Maintainer

More information

Package idmtpreg. February 27, 2018

Package idmtpreg. February 27, 2018 Type Package Package idmtpreg February 27, 2018 Title Regression Model for Progressive Illness Death Data Version 1.1 Date 2018-02-23 Author Leyla Azarang and Manuel Oviedo de la Fuente Maintainer Leyla

More information

Package factorqr. R topics documented: February 19, 2015

Package factorqr. R topics documented: February 19, 2015 Package factorqr February 19, 2015 Version 0.1-4 Date 2010-09-28 Title Bayesian quantile regression factor models Author Lane Burgette , Maintainer Lane Burgette

More information

Package rgabriel. February 20, 2015

Package rgabriel. February 20, 2015 Type Package Package rgabriel February 20, 2015 Title Gabriel Multiple Comparison Test and Plot the Confidence Interval on Barplot Version 0.7 Date 2013-12-28 Author Yihui XIE, Miao YU Maintainer Miao

More information

Package ltsbase. R topics documented: February 20, 2015

Package ltsbase. R topics documented: February 20, 2015 Package ltsbase February 20, 2015 Type Package Title Ridge and Liu Estimates based on LTS (Least Trimmed Squares) Method Version 1.0.1 Date 2013-08-02 Author Betul Kan Kilinc [aut, cre], Ozlem Alpu [aut,

More information

Supplementary Information

Supplementary Information Supplementary Information Experimental details for frontal polymerization set-up Acrylamide monomer (> 99%, Sigma-Aldrich) is dissolved in dimethyl sulfoxide (DMSO, Fisher) with potassium persulfate (Sigma-Aldrich)

More information

Package CMC. R topics documented: February 19, 2015

Package CMC. R topics documented: February 19, 2015 Type Package Title Cronbach-Mesbah Curve Version 1.0 Date 2010-03-13 Author Michela Cameletti and Valeria Caviezel Package CMC February 19, 2015 Maintainer Michela Cameletti

More information

Optimizing Solvent Blends for a Quinary System

Optimizing Solvent Blends for a Quinary System The University of Akron IdeaExchange@UAkron Honors Research Projects The Dr. Gary B. and Pamela S. Williams Honors College Spring 2016 Optimizing Solvent Blends for a Quinary System Thomas L. Hoy tlh125@zips.uakron.edu,

More information

Package spthin. February 20, 2015

Package spthin. February 20, 2015 Type Package Package spthin February 20, 2015 Title Functions for Spatial Thinning of Species Occurrence Records for Use in Ecological Models Version 0.1.0 Date 2014-11-16 Author Matthew E. Aiello-Lammens,

More information

Package severity. February 20, 2015

Package severity. February 20, 2015 Type Package Title Mayo's Post-data Severity Evaluation Version 2.0 Date 2013-03-27 Author Nicole Mee-Hyaang Jinn Package severity February 20, 2015 Maintainer Nicole Mee-Hyaang Jinn

More information

Package ShrinkCovMat

Package ShrinkCovMat Type Package Package ShrinkCovMat Title Shrinkage Covariance Matrix Estimators Version 1.2.0 Author July 11, 2017 Maintainer Provides nonparametric Steinian shrinkage estimators

More information

Package SimSCRPiecewise

Package SimSCRPiecewise Package SimSCRPiecewise July 27, 2016 Type Package Title 'Simulates Univariate and Semi-Competing Risks Data Given Covariates and Piecewise Exponential Baseline Hazards' Version 0.1.1 Author Andrew G Chapple

More information

Package rnmf. February 20, 2015

Package rnmf. February 20, 2015 Type Package Title Robust Nonnegative Matrix Factorization Package rnmf February 20, 2015 An implementation of robust nonnegative matrix factorization (rnmf). The rnmf algorithm decomposes a nonnegative

More information

Modeling and Optimization of Semi- Interpenetrating Polymer Network (SIPN) Particle Process

Modeling and Optimization of Semi- Interpenetrating Polymer Network (SIPN) Particle Process Modeling and Optimization of Semi- Interpenetrating Polymer Network (SIPN) Particle Process Weijie Lin, Lorenz T. Biegler, Annette Jacobson Chemical Engineering Department Carnegie Mellon University, Pittsburgh,

More information

Package unbalhaar. February 20, 2015

Package unbalhaar. February 20, 2015 Type Package Package unbalhaar February 20, 2015 Title Function estimation via Unbalanced Haar wavelets Version 2.0 Date 2010-08-09 Author Maintainer The package implements top-down

More information

MODELING AND PARAMETER ESTIMATION OF NITROXIDE MEDIATED LIVING FREE RADICAL POLYMERIZATION (NMRP) OF STYRENE

MODELING AND PARAMETER ESTIMATION OF NITROXIDE MEDIATED LIVING FREE RADICAL POLYMERIZATION (NMRP) OF STYRENE European Symposium on Computer Aided Process Engineering 15 L. Puigjaner and A. Espuña (Editors) 25 Elsevier Science B.V. All rights reserved. MODELING AND PARAMETER ESTIMATION OF NITROXIDE MEDIATED LIVING

More information

Package OUwie. August 29, 2013

Package OUwie. August 29, 2013 Package OUwie August 29, 2013 Version 1.34 Date 2013-5-21 Title Analysis of evolutionary rates in an OU framework Author Jeremy M. Beaulieu , Brian O Meara Maintainer

More information

Polymer Chemistry Prof. Dibakar Dhara Department of Chemistry Indian Institute of Technology, Kharagpur

Polymer Chemistry Prof. Dibakar Dhara Department of Chemistry Indian Institute of Technology, Kharagpur Polymer Chemistry Prof. Dibakar Dhara Department of Chemistry Indian Institute of Technology, Kharagpur Lecture - 10 Radical Chain Polymerization (Contd.) (Refer Slide Time: 00:28) Welcome back, and we

More information

MATHEMATICAL SIMULATION OF THE STYRENE- BUTADIENE RUBBER S PRODUCTION IN THE CASCADE OF REACTORS BY THE MONTE CARLO METHOD

MATHEMATICAL SIMULATION OF THE STYRENE- BUTADIENE RUBBER S PRODUCTION IN THE CASCADE OF REACTORS BY THE MONTE CARLO METHOD Int. J. Chem. Sci.: 4(4), 206, 865-876 ISSN 0972-768X www.sadgurupublications.com MATHEMATICAL SIMULATION OF THE STYRENE- BUTADIENE RUBBER S PRODUCTION IN THE CASCADE OF REACTORS BY THE MONTE CARLO METHOD

More information

Package BNN. February 2, 2018

Package BNN. February 2, 2018 Type Package Package BNN February 2, 2018 Title Bayesian Neural Network for High-Dimensional Nonlinear Variable Selection Version 1.0.2 Date 2018-02-02 Depends R (>= 3.0.2) Imports mvtnorm Perform Bayesian

More information

An Introduction to Chemical Kinetics

An Introduction to Chemical Kinetics An Introduction to Chemical Kinetics Michel Soustelle WWILEY Table of Contents Preface xvii PART 1. BASIC CONCEPTS OF CHEMICAL KINETICS 1 Chapter 1. Chemical Reaction and Kinetic Quantities 3 1.1. The

More information

Package aspi. R topics documented: September 20, 2016

Package aspi. R topics documented: September 20, 2016 Type Package Title Analysis of Symmetry of Parasitic Infections Version 0.2.0 Date 2016-09-18 Author Matt Wayland Maintainer Matt Wayland Package aspi September 20, 2016 Tools for the

More information

Package SK. May 16, 2018

Package SK. May 16, 2018 Type Package Package SK May 16, 2018 Title Segment-Based Ordinary Kriging and Segment-Based Regression Kriging for Spatial Prediction Date 2018-05-10 Version 1.1 Maintainer Yongze Song

More information

Quiz 5 Introduction to Polymers

Quiz 5 Introduction to Polymers 100506 Quiz 5 Introduction to Polymers 1) Polyurethane in the video shown in class is formed from two liquids that are mixed. After mixing the solution foams and expands fairly rapidly forming a solid

More information

Radical Initiation 2017/2/ ) Thermal Decomposition of Initiators

Radical Initiation 2017/2/ ) Thermal Decomposition of Initiators adical Initiation Production of radicals (from initiator) to initiate chain polymerization. A variety of initiator systems can be used to bring about the radical polymerization. 1) Thermal Decomposition

More information

Package darts. February 19, 2015

Package darts. February 19, 2015 Type Package Package darts February 19, 2015 Title Statistical Tools to Analyze Your Darts Game Version 1.0 Date 2011-01-17 Author Maintainer Are you aiming at the right spot in darts?

More information

Modeling and Parameter Estimation of Interpenetrating

Modeling and Parameter Estimation of Interpenetrating Modeling and Parameter Estimation of Interpenetrating Polymer Network Process EWO Spring Meeting March, 2009 Weijie Lin Advisors: Lorenz T. Biegler, Annette Jacobson Department of Chemical Engineering,

More information

Package neuralnet. August 16, 2016

Package neuralnet. August 16, 2016 Type Package Title Training of Neural Networks Version 1.33 Date 2016-08-05 Package neuralnet August 16, 2016 Author Stefan Fritsch [aut], Frauke Guenther [aut, cre], Marc Suling [ctb], Sebastian M. Mueller

More information

Package clogitboost. R topics documented: December 21, 2015

Package clogitboost. R topics documented: December 21, 2015 Package December 21, 2015 Type Package Title Boosting Conditional Logit Model Version 1.1 Date 2015-12-09 Author Haolun Shi and Guosheng Yin Maintainer A set of functions to fit a boosting conditional

More information

Package sindyr. September 10, 2018

Package sindyr. September 10, 2018 Type Package Title Sparse Identification of Nonlinear Dynamics Version 0.2.1 Date 2018-09-10 Author Maintainer Rick Dale Package sindyr September 10, 2018 This implements the Brunton

More information

Simulation. Control. unique numerical algorithms automatic preprocessing

Simulation. Control. unique numerical algorithms automatic preprocessing Simulation unique numerical algorithms automatic preprocessing rigorous computation of MWDs on-line information direct interaction open data formats off-line capabilities PREDICI is a sophisticated tool

More information

CHAPTER 10 DENSITY AND VISCOSITY AS REAL-TIME PROBES FOR THE PROGRESS OF HIGH-PRESSURE POLYMERIZATION:

CHAPTER 10 DENSITY AND VISCOSITY AS REAL-TIME PROBES FOR THE PROGRESS OF HIGH-PRESSURE POLYMERIZATION: CHAPTER 10 DENSITY AND VISCOSITY AS REAL-TIME PROBES FOR THE PROGRESS OF HIGH-PRESSURE POLYMERIZATION: POLYMERIZATION OF METHYL METHACRYLATE IN ACETONE Density and viscosity can be used as real-time probes

More information

Physical and Mechanical Properties of Polymers

Physical and Mechanical Properties of Polymers MATE 453/MSE 553 Physical and Mechanical Properties of Polymers Guided Lecture Notes for Fall 2012 Prof. Michael Kessler Department of Materials Science and Engineering Iowa State University PHYSICAL AND

More information

Package lomb. February 20, 2015

Package lomb. February 20, 2015 Package lomb February 20, 2015 Type Package Title Lomb-Scargle Periodogram Version 1.0 Date 2013-10-16 Author Thomas Ruf, partially based on C original by Press et al. (Numerical Recipes) Maintainer Thomas

More information

Package hierdiversity

Package hierdiversity Version 0.1 Date 2015-03-11 Package hierdiversity March 20, 2015 Title Hierarchical Multiplicative Partitioning of Complex Phenotypes Author Zachary Marion, James Fordyce, and Benjamin Fitzpatrick Maintainer

More information

Package cccrm. July 8, 2015

Package cccrm. July 8, 2015 Package cccrm July 8, 2015 Title Concordance Correlation Coefficient for Repeated (and Non-Repeated) Measures Version 1.2.1 Date 2015-07-03 Author Josep Lluis Carrasco , Josep Puig Martinez

More information

Package crossdes. February 19, 2015

Package crossdes. February 19, 2015 Date 2013-03-18 Title Construction of Crossover Designs Version 1.1-1 Author Martin Depends AlgDesign, gtools Package crossdes February 19, 2015 Contains functions for the construction of carryover balanced

More information

Package nardl. R topics documented: May 7, Type Package

Package nardl. R topics documented: May 7, Type Package Type Package Package nardl May 7, 2018 Title Nonlinear Cointegrating Autoregressive Distributed Lag Model Version 0.1.5 Author Taha Zaghdoudi Maintainer Taha Zaghdoudi Computes the

More information

Molecular Weight and Chain Transfer

Molecular Weight and Chain Transfer 1 Molecular Weight and Chain Transfer Kinetic Chain Length ( ): 動力學鏈長 Average number of monomer polymerized per radical, which initiates a polymer chain. = R p /R i = R p /R t = k p [M][M.]/2k t [M.] 2

More information

Package leiv. R topics documented: February 20, Version Type Package

Package leiv. R topics documented: February 20, Version Type Package Version 2.0-7 Type Package Package leiv February 20, 2015 Title Bivariate Linear Errors-In-Variables Estimation Date 2015-01-11 Maintainer David Leonard Depends R (>= 2.9.0)

More information

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.1 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

Package gtheory. October 30, 2016

Package gtheory. October 30, 2016 Package gtheory October 30, 2016 Version 0.1.2 Date 2016-10-22 Title Apply Generalizability Theory with R Depends lme4 Estimates variance components, generalizability coefficients, universe scores, and

More information

TABLE OF CONTENT. Chapter 4 Multiple Reaction Systems 61 Parallel Reactions 61 Quantitative Treatment of Product Distribution 63 Series Reactions 65

TABLE OF CONTENT. Chapter 4 Multiple Reaction Systems 61 Parallel Reactions 61 Quantitative Treatment of Product Distribution 63 Series Reactions 65 TABLE OF CONTENT Chapter 1 Introduction 1 Chemical Reaction 2 Classification of Chemical Reaction 2 Chemical Equation 4 Rate of Chemical Reaction 5 Kinetic Models For Non Elementary Reaction 6 Molecularity

More information

Study guide for AP test on TOPIC 1 Matter & Measurement

Study guide for AP test on TOPIC 1 Matter & Measurement Study guide for AP test on IC 1 Matter & Measurement IC 1 Recall a definition of chemistry Understand the process and stages of scientific (logical) problem solving Recall the three states of matter, their

More information

Introduction to SuperPro Designer for Batch Processing Modelling

Introduction to SuperPro Designer for Batch Processing Modelling Introduction to SuperPro Designer for Batch Processing Modelling Session outline Getting started SuperPro Designer (SPD) interface Flowsheet drawing and editing Unit procedures initialisation Simulation

More information

Package alabama. March 6, 2015

Package alabama. March 6, 2015 Package alabama March 6, 2015 Type Package Title Constrained Nonlinear Optimization Description Augmented Lagrangian Adaptive Barrier Minimization Algorithm for optimizing smooth nonlinear objective functions

More information

A powerful site for all chemists CHOICE CRC Handbook of Chemistry and Physics

A powerful site for all chemists CHOICE CRC Handbook of Chemistry and Physics Chemical Databases Online A powerful site for all chemists CHOICE CRC Handbook of Chemistry and Physics Combined Chemical Dictionary Dictionary of Natural Products Dictionary of Organic Dictionary of Drugs

More information

Package JointModel. R topics documented: June 9, Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1.

Package JointModel. R topics documented: June 9, Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1. Package JointModel June 9, 2016 Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1.0 Date 2016-06-01 Author Sehee Kim Maintainer Sehee Kim

More information

Organic Chemistry. Radical Reactions

Organic Chemistry. Radical Reactions For updated version, please click on http://ocw.ump.edu.my Organic Chemistry Radical Reactions by Dr. Seema Zareen & Dr. Izan Izwan Misnon Faculty Industrial Science & Technology seema@ump.edu.my & iezwan@ump.edu.my

More information

Polymerization Modeling

Polymerization Modeling www.optience.com Polymerization Modeling Objective: Modeling Condensation Polymerization by using Functional Groups In this example, we develop a kinetic model for condensation polymerization that tracks

More information

Plug flow Steady-state flow. Mixed flow

Plug flow Steady-state flow. Mixed flow 1 IDEAL REACTOR TYPES Batch Plug flow Steady-state flow Mixed flow Ideal Batch Reactor It has neither inflow nor outflow of reactants or products when the reaction is being carried out. Uniform composition

More information

A Kinetic Monte Carlo Study on the Nucleation Mechanisms of Oil-Soluble Initiators in the Miniemulsion Polymerization of Styrene

A Kinetic Monte Carlo Study on the Nucleation Mechanisms of Oil-Soluble Initiators in the Miniemulsion Polymerization of Styrene A Kinetic Monte Carlo Study on the Nucleation Mechanisms of Oil-Soluble Initiators in the Miniemulsion Polymerization of Styrene JONATHAN A. RAWLSTON, 1 JUCHEN GUO, 2 F. JOSEPH SCHORK, 2 MARTHA A. GROVER

More information

Package SEMModComp. R topics documented: February 19, Type Package Title Model Comparisons for SEM Version 1.0 Date Author Roy Levy

Package SEMModComp. R topics documented: February 19, Type Package Title Model Comparisons for SEM Version 1.0 Date Author Roy Levy Type Package Title Model Comparisons for SEM Version 1.0 Date 2009-02-23 Author Roy Levy Package SEMModComp Maintainer Roy Levy February 19, 2015 Conduct tests of difference in fit for

More information

Thermal Safety Software (TSS) series

Thermal Safety Software (TSS) series Thermal Safety Software (TSS) series the analog-free methodology and software for reaction hazard assessment of Chemical Processes and Products. TSS is the integrated system which covers the entire spectrum

More information

Package noncompliance

Package noncompliance Type Package Package noncompliance February 15, 2016 Title Causal Inference in the Presence of Treatment Noncompliance Under the Binary Instrumental Variable Model Version 0.2.2 Date 2016-02-11 A finite-population

More information

Review of Fitting Kinetic Data

Review of Fitting Kinetic Data L6-1 Review of Fitting Kinetic Data True or false: The goal of fitting kinetic data is to find the true rate expression. What are the two general methods used to fit kinetic data? L6-2 Advantages and Drawbacks

More information

1. Starting of a project and entering of basic initial data.

1. Starting of a project and entering of basic initial data. PROGRAM VISIMIX TURBULENT SV. Example 1. Contents. 1. Starting of a project and entering of basic initial data. 1.1. Opening a Project. 1.2. Entering dimensions of the tank. 1.3. Entering baffles. 1.4.

More information

Package SCEPtERbinary

Package SCEPtERbinary Package SCEPtERbinary February 19, 2015 Title Stellar CharactEristics Pisa Estimation grid for Binary Systems Version 0.1-1 Date 2014-04-12 SCEPtER pipeline for estimating the stellar age for double-lined

More information

Chapter 5. Ionic Polymerization. Anionic.

Chapter 5. Ionic Polymerization. Anionic. Chapter 5. Ionic Polymerization. Anionic. Anionic Polymerization Dr. Houston S. Brown Lecturer of Chemistry UH-Downtown brownhs@uhd.edu What you should know: What is anionic polymerization? What is MWD,

More information

Package R1magic. April 9, 2013

Package R1magic. April 9, 2013 Package R1magic April 9, 2013 Type Package Title Compressive Sampling: Sparse signal recovery utilities Version 0.2 Date 2013-04-09 Author Maintainer Depends stats, utils Provides

More information

Investigating Nitroxide-Mediated Radical Polymerization of Styrene over a Range of Reaction Conditions

Investigating Nitroxide-Mediated Radical Polymerization of Styrene over a Range of Reaction Conditions Investigating Nitroxide-Mediated Radical Polymerization of Styrene over a Range of Reaction Conditions A. Nabifar N. T. McManus A. Penlidis Institute for Polymer Research (IPR) Department of Chemical Engineering

More information

Make a mixture of a weak acid and its conjugate base (as the SALT) Make a mixture of a weak base and its conjugate acid (as the SALT)

Make a mixture of a weak acid and its conjugate base (as the SALT) Make a mixture of a weak base and its conjugate acid (as the SALT) 175 BUFFERS - resist ph change caused by either the addition of strong acid/base OR by dilution Made in one of two ways: Make a mixture of a weak acid and its conjugate base (as the SALT) Make a mixture

More information

Model-based optimization of polystyrene properties by Nitroxide Mediated Polymerization (NMP) in homogeneous and dispersed media

Model-based optimization of polystyrene properties by Nitroxide Mediated Polymerization (NMP) in homogeneous and dispersed media 1 Model-based optimization of polystyrene properties by Nitroxide Mediated Polymerization (NMP) in homogeneous and dispersed media Lien Bentein NMP: principle and objective Nitroxide mediated polymerization

More information

Package TwoStepCLogit

Package TwoStepCLogit Package TwoStepCLogit March 21, 2016 Type Package Title Conditional Logistic Regression: A Two-Step Estimation Method Version 1.2.5 Date 2016-03-19 Author Radu V. Craiu, Thierry Duchesne, Daniel Fortin

More information

Package SPreFuGED. July 29, 2016

Package SPreFuGED. July 29, 2016 Type Package Package SPreFuGED July 29, 2016 Title Selecting a Predictive Function for a Given Gene Expression Data Version 1.0 Date 2016-07-27 Author Victor L Jong, Kit CB Roes & Marinus JC Eijkemans

More information

Package RootsExtremaInflections

Package RootsExtremaInflections Type Package Package RootsExtremaInflections May 10, 2017 Title Finds Roots, Extrema and Inflection Points of a Curve Version 1.1 Date 2017-05-10 Author Demetris T. Christopoulos Maintainer Demetris T.

More information

Package gwqs. R topics documented: May 7, Type Package. Title Generalized Weighted Quantile Sum Regression. Version 1.1.0

Package gwqs. R topics documented: May 7, Type Package. Title Generalized Weighted Quantile Sum Regression. Version 1.1.0 Package gwqs May 7, 2018 Type Package Title Generalized Weighted Quantile Sum Regression Version 1.1.0 Author Stefano Renzetti, Paul Curtin, Allan C Just, Ghalib Bello, Chris Gennings Maintainer Stefano

More information

Package PeriodicTable

Package PeriodicTable Package PeriodicTable August 29, 2017 Type Package Title Periodic Table of the Elements Version 0.1.2 Encoding UTF-8 Author Julien Idé Maintainer Julien Idé Provides a dataset

More information

Combined metallocene catalysts: an efficient technique to manipulate long-chain branching frequency of polyethylene

Combined metallocene catalysts: an efficient technique to manipulate long-chain branching frequency of polyethylene Macromol. Rapid Commun. 20, 541 545 (1999) 541 Combined metallocene catalysts: an efficient technique to manipulate long-chain branching frequency of polyethylene Daryoosh Beigzadeh, João B. P. Soares*,

More information

TOPIC 6: Chemical kinetics

TOPIC 6: Chemical kinetics TOPIC 6: Chemical kinetics Reaction rates Reaction rate laws Integrated reaction rate laws Reaction mechanism Kinetic theories Arrhenius law Catalysis Enzimatic catalysis Fuente: Cedre http://loincognito.-iles.wordpress.com/202/04/titanic-

More information

CFD Analysis of Mixing in Polymerization Reactor. By Haresh Patel Supervisors: Dr. R. Dhib & Dr. F. Ein-Mozaffari IPR 2007

CFD Analysis of Mixing in Polymerization Reactor. By Haresh Patel Supervisors: Dr. R. Dhib & Dr. F. Ein-Mozaffari IPR 2007 CFD Analysis of Mixing in Polymerization Reactor By Haresh Patel Supervisors: Dr. R. Dhib & Dr. F. Ein-Mozaffari Introduction Model development Simulation Outline Model Setup for Fluent Results and discussion

More information

Package CPE. R topics documented: February 19, 2015

Package CPE. R topics documented: February 19, 2015 Package CPE February 19, 2015 Title Concordance Probability Estimates in Survival Analysis Version 1.4.4 Depends R (>= 2.10.0),survival,rms Author Qianxing Mo, Mithat Gonen and Glenn Heller Maintainer

More information

Package R1magic. August 29, 2016

Package R1magic. August 29, 2016 Type Package Package R1magic August 29, 2016 Title Compressive Sampling: Sparse Signal Recovery Utilities Version 0.3.2 Date 2015-04-19 Maintainer Depends stats, utils Utilities

More information

Molecular Driving Forces

Molecular Driving Forces Molecular Driving Forces Statistical Thermodynamics in Chemistry and Biology SUBGfittingen 7 At 216 513 073 / / Ken A. Dill Sarina Bromberg With the assistance of Dirk Stigter on the Electrostatics chapters

More information

This reactivity makes alkenes an important class of organic compounds because they can be used to synthesize a wide variety of other compounds.

This reactivity makes alkenes an important class of organic compounds because they can be used to synthesize a wide variety of other compounds. This reactivity makes alkenes an important class of organic compounds because they can be used to synthesize a wide variety of other compounds. Mechanism for the addition of a hydrogen halide What happens

More information

Package ADPF. September 13, 2017

Package ADPF. September 13, 2017 Package ADPF September 13, 2017 Title Use Least Squares Polynomial Regression and Statistical Testing to Improve Savitzky-Golay Version 0.0.1 Maintainer Samuel Kruse Description This

More information

Package FinCovRegularization

Package FinCovRegularization Type Package Package FinCovRegularization April 25, 2016 Title Covariance Matrix Estimation and Regularization for Finance Version 1.1.0 Estimation and regularization for covariance matrix of asset returns.

More information

Proposed Content for the Project (Scope and Sequence)

Proposed Content for the Project (Scope and Sequence) Proposed Content for the Project (Scope and Sequence) The scope and sequence of the proposed project is not unusual. It follows the path of many available general chemistry texts. What we feel is innovative

More information

Package depth.plot. December 20, 2015

Package depth.plot. December 20, 2015 Package depth.plot December 20, 2015 Type Package Title Multivariate Analogy of Quantiles Version 0.1 Date 2015-12-19 Maintainer Could be used to obtain spatial depths, spatial ranks and outliers of multivariate

More information

Package MultisiteMediation

Package MultisiteMediation Version 0.0.1 Date 2017-02-25 Package MultisiteMediation February 26, 2017 Title Causal Mediation Analysis in Multisite Trials Author Xu Qin, Guanglei Hong Maintainer Xu Qin Depends

More information

GPC/SEC An essential tool for polymer analysis

GPC/SEC An essential tool for polymer analysis GPC/SEC An essential tool for polymer analysis Ben MacCreath, PhD Product Manager GPC/SEC Instrumentation 26 th March 2013 Introduction to Polymers Where are they found? Polyolefins Engineering Polymers

More information

Chemical Engineering Seminar Series

Chemical Engineering Seminar Series Effect of Reaction Conditions on Copolymer Properties Loretta Idowu Keywords: copolymer composition distribution; radical polymerization kinetics; semi-batch starved feed; hydroxyl-functionality Non-functional

More information

Package survidinri. February 20, 2015

Package survidinri. February 20, 2015 Package survidinri February 20, 2015 Type Package Title IDI and NRI for comparing competing risk prediction models with censored survival data Version 1.1-1 Date 2013-4-8 Author Hajime Uno, Tianxi Cai

More information

Package PVR. February 15, 2013

Package PVR. February 15, 2013 Package PVR February 15, 2013 Type Package Title Computes phylogenetic eigenvectors regression (PVR) and phylogenetic signal-representation curve (PSR) (with null and Brownian expectations) Version 0.2.1

More information

A First Course on Kinetics and Reaction Engineering Example 26.3

A First Course on Kinetics and Reaction Engineering Example 26.3 Example 26.3 unit. Problem Purpose This problem will help you determine whether you have mastered the learning objectives for this Problem Statement A perfectly insulated tubular reactor with a diameter

More information

Package spcov. R topics documented: February 20, 2015

Package spcov. R topics documented: February 20, 2015 Package spcov February 20, 2015 Type Package Title Sparse Estimation of a Covariance Matrix Version 1.01 Date 2012-03-04 Author Jacob Bien and Rob Tibshirani Maintainer Jacob Bien Description

More information

Package MicroMacroMultilevel

Package MicroMacroMultilevel Type Package Package MicroMacroMultilevel July 1, 2017 Description Most multilevel methodologies can only model macro-micro multilevel situations in an unbiased way, wherein group-level predictors (e.g.,

More information