
86
Software
Adds a text for the section “TestResults” in the report file. The <AResult> string is
limited to a length of 255 characters. If more text is to add then the
ReportAdd
command can be used again until the whole text is added. By adding the “+CRLF” to
the <AResult> string a new line is inserted into the string.
Sample:
…
ReportAdd(‘Standard: ASTM xxxx’+CRLF);
…
ShowReport;
The internet browser will open and the test report will be displayed.
Wait(ASec: Integer);
Wait the time <ASec> in seconds until the next command will be execute.
Sample:
…
Wait(20);
…
DoHeat(ATemperature, ATolerance: Double);
Switch the heater controller ON and heat up the test cell to the defined temperature
<ATemperature>. The procedure will be left if the temperature is inside the defined ±
tolerance <ATolerance>.
In the following sample the heater will be switched ON and the target temperature 90 °C
is set. The sequence will wait at the
DoHeat
command until 89° C is reached, then the
sequence will go on. The temperature is controlled furthermore to 90° C until the
Heat_OFF
command will be sent.
Sample:
var
Temp:
double;
TempTol:
double;
…
begin
Temp:=90;
TempTol:=1;
DoHeat(Temp, TempTol);
…
Heat_OFF;
end.
SetHeat(ATemperature: Double);
Switch the heater controller ON and begins to heat up the test cell to the defined
temperature <ATemperature>. The procedure will left without reach the defined
temperature and controls the temperature furthermore until the
Heat_OFF
command
will be sent. This command only make sense in combination with the
Wait
command.
Sample:
var
Temp: double;
Summary of Contents for 2830
Page 1: ...2830 2831 Precision Liquid and Solid Dielectric Analyzer User Manual 4843477 M Version 3 0 ...
Page 7: ...Introduction VII 17 Conformity 113 18 Notes 114 ...
Page 8: ...VIII Introduction ...
Page 121: ...Conformity 113 17 Conformity ...
Page 122: ...114 Notes 18 Notes ...
Page 123: ...Notes 115 ...