Detector Control
Recording Absorbance Spectra: Program Example
The Dionex Ultimate3000 VWD-3x00 detectors allow you to record the absorbance spectra of substances used in an analysis, and thus to identify optimum wavelengths or to detect peak impurities. Spectrum scans can be triggered manually by executing a command (for more information, refer to Recording Absorbance Spectra) or in a sample program.
The program example below contains a trigger to trigger the scan on the trailing side of the peak when the signal has reached a value greater than 20 mAU. As long as the scan settings remain constant, the baseline scan must only be performed once.
; ; ; ;
; ;
|
Trigger conditions: Retention time > 0.1 min (prevents that the injection peak is scanned) UV_VIS_1.signal > 20 (minimum height of signal) UV_VIS_1.delta<0 (signal slope must be negative, scan recorded on the trailing side of the peak) True=0.50 (minimum time within which the conditions must be fulfilled to trigger the scan) Hysteresis=0 (sets the trigger condition to "false" with a delay to prevent repeated triggers when signal is instable) |
|
|
Trigger ScanPeak UV_VIS_1.signal > 20 and uv_vis_1.delta<0 and system.retention >0.1 , True=0.50, Hysteresis=0.0 Scan |
|
|
EndTrigger |
|
|
|
|
|
Pressure.LowerLimit = |
10 [bar] |
|
ColumnOven.TempCtrl = |
On |
|
ColumnOven.Temperature.Nominal = |
40.0 [°C] |
|
Pressure.UpperLimit = |
400 [bar] |
|
%A.Equate = |
"Water" |
|
%B.Equate = |
"Acetonitril" |
|
|
|
|
Data_Collection_Rate = |
2.0 [Hz] |
|
UV_Lamp = |
On |
|
Visible_Lamp = |
On |
|
|
|
|
UV_VIS_1.Wavelength = |
254 [nm] |
|
UV_VIS_2.Wavelength = |
240 [nm] |
|
UV_VIS_3.Wavelength = |
310 [nm] |
|
UV_VIS_4.Wavelength = |
400 [nm] |
|
|
|
|
Sampler.InjectMode = |
Normal |
|
UpSpeed = |
10.00 [mm/s] |
|
DownSpeed = |
10.00 [mm/s] |
|
SampleHeight = |
0.50 [mm] |
|
DispSpeed = |
50.00 [µl/s] |
|
DrawSpeed = |
25.00 [µl/s] |
|
|
|
0.000 |
Flow = |
1.000 [ml/min] |
|
%B = |
75.0 [%] |
|
;lower limit for wavelength scan |
|
|
ScanStartWavelength = |
210.0 [nm] |
|
;upper limit for wavelength scan |
|
|
ScanEndWavelength = |
400.0 [nm] |
|
;Scan speed setting |
|
|
ScanSpeed = |
Max |
|
;record a baseline |
|
|
Scanbaseline |
|
|
;Wait UV.Ready required to prevent conflict between Autozero and Scanbaseline |
|
|
Wait UV.Ready |
|
|
Autozero |
|
|
Wait UV.Ready and ColumnOven.Ready and Sampler.Ready |
|
|
Inject |
|
|
|
|
|
Pump_Pressure.AcqOn |
|
|
UV_VIS_1.AcqOn |
|
|
UV_VIS_2.AcqOn |
|
|
UV_VIS_3.AcqOn |
|
|
UV_VIS_4.AcqOn |
|
|
|
|
0.050 |
%B = |
75.0 [%] |
|
|
|
2.500 |
%B = |
95.0 [%] |
|
UV_VIS_1.AcqOff |
|
|
UV_VIS_2.AcqOff |
|
|
UV_VIS_3.AcqOff |
|
|
UV_VIS_4.AcqOff |
|
|
|
|
3.000 |
%B = |
75.0 [%] |
7.000 |
%B = |
75.0 [%] |
|
Pump_Pressure.AcqOff |
|
|
End |
|