Learn R Programming

Luminescence (version 0.3.1)

calc_TLLxTxRatio: Calculate the Lx/Tx ratio for a given set of TL curves [beta version]

Description

Calculate Lx/Tx ratio for a given set of TL curves.

Usage

calc_TLLxTxRatio(Lx.data.signal, Lx.data.background, Tx.data.signal, 
    Tx.data.background, signal.integral.min, signal.integral.max)

Arguments

Lx.data.signal
data.frame (required): TL data (x = temperature, y = counts) (TL signal)
Lx.data.background
data.frame (optional): TL data (x = temperature, y = counts). If no data are provided no background subtraction is performed.
Tx.data.signal
data.frame (required): TL data (x = temperature, y = counts) (TL test signal)
Tx.data.background
data.frame (optional): TL data (x = temperature, y = counts). If no data are provided no background subtraction is performed.
signal.integral.min
integer (required): channel number for the upper signal integral bound (e.g. signal.integral.min = 100)
signal.integral.max
integer (required): channel number for the upper signal integral bound (e.g. signal.integral.max = 200)

Value

  • Returns an S4 object of type RLum.Results. Slot data contains a data.frame with the following structure: $ LnLx $ LnLx.BG $ TnTx $ TnTx.BG $ Net_LnLx $ Net_LnLx.Error

Details

-

References

-

See Also

RLum.Results, analyse_SAR.TL

Examples

Run this code
##load package example data
data(ExampleData.BINfileData, envir = environment())

##convert Risoe.BINfileData into a curve object
temp <- Risoe.BINfileData2RLum.Analysis(TL.SAR.Data, pos = 3)


Lx.data.signal <- get_RLum.Analysis(temp, record.id=1)
Lx.data.background <- get_RLum.Analysis(temp, record.id=2)
Tx.data.signal <- get_RLum.Analysis(temp, record.id=3)
Tx.data.background <- get_RLum.Analysis(temp, record.id=4)
signal.integral.min <- 210
signal.integral.max <- 230

output <- calc_TLLxTxRatio(Lx.data.signal, 
                           Lx.data.background, 
                           Tx.data.signal, Tx.data.background, 
                           signal.integral.min, signal.integral.max)
get_RLum.Results(output)

Run the code above in your browser using DataLab