View source: R/tissue_mechanical_analysis.R
tissue_mechanical_analysis | R Documentation |
Analysis of biological tissue compression curves. Stress-strain curves from biological tissues are usually non-linearly increasing. This function evaluates the Young modulus as the slope in the stress strain curves for small strain segments: strain 0.05-0.15, strain 0.15 to 0.25, then 0.25 to 0.35 and so forth. This gives a quick, discrete overview over how the Young modulus increases with increasing strain.
tissue_mechanical_analysis(theData,start_height,approximate_touch_point=NULL,stress_column="pressure",stress_slope_column="pressureSlope")
theData |
Force-Distance data, typically from a "down"-"up" cycle of the chuck; the data needs to be smooth and contain already at the very least the columns |
start_height |
The texture Analyzer typically starts a file by |
approximate_touch_point |
Initial guess for the gel touch point (will be refined by a call to find_initial_touch_point) |
stress_column |
Name of the column in |
stress_slope_column |
Name of the column in |
The estimations of the Young modulus given in this function approximately corresponds to the local tangent modulus (ATSM E111); they are found by local linear regression (lm).
A list with different geometric and mechanical measures:
A numeric vector describing the touchpoint coordinates found for the different directions (usually, "down" and "up").
Estimation of the sample height
A matrix with rows for the directions ("down", "up" in general) and columns for the different strains at which the Young modulus is estimated (i.e. 9 colums for Young moduli at strains 0.1, 0.2, 0.3, ... , 0.9
An overall estimate of the hysteresis between compression ("down") and relaxation ("up"). This is the area between the "down" and "up" curve devided by the area under the "down" curve.
Thomas Braschler
ATSM standard E111: https://www.astm.org/Standards/E111.htm
find_initial_touch_point, used internally
# This is not necessarily the most appropriate use since with foam_mechanical_analysis, there is a more specific function for the foam-like cryogels. Here, one can see that the # initial elastic Young modulus is high, followed by a plateau with lower Young moduli before a final increase data(sampleGelSmooth) results=tissue_mechanical_analysis( sampleGelSmooth,start_height=start_height_mm) results
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.