In [16]:
%pylab inline
from scipy.interpolate import interp1d

from IPython.display import Image


Populating the interactive namespace from numpy and matplotlib
WARNING: pylab import has clobbered these variables: ['f']
`%matplotlib` prevents importing * from pylab and numpy

Details

Below are the recorded measurements for the first batch of cutout factor measurements

Ionisation conversion

The following cell is used to initialise the ionisation to dose conversion function. Data is extracted from table 20 within TRS398. R50 of the 12 MeV beam is $4.75~g/cm^2$


In [17]:
zOnR50 = concatenate((array([0.02]), arange(0.05,1.25,0.05)))
R50of45 = array([0.997,1,1.004,1.008,1.012,1.017,1.021,1.026,1.03,
                 1.035,1.04,1.045,1.051,1.056,1.062,1.067,1.073,1.08,
                 1.086,1.092,1.099,1.106,1.113,1.120,1.128])

R50of50 = array([0.991,0.994,0.998,1.002,1.006,1.011,1.016,1.02,1.025,
                 1.03,1.035,1.041,1.046,1.052,1.058,1.064,1.07,1.076,
                 1.083,1.09,1.097,1.104,1.112,1.119,1.128])

R50of47_5 = mean([R50of45,R50of50],axis=0)

stopRatio = interp1d(zOnR50 * 47.5,R50of47_5)

Measurements

These measurements were done on Harry 2694, with a Markus chamber set to +300 V. The sensitivity was $1.398 \times 10^9$. All measurements were done at 100 SSD with a 12 MeV beam and a $10\times10$ cm applicator. Below are the readings recorded in chronological order.

Readings


In [18]:
standard_insert_reading = {}
cutout_reading = {}
factor = {}

Standard Insert


In [19]:
standard_insert_reading = array([])

standard_insert_reading = append(standard_insert_reading,mean([1.546,1.546,1.546])) # 01
standard_insert_reading = append(standard_insert_reading,mean([1.546,1.546,1.546])) # 02
# standard_insert_reading = append(standard_insert_reading,mean([1.539,1.540,1.539])) # 03
# standard_insert_reading = append(standard_insert_reading,mean([1.540,1.540,1.540])) # 04
# standard_insert_reading = append(standard_insert_reading,mean([1.534,1.534,1.534])) # 05
# standard_insert_reading = append(standard_insert_reading,mean([])) # 06

uncertainty = std(standard_insert_reading)

standard_insert_reading = mean(standard_insert_reading)

Output function definition


In [20]:
def outputFunction(cutout,depth,readings):
    
    if size(readings) == 1:
        
        cutout_reading = readings
        factor = standard_insert_reading / cutout_reading
        
    else:
    
        stop_ratio_corrected = stopRatio(depth) * readings

        scatter(depth,stop_ratio_corrected)
        ylabel('Stopping power ratio corrected')
        xlabel('Depth (mm)')
        title('Relative ionsation to relative dose')
        show()
        
        ref = argmax(stop_ratio_corrected)
        
        cutout_reading = readings[ref]
        
        factor = (standard_insert_reading / cutout_reading) * (stopRatio(25) / stopRatio(depth[ref]))
    
    
    print("Reading = %0.3f" %(cutout_reading))

    
    print("Cutout factor = %0.3f | %0.1f%%" %(factor, (factor - 1) * 100))
   
    return cutout_reading, factor

Cutout readings


In [21]:
# Applicator 01 measurement done here

In [22]:
cutout = '9'
depth = array([25])
readings = array([])

readings = append(readings,mean([1.559,1.559,1.559])) # ionisation at depth 25 mm RW3

cutout_reading[cutout], factor[cutout] = outputFunction(cutout,depth,readings)


Reading = 1.559
Cutout factor = 0.992 | -0.8%

In [23]:
cutout = '8'
depth = array([25])
readings = array([])

readings = append(readings,mean([1.556,1.557,1.556])) # ionisation at depth 25 mm RW3

cutout_reading[cutout], factor[cutout] = outputFunction(cutout,depth,readings)


Reading = 1.556
Cutout factor = 0.993 | -0.7%

In [24]:
cutout = '7'
depth = array([25])
readings = array([])

readings = append(readings,mean([1.551,1.551,1.551])) # ionisation at depth 25 mm RW3

cutout_reading[cutout], factor[cutout] = outputFunction(cutout,depth,readings)


Reading = 1.551
Cutout factor = 0.997 | -0.3%

In [25]:
cutout = '6'
depth = array([25])
readings = array([])

readings = append(readings,mean([1.524,1.524,1.524])) # ionisation at depth 25 mm RW3

cutout_reading[cutout], factor[cutout] = outputFunction(cutout,depth,readings)


Reading = 1.524
Cutout factor = 1.014 | 1.4%

In [26]:
# Applicator 2 here

In [30]:
with open('circle_cutout_factors','r') as f:
    
    loaded_factors = eval(f.read())

    
factors_to_save = dict(list(loaded_factors.items()) + list(factor.items()))

with open('circle_cutout_factors','w') as f:
    
    f.write(str(factors_to_save))

In [30]: