summary.walls: Summarise a walls object

Description Usage Arguments Details See Also Examples

Description

summary method for class "walls".

Usage

1
2
3
## S3 method for class 'walls'
summary(object, param = c("original", "R", "U"),
  nls_control = NULL, gnls_control = NULL, ...)

Arguments

object

an object of class "walls", a result of a call to one_tm, one_tm_sun or two_tm.

param

A character scalar indicating which parameterization should be used in the results for the thermal resistance parameters:

  • "original": (R1, R2, R3)

  • "R": (sumR = R1 + R2 + R3, fracR1 = R1 / sumR, fracR2 = R2 / sumR)

  • "U": (Uvalue = 1 / sumR, fracR1 = R1 / sumR, fracR2 = R2 / sumR)

nls_control

An optional list of control settings to be passed to nls.

gnls_control

An optional list of control settings to be passed to gnls.

...

Additional arguments passed on to the print.

Details

Note: if param = "R" or param = "U" then the model is refitted under the new parameterization and therefore may take a few seconds.

See Also

one_tm, one_tm_sun and two_tm

Examples

1
2
3
4
5
6
7
8
9
fit2 <- two_tm(data = cwall_east)
summary(fit2)
summary(fit2, param = "R")
summary(fit2, param = "U")

fit1s <- one_tm_sun(data = cwall_east)
summary(fit1s)
summary(fit1s, param = "R")
summary(fit1s, param = "U")

paulnorthrop/walls documentation built on May 15, 2019, 10:02 p.m.