Section 7. Installation
187
Names must start with a letter, underscore, or dollar sign. Spaces and quote
marks are not allowed. Variable names are not case sensitive.
Several variables can be declared on a single line, separated by commas:
Public RefTemp, AirTemp2, Batt_Volt
Variables can also be assigned initial values in the declaration. Following is an
example of declaring a variable and assigning it an initial value.
Public SetTemp = {35}
In string variables, string size defaults to 24 characters.
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. 187).
Final-data memory data types are listed in the table
Data Types in Final-Storage Memory
(p. 189).
CRBasic example
Data Type
Declarations
(p. 191)
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
Double
IEEE8
IEEE 8 byte
double precision
floating point
8
•
64 bits (about 14 digits)
•
4.94065E-324 to 1.79769E308
Summary of Contents for CR6 Series
Page 2: ......
Page 4: ......
Page 6: ......
Page 32: ......
Page 36: ......
Page 38: ......
Page 76: ...Section 5 Overview 76 FIGURE 20 Half Bridge Wiring Example Wind Vane Potentiometer ...
Page 80: ...Section 5 Overview 80 FIGURE 23 Pulse Input Wiring Example Anemometer ...
Page 136: ......
Page 454: ...Section 8 Operation 454 FIGURE 104 Narrow Sweep High Noise ...
Page 459: ...Section 8 Operation 459 FIGURE 106 Vibrating Wire Sensor Calibration Report ...
Page 535: ...Section 8 Operation 535 8 11 2 Data Display FIGURE 121 CR1000KD Displaying Data ...
Page 537: ...Section 8 Operation 537 FIGURE 123 CR1000KD Real Time Custom ...
Page 538: ...Section 8 Operation 538 8 11 2 3 Final Storage Data FIGURE 124 CR1000KD Final Storage Data ...
Page 539: ...Section 8 Operation 539 8 11 3 Run Stop Program FIGURE 125 CR1000KD Run Stop Program ...
Page 541: ...Section 8 Operation 541 FIGURE 127 CR1000KD File Edit ...
Page 546: ......
Page 552: ......
Page 610: ...Section 11 Glossary 610 FIGURE 137 Relationships of Accuracy Precision and Resolution ...
Page 612: ......
Page 648: ......
Page 650: ......
Page 688: ......
Page 689: ......