12-22-2015 05:04 AM
Scaling with table of reference points in Mathematics Module provide option to load only dpf file. How to convert csv or xls file to dpf file.
Solved! Go to Solution.
12-22-2015 01:12 PM
Hi Frank,
DPF is a text file of the format:
This file also be created using a simple text editor (such as windows notepad or DOS-Editor).
Data is stored line by line in ASCII format.
The following structure has to be observed:
1. row: INTERPOLATION
2. row: Name (free Text, max. 40 characters)
3. row: Number of columns;
max 17; (first column x values + max 16 columns y values.
You must insert ”2” if you you use a one-channel reference file.
(Values of the columns has to increase monotonically)
4. row: Number of data rows
The number of the following lines has to be exactly the same as defined in the previous line.
last line: EOF
The single columns are divided by space characters
Example 1:
INTERPOLATION
Example of a one-channel file
2
5
-2000 0
-1500 1.5151
-100 3.7456
10 7.87569
400 12.587
EOF
Example 2:
INTERPOLATION
Example of a multi-channel file
3
5
-2000 0.00 1.00
-1500 1.5151..2.50
-100 3.7456 3.5678
10 7.87569 2.222
400 12.587 3.334
EOF
12-23-2015 01:37 AM