AT.dose.weighted.LET.MeV.cm2.g {libamtrack} | R Documentation |
Computes the dose-weighted average LET of a particle field
AT.dose.weighted.LET.MeV.cm2.g(E.MeV.u, particle.no, fluence.cm2, material.no, stopping.power.source.no)
E.MeV.u |
energy of particles in the mixed particle field (array of
size |
particle.no |
particle index (array of size
|
fluence.cm2 |
fluences of particles in the mixed particle field (array
of size |
material.no |
material index (see also |
stopping.power.source.no |
TODO (see also
|
dose-weighted |
dose-weighted |
View the C source code here: http://sourceforge.net/apps/trac/libamtrack/browser/trunk/src/AT_PhysicsRoutines.c#L670
# fluence- and dose-weighted LET for a simple mixed field # of high and low (99/1) energy protons AT.fluence.weighted.LET.MeV.cm2.g( E.MeV.u = c(100, 5), particle.no = c(1001, 1001), fluence.cm2 = c(99e8, 1e8), material.no = 1, # water stopping.power.source.no = 2) AT.dose.weighted.LET.MeV.cm2.g( E.MeV.u = c(100, 5), particle.no = c(1001, 1001), fluence.cm2 = c(99e8, 1e8), material.no = 1, # water stopping.power.source.no = 2)