TPMplt (version 0.1.0)

epsExtract: Auto output for strain rate vs. temperature table

Description

Automatically output the strain rate vs. temperature table, by a specified strain condition.

Usage

epsExtract(data, eps, lyT, lySR, manual = NULL)

Arguments

data

A data frame with VBTree style. Pay attention, all factors in column names should be separated by "-" symbol, and factors for temperatures and strain rates should be saved in pure numeric style.

eps

A numeric value to specify strain condition.

lyT

An integer to specify the layer for temperature attribute in the vector binary tree.

lySR

An integer to specify the layer for strain rate attribute in the vector binary tree.

manual

An integer vector with the length of 3 where the 1st element denotes the layer for Stress and Strain, the 2nd and 3rd elements represent the levels for Strain and Stress, respectively. The default setting is NULL, which can call the function lyIDdetector for automatical completion this vector.

Value

A list consist of a matrix table arranged by rows for strain rates while columns for temperatures, and a numeric value as strain condition for this strain rate-temperature table.

See Also

VBTree, lyIDdetector

Examples

Run this code
# NOT RUN {
require(VBTree)
# Find locations for temperature and strain rate:
dl2vbt(chrvec2dl(colnames(TPMdata)))
epsExtract(TPMdata, eps = 0.7, lyT = 2, lySR = 3)
# }

Run the code above in your browser using DataCamp Workspace