APMonitor Documentation

Main.HomePage History

Hide minor edits - Show changes to markup

April 21, 2020, at 11:58 AM by 136.36.211.159 -
Changed lines 76-77 from:

Please consider citing the following article for the APMonitor Optimization Suite.

to:

Please consider citing the following articles for APMonitor and Gekko.

Added lines 79-80:
  • Beal, L.D.R., Hill, D., Martin, R.A., and Hedengren, J. D., GEKKO Optimization Suite, Processes, Volume 6, Number 8, 2018, doi: 10.3390/pr6080106. Article
June 05, 2017, at 07:09 PM by 10.5.113.159 -
Changed lines 5-6 from:

APMonitor, or "Advanced Process Monitor" is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, moving horizon estimation, real-time optimization, dynamic simulation, and nonlinear predictive control with solution capabilities for high-index differential and algebraic (DAE) equations. It is available as a MATLAB toolbox, a Python module, a Julia package, or from a web browser interface.

to:

APMonitor, or "Advanced Process Monitor" is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, moving horizon estimation, real-time optimization, dynamic simulation, and nonlinear predictive control with solution capabilities for high-index differential and algebraic (DAE) equations. It is available as a MATLAB toolbox, a Python module, a Julia package, or from a web browser interface.

Changed lines 33-34 from:

Differential and algebraic (DAE) models are a natural expression of systems that change with time. These dynamic systems may be as simple as a falling apple or as complex as biological metabolic pathways. DAE models are generally easy to write but often difficult to solve analytically. Entire university level courses are devoted to the solution of particular types of differential equations in analytic form. Solution of more complex systems is better handled through numeric approaches. There are many software packages that can solve DAE models for small and medium size problems. APMonitor is designed to solve large-scale problems. Additionally, other software packages often require the user to reformulate the equations into a restrictive form. APMonitor allows an open-equation format that is less restrictive.

to:

Differential and algebraic (DAE) models are a natural expression of systems that change with time. These dynamic systems may be as simple as a falling apple or as complex as biological metabolic pathways. DAE models are generally easy to write but often difficult to solve analytically. Entire university level courses are devoted to the solution of particular types of differential equations in analytic form. Solution of more complex systems is better handled through numeric approaches. There are many software packages that can solve DAE models for small and medium size problems. APMonitor is designed to solve large-scale problems. Additionally, other software packages often require the user to reformulate the equations into a restrictive form. APMonitor allows an open-equation format that is less restrictive.

Changed line 37 from:

APMonitor uses a simultaneous or sequential solution approach to solve the differential and algebraic equations. The differential equations are converted to algebraic equations and solved with large-scale sparse solvers. There are an assortment of solvers available with various user's licenses, ranging from free and open-source to commercial. APMonitor provides Nonlinear Programming Solvers (such as APOPT, BPOPT, IPOPT, MINOS, SNOPT) are accessed by switching APM.SOLVER. It provides the required information to the solvers by compiling the model to byte code with automatic differentiation for derivatives in sparse form.

to:

APMonitor uses a simultaneous or sequential solution approach to solve the differential and algebraic equations. The differential equations are converted to algebraic equations and solved with large-scale sparse solvers. There are an assortment of solvers available with various user's licenses, ranging from free and open-source to commercial. APMonitor provides Nonlinear Programming Solvers (such as APOPT, BPOPT, IPOPT, MINOS, SNOPT) are accessed by switching APM.SOLVER. It provides the required information to the solvers by compiling the model to byte code with automatic differentiation for derivatives in sparse form.

June 02, 2017, at 06:21 AM by 45.56.3.173 -
Changed line 29 from:

APM.IMODE 1-3 modes are steady state options with all derivatives set equal to zero.  Modes 4-6 are dynamic modes where the differential equations define how the variables change with time.  Modes 7-9 are the same as 4-6 except the solution is performed with a sequential versus a simultaneous approach. Each mode for simulation, estimation, and optimization has a steady state and dynamic option.

to:

APM.IMODE 1-3 modes are steady state options with all derivatives set equal to zero.  Modes 4-6 are dynamic modes where the differential equations define how the variables change with time.  Modes 7-9 are the same as 4-6 except the solution is performed with a sequential versus a simultaneous approach. Each mode for simulation, estimation, and optimization has a steady state and dynamic option. There are many additional application configuration options and parameter and variable options that can be set or retrieved in MATLAB or Python.

June 02, 2017, at 04:28 AM by 45.56.3.173 -
Changed lines 37-38 from:

APMonitor uses a simultaneous or sequential solution approach to solve the differential and algebraic equations. The differential equations are converted to algebraic equations and solved with large-scale sparse solvers. There are an assortment of solvers available with various user's licenses, ranging from free and open-source to commercial. APMonitor provides the following to a Nonlinear Programming Solver (such as APOPT, BPOPT, IPOPT, MINOS, SNOPT) in sparse form:

to:

APMonitor uses a simultaneous or sequential solution approach to solve the differential and algebraic equations. The differential equations are converted to algebraic equations and solved with large-scale sparse solvers. There are an assortment of solvers available with various user's licenses, ranging from free and open-source to commercial. APMonitor provides Nonlinear Programming Solvers (such as APOPT, BPOPT, IPOPT, MINOS, SNOPT) are accessed by switching APM.SOLVER. It provides the required information to the solvers by compiling the model to byte code with automatic differentiation for derivatives in sparse form.

Changed line 57 from:

When the system of equations does not converge, APMonitor produces a convergence report in infeasibilities.txt. There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.DIAGLEVEL to higher levels (0-10) gives more output to the user. Setting APM.COLDSTART to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

to:

When the system of equations does not converge, APMonitor produces a convergence report in infeasibilities.txt that can be retrieved with apm_get(s,a,'infeasibilities.txt'). There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.DIAGLEVEL to higher levels (0-10) gives more output to the user. Setting APM.COLDSTART to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

June 01, 2017, at 11:16 PM by 45.56.3.173 -
Changed lines 13-17 from:

APMonitor compiles a model to byte-code and performs model reduction based on analysis of the sparsity structure (incidence of variables in equations or objective function) of the model. For differential and algebraic equation systems, orthogonal collocation on finite elements is used to transcribe the problem into a purely algebraic system of equations. APMonitor has several modes of operation, adjustable with the imode parameter. The core of all modes is the nonlinear model.  Each mode interacts with the nonlinear model to receive or provide information.  The 9 modes of operation are:

to:

APMonitor compiles a model to byte-code and performs model reduction based on analysis of the sparsity structure (incidence of variables in equations or objective function) of the model. For differential and algebraic equation systems, orthogonal collocation on finite elements is used to transcribe the problem into a purely algebraic system of equations.

Modes of Operation

APMonitor has several modes of operation, adjustable with the APM.IMODE parameter. The core of all modes is the model (linear or nonlinear).  Each mode interacts with the nonlinear model to receive or provide information.  The 9 modes of operation are:

Changed lines 29-32 from:

Modes 1-3 are steady state modes with all derivatives set equal to zero.  Modes 4-6 are dynamic modes where the differential equations define how the variables change with time.  Modes 7-9 are the same as 4-6 except the solution is performed with a sequential versus a simultaneous approach. Each mode for simulation, estimation, and optimization has a steady state and dynamic option.

APMonitor provides the following to a Nonlinear Programming Solver (APOPT, BPOPT, IPOPT, MINOS, SNOPT) in sparse form:

to:

APM.IMODE 1-3 modes are steady state options with all derivatives set equal to zero.  Modes 4-6 are dynamic modes where the differential equations define how the variables change with time.  Modes 7-9 are the same as 4-6 except the solution is performed with a sequential versus a simultaneous approach. Each mode for simulation, estimation, and optimization has a steady state and dynamic option.

Differential and Algebraic Equations

Differential and algebraic (DAE) models are a natural expression of systems that change with time. These dynamic systems may be as simple as a falling apple or as complex as biological metabolic pathways. DAE models are generally easy to write but often difficult to solve analytically. Entire university level courses are devoted to the solution of particular types of differential equations in analytic form. Solution of more complex systems is better handled through numeric approaches. There are many software packages that can solve DAE models for small and medium size problems. APMonitor is designed to solve large-scale problems. Additionally, other software packages often require the user to reformulate the equations into a restrictive form. APMonitor allows an open-equation format that is less restrictive.

Nonlinear and Mixed Integer Solvers

APMonitor uses a simultaneous or sequential solution approach to solve the differential and algebraic equations. The differential equations are converted to algebraic equations and solved with large-scale sparse solvers. There are an assortment of solvers available with various user's licenses, ranging from free and open-source to commercial. APMonitor provides the following to a Nonlinear Programming Solver (such as APOPT, BPOPT, IPOPT, MINOS, SNOPT) in sparse form:

Changed lines 51-56 from:

Once the solution is complete, APMonitor writes the results in results.csv that is available for transfer from the apm_sol(s,a) function in MATLAB or Python. It also creates several web-interface pages that are accessed with apm_web(s,a). The web-interface includes a sensitivity analysis if APM.SENSITIVITY = 1 (ON).   When the system of equations does not converge, APMonitor produces a convergence report in ‘infeasibilities.txt’. There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.DIAGLEVEL to higher levels (0-10) gives more output to the user. Setting APM.COLDSTART to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

Reference to Cite

to:

Viewing Results

Once the solution is complete, APMonitor writes the results in results.csv that is available for transfer from the apm_sol(s,a) function in MATLAB or Python. It also creates several web-interface pages that are accessed with apm_web(s,a). The web-interface includes a sensitivity analysis if APM.SENSITIVITY = 1 (ON).

Advanced Diagnostics

When the system of equations does not converge, APMonitor produces a convergence report in infeasibilities.txt. There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.DIAGLEVEL to higher levels (0-10) gives more output to the user. Setting APM.COLDSTART to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

Range of Usage

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

  • Meet regulatory reporting requirements
  • Flow assurance of oil and gas transport pipelines
  • Visualize data from remote locations
  • Reduce alarms by consolidating relevant information
  • Provide soft sensing
  • Automatic control of continuous and batch systems
  • Increase production 3-5% without equipment changes

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes. A modeling language interface to MATLAB and Python extends the applicability for pre- and post-processing of the optimization solution results.

References to Cite

Deleted lines 113-134:

Differential and Algebraic Equations

Differential and algebraic (DAE) models are a natural expression of systems that change with time. These dynamic systems may be as simple as a falling apple or as complex as biological metabolic pathways. DAE models are generally easy to write but often difficult to solve analytically. Entire university level courses are devoted to the solution of particular types of differential equations in analytic form. Solution of more complex systems is better handled through numeric approaches. There are many software packages that can solve DAE models for small and medium size problems. APMonitor is designed to solve large-scale problems. Additionally, other software packages often require the user to reformulate the equations into a restrictive form. APMonitor allows an open-equation format that is less restrictive.

Solution options

APMonitor uses a simultaneous solution approach to solve the differential equations. The differential equations are converted to algebraic equations and solved with large-scale sparse solvers. There are an assortment of solvers available with various user's licenses, ranging from free and open-source to commercial.

Range of usage

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

  • Meet regulatory reporting requirements
  • Flow assurance of oil and gas transport pipelines
  • Visualize data from remote locations
  • Reduce alarms by consolidating relevant information
  • Provide soft sensing
  • Automatic control of continuous and batch systems
  • Increase production 3-5% without equipment changes

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes. A modeling language interface to MATLAB and Python extends the applicability for pre- and post-processing of the optimization solution results.

June 01, 2017, at 11:08 PM by 45.56.3.173 -
Changed lines 7-12 from:
to:
Changed line 28 from:

 

to:
Added lines 40-41:

Once the solution is complete, APMonitor writes the results in results.csv that is available for transfer from the apm_sol(s,a) function in MATLAB or Python. It also creates several web-interface pages that are accessed with apm_web(s,a). The web-interface includes a sensitivity analysis if APM.SENSITIVITY = 1 (ON).

Changed lines 43-45 from:

Once the solution is complete, APMonitor writes the results in results.csv that is available for transfer from the apm_sol(s,a) function in MATLAB or Python. It also creates several web-interface pages that are accessed with apm_web(s,a). The web-interface includes a sensitivity analysis if APM.sensitivity? = 1 (ON).   When the system of equations does not converge, APMonitor produces a convergence report in ‘infeasibilities.txt’. There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.diaglevel to higher levels (0-10) gives more output to the user. Setting APM.coldstart to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

to:

When the system of equations does not converge, APMonitor produces a convergence report in ‘infeasibilities.txt’. There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.DIAGLEVEL to higher levels (0-10) gives more output to the user. Setting APM.COLDSTART to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

June 01, 2017, at 11:05 PM by 45.56.3.173 -
Added lines 28-45:

APMonitor provides the following to a Nonlinear Programming Solver (APOPT, BPOPT, IPOPT, MINOS, SNOPT) in sparse form:  

  • Variables with default values and constraints
  • Objective function
  • Equations
  • Evaluation of equation residuals
  • Sparsity structure
  • Gradients (1st derivatives)
  • Gradient of the equations
  • Gradient of the objective function
  • Hessian of the Lagrangian (2nd derivatives)
  • 2nd Derivative of the equations
  • 2nd Derivative of the objective function

  Once the solution is complete, APMonitor writes the results in results.csv that is available for transfer from the apm_sol(s,a) function in MATLAB or Python. It also creates several web-interface pages that are accessed with apm_web(s,a). The web-interface includes a sensitivity analysis if APM.sensitivity? = 1 (ON).   When the system of equations does not converge, APMonitor produces a convergence report in ‘infeasibilities.txt’. There are other levels of debugging that help expose the steps that APMonitor is taking to analyze or solve the problem. Setting APM.diaglevel to higher levels (0-10) gives more output to the user. Setting APM.coldstart to 2 decomposes the problem into irreducible sets of variables and equations to identify infeasible equations or properly initialize a model.

June 01, 2017, at 11:01 PM by 45.56.3.173 -
Changed line 26 from:

 

to:
June 01, 2017, at 11:00 PM by 45.56.3.173 -
Added lines 12-27:

The APMonitor modeling language is a high-level abstraction of mathematical optimization problems. Values in the models are defined by Constants, Parameters, and Variables. The values are related to each other by Intermediates or Equations. Objective functions are defined to maximize or minimize certain values. Objects are built-in collections of values (constants, parameters, and variables) and relationships (intermediates, equations, and objective functions). Objects can build upon other objects with object-oriented relationships.   APMonitor compiles a model to byte-code and performs model reduction based on analysis of the sparsity structure (incidence of variables in equations or objective function) of the model. For differential and algebraic equation systems, orthogonal collocation on finite elements is used to transcribe the problem into a purely algebraic system of equations. APMonitor has several modes of operation, adjustable with the imode parameter. The core of all modes is the nonlinear model.  Each mode interacts with the nonlinear model to receive or provide information.  The 9 modes of operation are:  

  • Steady-state simulation (SS)
  • Model parameter update (MPU)
  • Real-time optimization (RTO)
  • Dynamic simulation (SIM)
  • Moving horizon estimation (EST)
  • Nonlinear control / dynamic optimization (CTL)
  • Sequential dynamic simulation (SQS)
  • Sequential dynamic estimation (SQE)
  • Sequential dynamic optimization (SQO)

  Modes 1-3 are steady state modes with all derivatives set equal to zero.  Modes 4-6 are dynamic modes where the differential equations define how the variables change with time.  Modes 7-9 are the same as 4-6 except the solution is performed with a sequential versus a simultaneous approach. Each mode for simulation, estimation, and optimization has a steady state and dynamic option.

Changed lines 13-15 from:

Software Technical Reference

  • J.D. Hedengren, R. Asgharzadeh Shishavan, K.M. Powell, T.F. Edgar, Nonlinear Modeling, Estimation and Predictive Control in APMonitor, Computers & Chemical Engineering, 2014.
to:

Reference to Cite

Please consider citing the following article for the APMonitor Optimization Suite.

  • Hedengren, J. D. and Asgharzadeh Shishavan, R., Powell, K.M., and Edgar, T.F., Nonlinear Modeling, Estimation and Predictive Control in APMonitor, Computers and Chemical Engineering, Volume 70, pg. 133–148, 2014, DOI: 10.1016/j.compchemeng.2014.04.013. Article - Preprint - BibTeX - RIS

Other applications of APMonitor are listed on the references page. Please send a note to support@apmonitor.com if you'd like to add a reference to the list.

Changed lines 5-8 from:

APMonitor, or "Advanced Process Monitor" is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, moving horizon estimation, real-time optimization, dynamic simulation, and nonlinear predictive control with solution capabilities for high-index differential and algebraic (DAE) equations. It is available as a MATLAB toolbox, Python, or from a web browser interface.


to:

APMonitor, or "Advanced Process Monitor" is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, moving horizon estimation, real-time optimization, dynamic simulation, and nonlinear predictive control with solution capabilities for high-index differential and algebraic (DAE) equations. It is available as a MATLAB toolbox, a Python module, a Julia package, or from a web browser interface.

Deleted lines 8-9:

Changed lines 11-15 from:
to:
June 16, 2015, at 04:44 AM by 45.56.3.184 -
Changed lines 5-6 from:

The APMonitor Modeling Language is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, real-time optimization, dynamic simulation, and nonlinear predictive control. It is available through MATLAB, Python, or from a web browser interface.

to:

APMonitor, or "Advanced Process Monitor" is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, moving horizon estimation, real-time optimization, dynamic simulation, and nonlinear predictive control with solution capabilities for high-index differential and algebraic (DAE) equations. It is available as a MATLAB toolbox, Python, or from a web browser interface.

Deleted lines 19-20:

APMonitor, or "Advanced Process Monitor" is a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control.

June 16, 2015, at 04:40 AM by 45.56.3.184 -
Changed line 21 from:

APMonitor, or "Advanced Process Monitor" is a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control. APMonitor does not solve the problems directly, but calls appropriate external solvers.

to:

APMonitor, or "Advanced Process Monitor" is a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control.

June 16, 2015, at 04:40 AM by 45.56.3.184 -
Added lines 5-8:

The APMonitor Modeling Language is optimization software for mixed-integer and differential algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed integer programming (LP, QP, NLP, MILP, MINLP). Modes of operation include data reconciliation, real-time optimization, dynamic simulation, and nonlinear predictive control. It is available through MATLAB, Python, or from a web browser interface.


Added lines 10-12:

Deleted lines 16-29:
APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:
  • Meet regulatory reporting requirements
  • Flow assurance of oil and gas transport pipelines
  • Visualize data from remote locations
  • Reduce alarms by consolidating relevant information
  • Provide soft sensing
  • Automatic control of continuous and batch systems
  • Increase production 3-5% without equipment changes

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes. A modeling language interface to MATLAB and Python extend the applicability for pre- and post-processing of the optimization solution results.


Added lines 64-77:

Range of usage

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

  • Meet regulatory reporting requirements
  • Flow assurance of oil and gas transport pipelines
  • Visualize data from remote locations
  • Reduce alarms by consolidating relevant information
  • Provide soft sensing
  • Automatic control of continuous and batch systems
  • Increase production 3-5% without equipment changes

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes. A modeling language interface to MATLAB and Python extends the applicability for pre- and post-processing of the optimization solution results.

June 16, 2015, at 04:35 AM by 45.56.3.184 -
Changed line 1 from:

(:title APMonitor Modeling Language Documentation:)

to:

(:title APMonitor Documentation:)

Added lines 4-8:
June 08, 2015, at 03:34 PM by 45.56.3.184 -
Added lines 47-48:

Added lines 56-57:

June 08, 2015, at 03:33 PM by 45.56.3.184 -
Deleted lines 46-47:

Deleted line 54:

Deleted lines 58-62:

APMonitor Overview

APMonitor software is a modeling, simulation, and optimization environment for large-scale models of differential and algebraic equations (DAEs). These models are employed in nine solution modes. The DAE model does not have to be changed to switch between the modes. The same model is used for parameter fitting, dynamic simulation, optimization, and control. The user is required to define the model and the software automatically configures the various simulation options.

Deleted lines 61-66:

Chemical Process Flowsheets

A thermodynamic database and a number of prebuilt nonlinear models are available with APMonitor. The chemical processing modeling package includes polymer reactors, distillation columns, compressors, valves, etc. These models are combined to form a flowsheet in an object-oriented environment.


June 08, 2015, at 03:31 PM by 45.56.3.184 -
Changed lines 19-21 from:

Software Technical Reference

  • J.D. Hedengren, R. Asgharzadeh Shishavan, K.M. Powell, T.F. Edgar, Nonlinear Modeling, Estimation and Predictive Control in APMonitor, Computers & Chemical Engineering, 2014.
to:

Software Technical Reference

  • J.D. Hedengren, R. Asgharzadeh Shishavan, K.M. Powell, T.F. Edgar, Nonlinear Modeling, Estimation and Predictive Control in APMonitor, Computers & Chemical Engineering, 2014.
June 08, 2015, at 03:30 PM by 45.56.3.184 -
Changed lines 15-16 from:

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes.

to:

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes. A modeling language interface to MATLAB and Python extend the applicability for pre- and post-processing of the optimization solution results.

Added lines 19-22:

Software Technical Reference

  • J.D. Hedengren, R. Asgharzadeh Shishavan, K.M. Powell, T.F. Edgar, Nonlinear Modeling, Estimation and Predictive Control in APMonitor, Computers & Chemical Engineering, 2014.
Added line 24:
June 08, 2015, at 03:26 PM by 45.56.3.184 -
Changed lines 60-71 from:

APMonitor software is a modeling, simulation, and optimization environment for large-scale models of differential and algebraic equations (DAEs). These models are employed in seven solution modes:

The DAE model does not have to be changed to switch between the modes. The same model is used for parameter fitting, dynamic simulation, optimization, and control. The user is required to define the model and the software automatically configures the various simulation options.

to:

APMonitor software is a modeling, simulation, and optimization environment for large-scale models of differential and algebraic equations (DAEs). These models are employed in nine solution modes. The DAE model does not have to be changed to switch between the modes. The same model is used for parameter fitting, dynamic simulation, optimization, and control. The user is required to define the model and the software automatically configures the various simulation options.

Deleted lines 68-73:

Documentation Overview

The basic structure of the documentation is outlined into four main sections: model structure, modes of operation, system files, and obtaining solutions. The documentation is presented in a Wiki format to allow collaborative modification by any user. This format is well suited to APMonitor as it allows for collaboration and continuing development.

June 08, 2015, at 03:18 PM by 45.56.3.184 -
Deleted lines 78-83:

Essential Files for Simulation

  • model.apm: To generate a new model, create a text file and save it with an apm extension.
  • model.info: The info file contains designation of special variables for trending, data acquisition, and mode-specific actions. If no variables are treated specially, the info file can be blank.
  • model.dbs: The dbs file contains all of the user-defined options that control how the solution is performed. When no dbs file is present, a new file is generated with default parameters.
Added lines 22-23:

Discussion Group

Added lines 40-49:

(:htmlend:)


YouTube Channel

(:html:) <script src="https://apis.google.com/js/platform.js"></script>

<div class="g-ytsubscribe" data-channel="APMonitorCom" data-layout="full" data-count="default"></div>

May 25, 2013, at 05:59 AM by 69.169.188.188 -
Changed line 19 from:

APMonitor, or "Advanced Process Monitor" includes a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control. APMonitor does not solve the problems directly, but calls appropriate external solvers.

to:

APMonitor, or "Advanced Process Monitor" is a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control. APMonitor does not solve the problems directly, but calls appropriate external solvers.

October 12, 2012, at 04:28 AM by 69.169.131.76 -
Changed line 26 from:
  <b>Subscribe to apmonitor</b>
to:
  <b>Subscribe to APMonitor E-mail List</b>
October 12, 2012, at 04:27 AM by 69.169.131.76 -
Deleted lines 23-24:
  <img src="https://groups.google.com/intl/en/images/logos/groups_logo_sm.gif"
         height=30 width=140 alt="Google Groups">
April 19, 2012, at 06:56 PM by 128.187.97.23 -
Changed lines 50-51 from:

APMonitor software is a modeling, simulation, and optimization environment for large-scale models of differential and algebraic equations (DAEs). These models are employed in six solution modes:

to:

APMonitor software is a modeling, simulation, and optimization environment for large-scale models of differential and algebraic equations (DAEs). These models are employed in seven solution modes:

Added line 58:
February 29, 2012, at 06:39 PM by 128.187.97.20 -
Changed line 3 from:

(:description Simulation, optimization, estimation, and control with APMonitor:)

to:

(:description APMonitor Documentation: Simulation, optimization, estimation, and control:)

November 08, 2011, at 12:00 PM by 69.169.188.228 -
Changed line 5 from:

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

to:
APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:
November 08, 2011, at 11:59 AM by 69.169.188.228 -
Changed lines 5-7 from:

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

to:

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

November 08, 2011, at 10:48 AM by 69.169.188.228 -
Changed lines 5-6 from:

APMonitor


to:

November 25, 2010, at 03:03 AM by 206.180.155.75 -
Changed lines 1-7 from:

(:html:)<head> <title>APMonitor Modeling Language</title> <META NAME="Keywords" CONTENT="Nonlinear Model Predictive Control APMonitor Analytic First Derivatives Nonlinear Differential Algebraic Modeling Language"> <META NAME="Description" CONTENT="APMonitor Documentation and Nonlinear Model Library"> <META NAME="Author" CONTENT="support@apmonitor.com"> </head>(:htmlend:)

to:

(:title APMonitor Modeling Language Documentation:) (:keywords nonlinear, model, predictive control, APMonitor, differential, algebraic, modeling language:) (:description Simulation, optimization, estimation, and control with APMonitor:)

November 25, 2010, at 02:42 AM by 206.180.155.75 -
Deleted line 1:
Deleted line 2:
Changed lines 4-6 from:

<META NAME="Description" CONTENT="Simulation, optimization, estimation, and control with APMonitor">

to:

<META NAME="Description" CONTENT="APMonitor Documentation and Nonlinear Model Library">

Deleted line 5:
November 25, 2010, at 02:41 AM by 206.180.155.75 -
Added lines 1-13:

(:html:)<head>

<title>APMonitor Modeling Language</title>

<META NAME="Keywords" CONTENT="Nonlinear Model Predictive Control APMonitor Analytic First Derivatives Nonlinear Differential Algebraic Modeling Language">

<META NAME="Description" CONTENT="Simulation, optimization, estimation, and control with APMonitor">

<META NAME="Author" CONTENT="support@apmonitor.com">

</head>(:htmlend:)

September 12, 2010, at 03:14 AM by 206.180.155.75 -
Changed line 4 from:

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

to:

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

Changed lines 6-12 from:

Meet regulatory reporting requirements Flow assurance of oil and gas transport pipelines Visualize data from remote locations Reduce alarms by consolidating relevant information Provide soft sensing Automatic control of continuous and batch systems Increase production 3-5% without equipment changes

to:
  • Meet regulatory reporting requirements
  • Flow assurance of oil and gas transport pipelines
  • Visualize data from remote locations
  • Reduce alarms by consolidating relevant information
  • Provide soft sensing
  • Automatic control of continuous and batch systems
  • Increase production 3-5% without equipment changes
September 12, 2010, at 03:13 AM by 206.180.155.75 -
Changed lines 3-18 from:

APMonitor, or "Advanced Process Monitor", is a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control. APMonitor does not solve the problems directly, but calls appropriate external solvers.

to:

APMonitor is advanced process control and optimization software for industrial-scale systems. The software interfaces to live systems to provide advanced diagnostics, meet safety and environmental constraints, and drive the process to economic optimum. With rapidly changing feedstock and commodity pricing, this application enables instant and continual realignment to real operating objectives. These may include:

Meet regulatory reporting requirements Flow assurance of oil and gas transport pipelines Visualize data from remote locations Reduce alarms by consolidating relevant information Provide soft sensing Automatic control of continuous and batch systems Increase production 3-5% without equipment changes

A number of prebuilt asset models are available with the APMonitor software. The chemical processing modeling package includes reactors, distillation columns, and compressors necessary for industrial scale processes.


APMonitor, or "Advanced Process Monitor" includes a modeling language for differential and algebraic (DAE) equations. It is used for describing and solving representations of physical systems in the form of implicit DAE models. APMonitor is suited for large-scale problems and allows solutions of dynamic simulation, moving horizon estimation, and nonlinear control. APMonitor does not solve the problems directly, but calls appropriate external solvers.

July 22, 2010, at 06:31 PM by 158.35.225.231 -
Added lines 4-25:

(:html:)<table border=0 style="background-color: #fff; padding: 5px;" cellspacing=0>

  <tr><td>
  <img src="https://groups.google.com/intl/en/images/logos/groups_logo_sm.gif"
         height=30 width=140 alt="Google Groups">
  </td></tr>
  <tr><td style="padding-left: 5px">
  <b>Subscribe to apmonitor</b>
  </td></tr>
  <form action="https://groups.google.com/group/apmonitor/boxsubscribe">
  <tr><td style="padding-left: 5px;">
  Email: <input type=text name=email>
  <input type=submit name="sub" value="Subscribe">
  </td></tr>

</form> <tr><td align=right>

  <a href="https://groups.google.com/group/apmonitor">Visit this group</a>

</td></tr> </table> (:htmlend:)

May 26, 2010, at 12:19 PM by 158.35.225.240 -
Changed line 10 from:

APMonitor in a Nutshell

to:

APMonitor Overview

May 26, 2010, at 12:19 PM by 158.35.225.240 -
Deleted lines 35-49:

Newton's Apple

A popular story claims that Sir Isaac Newton was inspired to formulate his theory of universal gravitation by observing an apple fall from a tree. A simple equation defines the gravitational force between two objects (Equation 1) and the motion of the apple (Equation 2).

  1. F = (G m1 m2) / r2
  2. F = m dv/dt

The apple falling from a tree is simply approximated by these two equations. These two equations are solved together as algebraic and differential equations. The solution of these two equations defines the velocity of the apple and the force the earth and apple exert on each other.

Like Newton, it takes a trained mind to formulate, test, and validate mathematical models from observation of physical systems. The APMonitor software gives users a model development platform for simulation, data reconciliation, and optimization for both steady-state and dynamic systems. With APMonitor, the user can concentrate more on the difficult task of building the mathematical relationships and let APMonitor perform data handling, model convergence, and interface with live systems.