Calculate dose in 2Gy fractions biologically equivalent dose according to the linear-quadratic model, assuming a homogeneous dose distribution within the volume.
getEQD2(D=NULL, fd=NULL, fn=NULL, ab=NULL)# S3 method for default
getEQD2(D=NULL, fd=NULL, fn=NULL, ab=NULL)
# S3 method for DVHs
getEQD2(D=NULL, fd=NULL, fn=NULL, ab=NULL)
# S3 method for DVHLst
getEQD2(D=NULL, fd=NULL, fn=NULL, ab=NULL)
# S3 method for DVHLstLst
getEQD2(D=NULL, fd=NULL, fn=NULL, ab=NULL)
Default: Total dose. If NULL
, fn
must be given. Alternative: One cumulative DVH (object of class DVHs
), multiple cumulative DVHs from one patient with multiple structures (object of class DVHLst
), or multiple cumulative DVHs from many patients, each with multiple structures (object of class DVHLstLst
). See readDVH
.
Fractional dose. If D
is some kind of DVH
object, only the first element will be used.
Number of fractions. If NULL
, D
must be given. Ignored if D
is some kind of DVH
object.
alpha/beta ratio for the relevant tissue. If D
is some kind of DVH
object, only the first element will be used.
Default method: A data frame with variables EQD2
, fractDose
, ab
.
If D
is some kind of DVH
object, the same kind of object is returned with the individual dose values converted to EQD2.
EQD2 is a special case of isoeffective dose calculation with fractional dose d2=2
, see getIsoEffD
. The calculation assumes a homogeneous dose distribution within the volume.
IAEA, & ICRU. (2008). Relative biological effectiveness in ion-beam therapy (Tech. Rep. No. IAEA-TR 461). Vienna, Austria: IAEA (International Atomic Energy Agency) and ICRU (International Commission on Radiation Units and Measurements).
# NOT RUN {
getEQD2(D=50, fd=2.5, ab=c(2, 3, 4))
getEQD2(dataMZ[[c(1, 1)]], fd=1.8, ab=3)
# }
Run the code above in your browser using DataLab