Tools

Code and analysis packages

scattering.py

Function package for generating light transport properties in multiple scattering media

https://github.com/emfurst/DWS-interactions

Miscellaneous tools and links for data analysis

Igor function to automatically assign trace colors

Function QuickColorSpectrum()                            // colors traces with 12 different colors
    String Traces    = TraceNameList("",";",1)               // get all the traces from the graph
    Variable Items   = ItemsInList(Traces)                   // count the traces
    Make/FREE/N=(11,3) colors = {{65280,0,0}, {65280,43520,0}, {0,65280,0}, {0,52224,0}, {0,65280,65280}, {0,43520,65280}, {0,15872,65280}, {65280,16384,55552}, {36864,14592,58880}, {0,0,0},{26112,26112,26112}}
    Variable i, j
    for (j = 0; j < Items ; j += 1)
        i = mod(j,DimSize(colors,1))
        ModifyGraph rgb($StringFromList(j,Traces))=(colors[0][i],colors[1][i],colors[2][i])      // set new color offset
    endfor
End

miepython

Python module to calculate light scattering by non-absorbing, partially-absorbing, or perfectly conducting spheres.

https://miepython.readthedocs.io/en/latest/