ParameterIdentify[FrequencyDomain] - MapleSim Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ControlDesign[ParameterIdentify]

  

FrequencyDomain

  

Ziegler-Nichols frequency domain (closed-loop) identification

 

Calling Sequence

Parameters

Options

Description

Examples

References

Calling Sequence

FrequencyDomain(sys, opts)

Parameters

sys

-

System; a DynamicSystems system object in continuous-time domain; must be single-input single-output (SISO) and stable

opts

-

(optional) equation(s) of the form option = value; specify options for the FrequencyDomain command

Options

• 

simplifyOutput: truefalse

  

In case that the system contains symbolic parameters, specifies whether the symbolic expressions for the identified parameters should be simplified. If true then the identification output is simplified using the simplify command. Also, the symbolic expression of Ku is simplified through the computation process facilitating the symbolic manipulations. The default value is true. For details see: simplify.

Description

• 

The FrequencyDomain command performs the Ziegler-Nichols frequency domain (closed-loop) identification. It estimates the ultimate gain (Ku) and ultimate period (Tu) of the given system. The ultimate gain is the smallest positive gain for which the closed-loop system under unity negative feedback becomes oscillatory (marginally stable) and the ultimate period is the period of the corresponding oscillations. The method is only applicable to SISO open-loop stable systems. If the system has no symbolic parameters, the command returns a list of two positive-real floating-point numbers as [Ku,Tu] or returns an error if no solution exists. When the system has symbolic parameters, the ultimate gain and frequency are returned as symbolic expressions of the system parameters. The calculated results are theoretically valid for the parameter space on which the following conditions hold:

– 

The system is open-loop stable. The parametric stability condition can be obtained using the DynamicSystems[RouthTable] command with the stablecondition option set to true. For details see: DynamicSystems[RouthTable].

– 

The resulted algebraic expressions for Ku and Tu are evaluated to positive-real numbers for the numerical values of the system parameters. If more than one symbolic solution exist, multiple solutions are returned as a sequence of [Ku,Tu] pairs: [Ku1,Tu1], [Ku2,Tu2], ... . In this case, by definition, the smallest positive Ku (if exists) and its corresponding Tu, is the acceptable solution.

Examples

withControlDesignParameterIdentify:

sysDynamicSystems:-NewSystems2+3s3+2s2+s+1:

sys:-tf

s2+3s3+2s2+s+1

(1)

ultimateFrequencyDomainsys

ultimate0.5000000000,6.283185308

(2)

Kuultimate1;Tuultimate2

Ku0.5000000000

Tu6.283185308

(3)

sysDynamicSystems:-NewSystems2+as3+2s2+s+1:

sys:-tf

s2+as3+2s2+s+1

(4)

ultimateFrequencyDomainsys

ultimate11+a,2π

(5)

Kuultimate1;Tuultimate2

Ku11+a

Tu2π

(6)

sysDynamicSystems:-NewSystem3s+1s4+2s3+17s2+2.1s+1:

sys:-tf

3.s+1.s4+2.s3+17.s2+2.100000000s+1.

(7)

ultimateFrequencyDomainsys

ultimate10.17663019,1.555561040

(8)

Kuultimate1;Tuultimate2

Ku10.17663019

Tu1.555561040

(9)

evalfTu

1.555561040

(10)

sysDynamicSystems:-NewSystem3s+as4+2s3+17s2+bs+1:

sys:-tf

3s+as4+2s3+17s2+bs+1

(11)

ultimateFrequencyDomainsys

ultimate2a9b3+173+2565+4a2+1217+ba9,π6a2565+4a2+1217+ba9+2a2+3b51a51+2a2565+4a2+1217+ba,2a9b3+1732565+4a2+1217+ba9,π6a2565+4a2+1217+ba9+2a2+3b51a51+2a+2565+4a2+1217+ba

(12)

ultimateevalultimate,a=1,b=2.1

ultimate10.17663019,0.63505513566,−0.687741301,18.916310176

(13)

Kuultimate11;Tuultimate12

Ku10.17663019

Tu0.63505513566

(14)

evalfTu

1.555561041

(15)

sysDynamicSystems:-NewSystems2+4.5s4+0.5s3+21s2+s+1:

sys:-tf

s2+4.500000000s4+0.5000000000s3+21.s2+s+1.

(16)

ultimateFrequencyDomainsys

ultimate14.79999999,4.442882940

(17)

sysDynamicSystems:-NewSystems2+as4+0.5s3+21s2+bs+c:

sys:-tf

s2+as4+0.5000000000s3+21.s2+bs+c

(18)

ultimateFrequencyDomainsys

ultimate4b2+42bca2b,π2b

(19)

DynamicSystems:-RouthTabledenomsys:-tf1,1,s,stablecondition=true

0<cand0<212band0<2bc212b

(20)

ultimateevalultimate&comma;a=4.5&comma;b=1&comma;c=1

ultimate14.80000000&comma;π2

(21)

References

  

[1] K. J. Astrom and T. Hagglund, Advanced PID Control, ISA, 2006.

  

[2] A. O'Dwyer, Handbook of PI and PID Controller Tuning Rules, 2nd Edition, Imperial College Press, 2006.

See Also

ControlDesign

ControlDesign[ParameterIdentify][TimeDomain]

DynamicSystems[RouthTable]

simplify