Getting started

Importing ILTpy

After installing ILTpy, the library can be imported as shown below. If the import is successful, all functions and objects in ILTpy can be accessed by ilt.function_name , for example, ilt.iltload.

# import iltpy
import iltpy as ilt

Using ILTpy

Analysing data with ILTpy usually involves the following steps :

1. Loading Data

This step involves reading in the data using iltload and creating an instance of IltData. Click to know more.

Loading data
2. Initialization

After loading the data as an instance of IltData, it is initialized by calling IltData.init(). In this step, user-defined parameters can be specified along with tau and kernels. Click to know more.

Initializing IltData
3. Inversion

The inversion step can be started after the data is initialized by calling IltData.invert(). Click to know more.

Inversion
4. Report

Reporting the results saves relevant files as .txt files or in numpy format. Use IltData.report(). Click to know more.

Reporting