LQE {RadOnc} | R Documentation |
Linear Quadratic Extrapolated (LQE) Dose Conversion
Description
This function and its associated methods calculate LQE-weighted dose(s) for a given DVH
or DVH.list
object, allowing iso-effect conversion between one or more DVH(s) employing different dose fractionation.
Usage
## S4 method for signature 'DVH,numeric'
LQE(x, aB, fractions = NULL, N = NULL, dose.units = c("cGy", "Gy"))
## S4 method for signature 'DVH.list,numeric'
LQE(x, aB, fractions = NULL, N = NULL, dose.units = NULL)
## S4 method for signature 'numeric,numeric'
LQE(x, aB, fractions = NULL, N = NULL, dose.units = c("cGy", "Gy"))
Arguments
x |
Can represent either numeric value(s) or otherwise an object of class |
aB |
Numeric value specifying tissue-specific parameter "alpha/beta ratio". Multiple values may be specified for LQE conversion of |
fractions |
Numeric value specifying the fraction sizes in which doses are deposited. Multiple values may be specified for LQE conversion of |
N |
Numeric value specifying the number of fractions in which doses are deposited. Multiple values may be specified for LQE conversion of |
dose.units |
Value specifying output dose units (must be one of |
Value
Returns a DVH
or DVH.list
object, corresponding to original input type for parameter x
.
Author(s)
Reid F. Thompson (reid.thompson@gmail.com)
References
Barendsen, G.W. (1982) Dose fractionation, dose-rate and iso-effect relationships for normal-tissue response. Int J Radiat Oncol Biol Phys 8(11):1981-1997.
See Also
Examples
# 5x 300cGy == 9x 200cGy (1800cGy isoeffective dose)
LQE(1500, aB=3, fractions=c(300, 200), dose.units="cGy")
LQE(15, aB=3, N=c(5, 9), dose.units="Gy")
LQE(18, aB=3, fractions=c(2, 3), dose.units="Gy")
# Multiple simultaneous numerical queries
LQE(c(4500, 5400), aB=3, fractions=c(300, 200), dose.units="cGy")
# DVH processing
LQE(janedoe[["LIVER"]],aB=3,fractions=200,dose.units="cGy")
# DVH list processing (default dose.units is "cGy")
plot(janedoe)
plot(LQE(janedoe,aB=3,fractions=200),col="red",new=FALSE)