Measured Data

The raw data is available for download. For ease of processing, you can also download processed data in a *.txt file. The processed data are the results of programs for calculating and displaying power and energy, which are also available on the website.

Raw Data

Raw data are available for download.

Processed Data

The processed data is saved in *.txt file format. This way the user can easily extract information from the original files.

Processing *.ASC files

ASCii files consist of two main components: the preamble and the data part. The preamble contains pulse data such as the time, date of the test, and other experimental information. The second part begins with the heading "Start Data" and contains the experimental data stored in a single column as modified power values in an array.

To obtain accurate processed data from the raw measurements, each measurement must be corrected using a specific equation:

\(Data_{processed} = {-1200\over2048} Data_{raw} \)

The need for correction is a result of factors such as instrument variations and process sample data. For more details, it is recommended to contact the author of the page for additional information.

Processing *.BIN files

The file consists of four columns, each with eight reserved positions for their respective values. The first column represents pulse power, the second column temperature 1, the third column temperature 2, and the last column pos2.

We recommend following code to convert and read data. With Python Numpy library.

\(import\ numpy\ as\ np\)
\(data = np.fromfile(FileBIN, dtype={'names': ('POWER', 'TEMP1', 'TEMP2', 'pos2'), 'formats': ('f8', 'f8', 'f8', 'f8')})\)