voltageCurve {Thermistor}R Documentation

Calculate V-DeltaT Curve for Given Indices

Description

Calculating the temperature-change-voltage curve for a particular set of indices for each component corresponding to the values from a standard components space.

Usage

voltageCurve(Tdata, x, StdRes, StdTherm_Val, StdTherm_Beta)

Arguments

Tdata

a vector of temperature-change values

x

a vector of the indices of each component

StdRes

a vector of available resistor values

StdTherm_Val

a vector of available nominal thermistor resistances

StdTherm_Beta

a vector of of thermistor temperature coefficients

Value

the voltage values at Point B

Examples

data(CompValues)
Tdata <- seq(-40, 85, by=5)
R_id <- c(2, 1, 4, 2, 1, 3)
Res <- CompValues$Res
ThVal <- CompValues$ThVal
ThBeta <- CompValues$ThBeta
voltageCurve(Tdata, R_id, Res, ThVal, ThBeta)

[Package Thermistor version 1.1.0 Index]