afmYoungModulus {afmToolkit} | R Documentation |
afmYoungModulus
Description
This function computes the Young's Modulus of the sample from the approach curve using Hertz's contact model for a pyramidal tip.
Usage
afmYoungModulus(afmdata, thickness = NULL, model = "Hertz", geometry =
c("pyramid","paraboloid"), silent = TRUE, params)
Arguments
afmdata |
An |
thickness |
Thickness (in m) of the surface. The Force - Indentation fit will be done for values of the Indentation variable smaller than the thickness. If no value is given, it will be done for all values in the curve for which the Indentation is negative. |
model |
Contact mechanics model to be used. Currently only Hertz's pure elastic model is available. |
geometry |
Geometry of the tip. Currently only pyramidal (default) and paraboloid geometries are implemented. |
silent |
Logical value. If FALSE it prints the fit model summary (via
|
params |
A list containing different parameters of the model: e.g. nu (Poisson's ratio) or alpha (internal angle, in degrees, of the pyramidal tip) or R (tip radius, in the paraboloid geometry) |
Value
An afmdata
class variable which will consist on the original input
afmdata
variable plus a new list named YoungModulus
with the following
fields:
YoungModulus
The Young's modulus value (in Pa).
fitYM
The Force vs Indentation^2 fit as an lm
object.
fitdata
The subset of the data used in the fit.
Examples
data <- afmReadJPK("force-save-JPK-2h.txt.gz", path = path.package("afmToolkit"))
data <- afmContactPoint(data, width = 20, mul1 = 1, mul2 = 20)
data <- afmDetachPoint(data, width = 40, mul1 = 3, mul2 = 40)
data <- afmBaselineCorrection(data)
data <- afmZeroPointSlope(data, segment = "approach")
data <- afmIndentation(data)
data <- afmYoungModulus(data, thickness = 1e-8, params = list(alpha = 22),
silent = TRUE)
print(data$YoungModulus$YoungModulus)