Main Content

Process Model Structure Specification

This topic describes how to specify the model structure in the estimation procedures Estimate Process Models Using the App and Estimate Process Models at the Command Line.

In the System Identification app, specify the model structure by selecting the number of real or complex poles, and whether to include a zero, delay, and integrator. The resulting transfer function is displayed in the Process Models dialog box.

At the command line, specify the model structure using an acronym that includes the following letters and numbers:

  • (Required) P for a process model

  • (Required) 0, 1, 2 or 3 for the number of poles

  • (Optional) D to include a time-delay term esTd

  • (Optional) Z to include a process zero (numerator term)

  • (Optional) U to indicate possible complex-valued (underdamped) poles

  • (Optional) I to indicate enforced integration

Typically, you specify the model-structure acronym as an argument in the estimation command procest:

  • procest(data,'P1D') to estimate the following structure:

    G(s)=Kp1+sTp1esTd

  • procest(data,'P2ZU') to estimate the following structure:

    G(s)=Kp(1+sTz)1+2sζTw+s2Tw2

  • procest(data,'P0ID') to estimate the following structure:

    G(s)=KpsesTd

  • procest(data,'P3Z') to estimate the following structure:

    G(s)=Kp(1+sTz)(1+sTp1)(1+sTp2)(1+sTp3)

For more information about estimating models, see Estimate Process Models at the Command Line.

Related Topics