Section 7. Installation
127
7.6.3.3.1 Declaring Data Types
Variables and data values stored in final memory can be configured with various
data types to optimize program execution and memory usage.
The declaration of variables with the
Dim
or
Public
instructions allows an
optional type descriptor
As
that specifies the data type. The default data type
(declaration without a descriptor) is
IEEE4
floating point, which is equivalent to
the
As Float
declaration. Variable data types are listed in the table
Data Types in
Variable Memory
(p. 127).
Final-data memory data types are listed in the table
Data Types in Final-Storage Memory
(p. 128).
CRBasic example
Data Type
Declarations
(p. 130)
shows various data types in use in the declarations and output
sections of a program.
CRBasic allows mixing data types within a single array of variables; however,
this practice can result in at least one problem. The datalogger support software
is incapable of efficiently handling different data types for the same field name.
Consequently, the software mangles the field names in data file headers.
Data Types in Variable Memory
Name Command
Description
Word
Size
(Bytes)
Notes
Resolution / Range
Float
As Float
or
As IEEE4
IEEE floating
point
4
Data type of all variables
unless declared otherwise.
IEEE Standard 754
•
24 bits (about 7 digits)
•
±
1.4E–45 to
±
3.4E38
Long
As Long
Signed integer
4
Use to store count data in the
range of
±
2,147,483,648
Speed: integer math is faster
than floating point math.
Resolution: 32 bits. Compare
to 24 bits in IEEE4.
Suitable for storing whole
numbers, counting number,
and integers in final-storage
memory. If storing non-
integers, the fractional portion
of the value is lost.
32 bits
–2,147,483,648 to +2,147,483,647
Boolean
As
Boolean
Signed integer
4
Use to store true or false
states, such as states of flags
and control ports. 0 is always
false. –1 is always true.
Depending on the application,
any other number may be
interpreted as true or false.
See the section
True = -1,
False = 0
(p. 163).
True =
–
1 or any number ≥ 1
False = any number ≥ 0 and < 1
Summary of Contents for CR800 Series
Page 2: ......
Page 4: ......
Page 6: ......
Page 32: ......
Page 34: ......
Page 54: ......
Page 92: ......
Page 310: ......
Page 446: ...Section 8 Operation 446 8 11 2 Data Display FIGURE 100 CR1000KD Displaying Data ...
Page 448: ...Section 8 Operation 448 FIGURE 102 CR1000KD Real Time Custom ...
Page 449: ...Section 8 Operation 449 8 11 2 3 Final Storage Data FIGURE 103 CR1000KD Final Storage Data ...
Page 450: ...Section 8 Operation 450 8 11 3 Run Stop Program FIGURE 104 CR1000KD Run Stop Program ...
Page 452: ...Section 8 Operation 452 FIGURE 106 CR1000KD File Edit ...
Page 456: ......
Page 462: ......
Page 523: ...Section 11 Glossary 523 FIGURE 116 Relationships of Accuracy Precision and Resolution ...
Page 524: ......
Page 526: ......
Page 556: ......
Page 558: ......
Page 560: ......
Page 597: ......