7-2
3
DP
(Dew Point Temperature)
DP?
returns the currently measured dewpoint temperature. Dewpoint
temperature is calculated from the Dry Bulb temperature, Wet
Bulb temperature, and the barometric pressure, and is relative
only to that pressure. All temperatures are returned in degrees
C only regardless of the status returned by the
DEGR?
command. Temperatures are also returned in 8 digit scientific
notation.
IBM BASICA Example (assuming com1 is initialized to #1 and 5A-1MP
ECHO
is
OFF
):
.
.
.
100
A$="DP?"
'Want dewpoint.
110
GOSUB 200
'Go request it.
120
PRINT "DEWPOINT TEMPERATURE IS"; A$
'Prints on monitor.
.
.
.
200
PRINT #1, A$
'Send DP? command.
210
INPUT #1, A$
'Read in response.
220
RETURN
'A$=
n.nnnnnnnE±nn.
TERMINAL Example (assuming
ECHO
is
ON
):
DP?
Get the dewpoint.
1.001
Returns current measured dewpoint. This
example returned 10.25°C. The 8 digit output
resolution is merely a mathematical convention
and is not indicative of increased measurement
accuracy.
________________________________________________________________________
IEEE 488 Example (HP Rocky Mountain BASIC syntax):
.
.
100
OUTPUT 705; "DP?"
110
ENTER 705; Dew_point
120
DISP "DEWPOINT "; Dew_Point; "°C"
.
.
.
Содержание 5A-1MP
Страница 3: ...5A 1MP Laboratory Reference Psychrometer...
Страница 45: ...7 18 110 ENTER 705 X 120 DISP X Display it RELATED COMMANDS DSPAn DZERo PROBE RESTore SAVE...
Страница 67: ...7 40 ________________________________________________________________________ RELATED COMMANDS AUTO PRINt...
Страница 71: ...7 44 ________________________________________________________________________ RELATED COMMANDS RESTore SAVE...
Страница 83: ...7 56 ________________________________________________________________________ RELATED COMMANDS DATE...