getModelLibrary: Get model library

View source: R/getModelLibrary.R

getModelLibraryR Documentation

Get model library

Description

Store the models included in the package to a list

Usage

getModelLibrary()

Value

A list containing pre-built models

Examples

models = getModelLibrary()
names(models) # To see the models included

y = a + b * x + c * log(x) ^ 2 + d * x ^ (1/2)
(eq. 2126 tableCurve)
Parameters: a, b, c, d

y = a + b * log(x) ^ 2 + c * log(x) + d * log(x) / x
(eq. 3132 tableCurve)

Parameters: a, b, c, d

y = a + b * x^2 * log(x) + c * x^3
(eq. 1076 tableCurve)

Parameters: a, b, c

y = a + b * x + c * x^2
(eq. 1003 tableCurve)

Parameters: a, b, c

y = a + b * x^(1.5) + c * x^2
(eq. 1040 tableCurve)

Parameters: a, b, c

y = 1 / (a + b * exp(x) + c * exp(-x))
(eq. 1552 tableCurve)

Parameters: a, b, c


mdjbru-R-packages/thermPerf documentation built on Nov. 4, 2023, 11:48 p.m.