26.12.2013 Views

Coherent Backscattering from Multiple Scattering Systems - KOPS ...

Coherent Backscattering from Multiple Scattering Systems - KOPS ...

Coherent Backscattering from Multiple Scattering Systems - KOPS ...

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Evaluation of the wide angle data<br />

Evaluation of the wide angle data<br />

This MATLAB script calibrates and displays the data of the wide angle setup (secs. 3.2 and<br />

5.1), calculates the integrated cooperon E, and draws a theory curve which can be fitted to the<br />

data by varying the value for the transport mean free path l ∗ .<br />

Each data set consists of a series of reference measurements at different incoming laser powers<br />

and one measurement with the sample itself. The data are stored in ASCII files which contain<br />

the diode signals and their errors. The diode positions (in degrees) are read <strong>from</strong> the file<br />

‘diode angles.dat’. The filenames of the data files contain the average incoming laser powers<br />

and their errors (in arbitrary units), which are measured by the power meter in the setup.<br />

The albedo mismatch ℵ = A reference /A sample has to be calculated <strong>from</strong> eqn. 5.6, diffusion<br />

coefficient D and absorption time τ are measured in time of flight experiments (sec. 3.4), and<br />

the effective refractive index n eff is calculated using eqn. 4.1. With the variable ‘enhancement’<br />

the height of the theoretical cone can be adapted to that of the measured one.<br />

function wide_angle_evaluation<br />

%% Initialize variables and load files<br />

file_samp = ’C:\Examples\example_0.100+-0.001.dat’ ; % sample file<br />

path_ref = ’C:\Examples\’ ;<br />

% path reference files<br />

name_ref = ’teflon_01_0.200+-0.001.dat’ ;<br />

% arbitrary reference file<br />

wavelength = 590e-9 ;<br />

D = 15 ;<br />

tau = 2e-9 ;<br />

n_eff = 1.58 ;<br />

l = 500e-9 ;<br />

aleph = 0.890 ;<br />

enhancement = 0.9 ;<br />

% laser wavelength<br />

% diffusion coefficient of the sample<br />

% absorption time of the sample<br />

% effective refractive index of the sample<br />

% transport mean free path for theory fit<br />

% albedo mismatch<br />

% enhancement of the backscattering cone<br />

% angular positions of the photodiodes<br />

angles = load (’C:\Examples\diode_angles.dat’,’-ascii’) ;<br />

theta = angles * pi / 180 ;<br />

% sample file<br />

data_samp = load (file_samp,’-ascii’) ;<br />

parts = regexp (file_samp, ’_|+-|.dat’, ’split’) ;<br />

P_samp = parts ( size(parts,2) - 2 ) ;<br />

P_samp = str2double (P_samp:,1) ;<br />

Perror_samp = parts ( size(parts,2) - 1 ) ;<br />

Perror_samp = str2double (Perror_samp:,1) ;<br />

81

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!