Description Usage Arguments Value See Also Examples
Computes the total dose of a mixed particle field
1 2 | AT.total.D.Gy(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
|
total.dose.Gy |
total.dose.Gy |
View the C source code here: http://sourceforge.net/apps/trac/libamtrack/browser/tags/0.6.3/src/AT_PhysicsRoutines.c#L521
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Compute dose of monoenergtic high energy
# and a mixed (99/1) field of high and low
# energy protons in water at same fluence
AT.total.D.Gy( E.MeV.u = 100,
particle.no = 1001,
fluence.cm2 = 100e8,
material.no = 1,
stopping.power.source.no = 2)
AT.total.D.Gy( E.MeV.u = c(100, 5),
particle.no = c(1001, 1001),
fluence.cm2 = c(99e8, 1e8),
material.no = 1,
stopping.power.source.no = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.