Peak Area Function; Peak Component Number Function; Peak Crest Amplitude Function; Peak Crest Time Function - ABB PGC2000 Operation And Service Manual

Process gas chromatograph
Table of Contents

Advertisement

Example:
0010 IF OP_MSG_ALARM THEN LPRINT
0020 :"ALARM"

PEAK AREA Function

Description:
Returns the peak's corrected area.
Syntax:
PK_AREA(peak%)
Comments:
peak% is the peak number (1 to N_PEAKS).
Example:
0010 FOR I = 1 TO N_PEAKS
0020 LPRINT PK_AREA(I)
0030 NEXT I
The example prints the area under each peak.

PEAK COMPONENT NUMBER Function

Description:
Returns the component number whose retention time matches the crest
time for the peak.
Syntax:
PK_COMP_NUM(peak%)
Comments:
peak% is the peak number (1 to N_PEAKS).
Example:
0010 LPRINT COMP_NAME$(1,
0020 :PK_COMP_NUM(2))
Prints the name of the component in method one for the second peak
detected in the analysis.

PEAK CREST AMPLITUDE Function

Description:
Returns the peak's amplitude at crest.
Syntax:
PK_CREST_AMP(peak%)
Comments:
peak% is the peak number (1 to N_PEAKS).
Example:
0010 FOR I = 1 TO N_PEAKS
0020 LPRINT PK_CREST_AMP(I)
0030 NEXT I
Prints the amplitude of each peak's crest.

PEAK CREST TIME Function

Description:
Returns the peak's crest time.
Syntax:
PK_CREST_TIME(peak%)
Comments:
peak% is the peak number (1 to N_PEAKS).
Example:
0010 FOR I = 1 TO N_PEAKS
0020 LPRINT PK_CREST_TIME(I)
0030 NEXT I
Prints the time of each peak's crest.

PEAK END AMPLITUDE Function

Description:
Returns the amplitude at the end of the peak.
Syntax:
PK_END_AMP(peak%)
Comments
peak% is the peak number (1 to N_PEAKS)
Example:
0010 FOR I = 1 TO N_PEAKS
0020 LPRINT PK_END_AMP(I)
0030 NEXT I
Prints the amplitude of each peak's end.
10-22
2000-OSM, F1

Advertisement

Table of Contents
loading

Table of Contents