getBED {DVHmetrics} | R Documentation |
Calculate biologically effective dose (BED)
Description
Calculate biologically effective dose (BED) according to the linear-quadratic model.
Usage
getBED(D=NULL, fd=NULL, fn=NULL, ab=NULL)
## Default S3 method:
getBED(D=NULL, fd=NULL, fn=NULL, ab=NULL)
## S3 method for class 'DVHs'
getBED(D=NULL, fd=NULL, fn=NULL, ab=NULL)
## S3 method for class 'DVHLst'
getBED(D=NULL, fd=NULL, fn=NULL, ab=NULL)
## S3 method for class 'DVHLstLst'
getBED(D=NULL, fd=NULL, fn=NULL, ab=NULL)
Arguments
D |
Default: Total dose. If |
fd |
Fractional dose. If |
fn |
Number of fractions. If |
ab |
alpha/beta ratio for the relevant tissue. If some kind of |
Value
Default method: A data frame with variables BED
, fractDose
, ab
.
If D
is some kind of DVH
object, the same kind of object is returned with the individual dose values converted to BED.
References
Fowler, J. F. (2010). 21 years of Biologically Effective Dose. British Journal of Radiology, 83, 554-568.
See Also
Examples
getBED(D=50, fd=2.5, ab=c(2, 3, 4))
getBED(D=dataMZ[[c(1, 1)]], fd=1.8, ab=3)