Skip to content
Snippets Groups Projects
Commit ad1e5e84 authored by pbac's avatar pbac
Browse files

2021-12-15 experiment version 1

parent 4230b011
Branches
No related tags found
No related merge requests found
Showing
with 4292 additions and 0 deletions
---
title: "prbs-multiroom-and-forward-temperature"
output:
# pdf_document:
# fig_caption: yes
# fig_crop: FALSE
html_document:
toc: true
toc_float: true
---
```{r setup, include=FALSE, cache=FALSE, purl=FALSE}
knitr::opts_chunk$set(echo = TRUE, results = 'hide', message = FALSE, warning = FALSE, fig.height = 4, fig.width = 14, fig.path = 'genfig/', cache.path = 'cache/', cache = TRUE, cache.rebuild = TRUE, dpi=100)
```
```{r init, echo=FALSE, cache=FALSE}
##----------------------------------------------------------------
# Set the working directory
setwd(".")
# Source the files in the "functions" folder
files <- dir("../functions",full.names=TRUE)
for(i in 1:length(files)) source(files[i])
##----------------------------------------------------------------
```
# Introduction <!-- {.tabset} -->
In this experiment the set points in each room are controlled following a Pseudo Random Binary Sequence (PRBS). This enables a controlled experiment where the control variables (room temperature setpoints) will be set independently (uncorrelated) to other variables (like time of day, external temperature, etc.). Further, by lagging the PRBS signals, each the change of set points in each room will be independent.
## PRBS explanaition
Here a small explanaition of how the PRBS works and a reference to a paper about it.
```{r prbsacf}
##----------------------------------------------------------------
# Generate a PRBS signal
# Use the function defined in the file "functions/prbs.R", which generates a PRBS signal
# - n is the length of the register
# - initReg just needs to be some initial value of 1,2,...
# it is the initial value of the registers and therefore only
# determines the start of the cycle
# - lambda is the length of the smallest period in
# which the signal can change, given in samples
x <- prbs(n=6)
acf(x, lag.max=length(x))
# prbs
plot(x,type="s")
acf(x, lag.max=length(x))
# See to PRBS
x <- prbs(n=6)
# LagWithCycling to the right
y <- lagWithCycling(x, lag=10)
# cross cor.
ccf(x,y, lag.max=length(x))
```
```{r prbshist}
##----------------------------------------------------------------
# Generate the PRBS signals for the PRBS1 experiment, where a single signal controls all heaters in the building
# PRBS med n=6, lambda=4
# - Smallest period in one state for 5 minute sample period is then 4*5min=20min
# - Settling time of the system (T_s in the Godfrey 1980 paper) below the period (T_0 in the paper) in: lambda * (2^n-1) * 5 / 60 = 21 hours
n <- 5
lambda <- 4
(x <- prbs(n, 37, lambda))
length(x) / 24
(xper <- c(0,cumsum(abs(diff(x)))))
perlens <- unlist(lapply(split(xper,xper), length))
table(perlens)
hist(perlens, breaks=(0:n)*lambda+lambda*0.5)
```
```{r prbsplotts}
plot(x, type="s")
```
## PRBS different levels
Combine periods with different temperature levels.
```{r prbsplotts2}
# Create sequence
testseq <- function(n, lambda, nhours, starthour, Tmin, Tmax, plotit=FALSE){
x <- prbs(n, 42, lambda)
perlen <- table(cumsum(abs(diff(c(x[1],x)))))
t1 <- c(0,cumsum(perlen[-length(perlen)])) / (length(x)-1)
t1 <- t1 * nhours
# Round to 5 min steps
t1 <- round(t1*12) / 12
t1 <- starthour + t1
# Set points
val1 <- rep(c(Tmin,Tmax), length(t1))[1:length(t1)]
#
if(plotit){
plot(t1, val1, type="s")
}
#
return(data.frame(t=t1, Tset=val1))
}
# val <- testseq(n=5, lambda=1, nhours=96, Tmin=15, Tmax=24)
# diff(val$t)
# Set the values for each period
P <- data.frame(
len = c(4, 2, 2, 1)*24,
n = c(5, 5, 5, 5),
lmbd = c(1, 1, 2, 1),
Tmin = c(15,17,20,21),
Tmax = c(25,23,22,22))
nms <- names(P)
# Repeats
P <- as.data.frame(sapply(1:ncol(P), function(i){
rep(P[ ,i], each=2)
}))
names(P) <- nms
#
# Generate the experiments
L <- list()
for(i in 1:length(P$n)){
if(i == 1){
starthour <- 0
}else{
starthour <- sum(P$len[1:(i-1)])
print(i)
print(starthour)
}
# Generate
L[[i]] <- testseq(n=P$n[i], lambda=P$lmbd[i], nhours=P$len[i], starthour=starthour, Tmin=P$Tmin[i], Tmax=P$Tmax[i])
}
#
# Combined
X <- do.call("rbind", L)
plot(X$t/24, X$Tset, type="s")
```
## Lagged for each room
Lag for each room to make them independent. Note that on each floor they are repeated, this should be such that each neighbouring room, also on top of each other, are lagged differently.
```{r outputs}
nms <- read.table("../data/outchannels.csv", header=TRUE, sep=",", as.is=TRUE)$VarName
nms <- nms[grep("^Room_C", nms)]
rooms <- sapply(strsplit(nms, "_"), function(x){x[2]})
rooms <- rooms[order(as.numeric(gsub("[[:alpha:]]","",rooms)))]
# group the rooms
rooms
Lrooms <- list()
Lrooms[[1]] <- c("C0.01","C0.01B","C0.02","C0.03")
Lrooms[[2]] <- c("C0.01C","C0.04")
Lrooms[[3]] <- c("C0.06")
Lrooms[[4]] <- c("C0.07","C0.07A") #C0.07A has LoRa, so not responding
Lrooms[[5]] <- c("C0.08")
Lrooms[[6]] <- c("C0.11","C0.12") #C0.12 has old thermostats, so not responding
Lrooms[[7]] <- c("C0.13")
Lrooms[[8]] <- c("C0.14")
Lrooms[[9]] <- c("C0.15")
Lrooms[[10]] <- c("C1.02","C1.00") # C1.00 has old thermostats and one LoRa, no resp
Lrooms[[11]] <- c("C1.03")
Lrooms[[12]] <- c("C1.04")
Lrooms[[13]] <- c("C1.07")
Lrooms[[14]] <- c("C1.08")
Lrooms[[15]] <- c("C1.09","C1.13") #C1.13 has old thermostats, so no resp.
Lrooms[[16]] <- c("C1.12")
Lrooms[[17]] <- c("C2.01")
Lrooms[[18]] <- c("C2.03")
Lrooms[[19]] <- c("C2.04")
# Any missing
rooms[which(!rooms %in% unlist(Lrooms))]
length(Lrooms)
lagseqs <- list(c(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19)-1,
c(3,17,1,15,7,13,5,11,8,10,9,12,4,19,14,6,16,2,18)-1)
lagit <- function(iL, Lrooms, nhours){
val <- L[[iL]]
maxk <- length(Lrooms)
tstart <- val$t[1]
val$t <- val$t - tstart
# every second time, do reverse
lapply(1:length(Lrooms), function(i){
# even or uneven repetition
lagval <- lagseqs[[1+(iL%%2)]][i]
print(lagval)
val$t <- (val$t + lagval/maxk * nhours) %% nhours
val$t <- val$t + tstart
return(val[order(val$t), ])
})
}
# Lag for all rooms
Lall <- lapply(1:length(L), function(i){
lagit(i, Lrooms, P$len[i])
})
# Bind them together for each room
tmp <- lapply(1:length(Lrooms), function(i){
lapply(1:length(Lrooms[[i]]), function(ii){
val <- lapply(1:length(L), function(iii){
Lall[[iii]][[i]]
})
tmp <- do.call("rbind",val)
# Insert an initial value, just insert the second value
rbind(data.frame(t=0, Tset=tmp$Tset[2]), tmp)
})
})
Lfinal <- do.call("c",tmp)
names(Lfinal) <- unlist(Lrooms)
```
```{r plotrooms}
#setpar("ts", mfrow=c(5,5))
lapply(1:length(Lfinal), function(i){
x <- Lfinal[[i]]
plot(x$t, x$Tset, type="s", ylab="")
title(main=names(Lfinal)[i], line=-1)
})
#dev.copy2pdf(file="setpoints/setpoints.pdf")
```
## Write to files
```{r write-to-files}
unlink("outchannels", recursive=TRUE)
dir.create("outchannels")
lapply(1:length(Lfinal), function(i){
x <- Lfinal[[i]]
# Write to separate .csv files
write.table(x, file=pst("outchannels/",names(Lfinal)[i],".csv"), sep=",", row.names=FALSE)
})
```
```{r write-the-R-code, purl=FALSE}
#library(knitr)
#purl("experiment.Rmd")
```
```{r move-output-file, purl=FALSE}
#file.copy("experiment.html","../2021-12-15_multiroom-and-Tforward.html")
```
# Forward temeprature
```{r forward, fig.height = 10}
## ------------------------------------------------------------------------
set.seed(9781)
#dev.new()
tmp <- multilevelseq2(n = 70, lmin = 4, lmax = 16, xmin = 30, xmid=60, xmax = 70, centering = 5, midoffset = 0, plotit=TRUE)
tmp$x <- round(tmp$x)
## # Repeat it
## tmp2 <- tmp
## tmp2$t <- tmp$t + tmp$t[nrow(tmp)]
## tmp <- rbind(tmp,tmp2)
#
plot(tmp$t, tmp$x, type="s")
# The length matches
write.table(tmp, file="outchannels/Tfor.csv", sep=",", row.names=FALSE)
```
This diff is collapsed.
library(rmarkdown)
library(knitr)
render('experiment.Rmd')
system("chromium-freeworld file:///home/pbac/buildingexperiments/2021-12-15_multiroom-and-Tforward/experiment.html#PRBS_different_levels")
purl('experiment.Rmd')
"t","Tset"
0,25
0.521929824561411,15
3.68859649122807,25
10.1052631578947,15
13.2719298245614,25
16.5219298245614,15
19.6885964912281,25
22.9385964912281,15
35.6885964912281,25
38.9385964912281,15
45.2719298245614,25
48.5219298245614,15
51.6885964912281,25
58.1052631578947,15
64.5219298245614,25
80.5219298245614,15
90.1052631578947,25
96,15
99.1666666666667,25
102.416666666667,15
105.583333333333,25
108.833333333333,15
121.583333333333,25
124.833333333333,15
131.166666666667,25
134.416666666667,15
137.583333333333,25
144,15
150.416666666667,25
166.416666666667,15
176,25
182.416666666667,15
185.583333333333,25
192.219298245614,17
193.885964912281,23
197.052631578947,17
198.635964912281,23
200.219298245614,17
201.885964912281,23
203.469298245614,17
209.885964912281,23
211.469298245614,17
214.635964912281,23
216.219298245614,17
217.885964912281,23
221.052631578947,17
224.219298245614,23
232.219298245614,17
237.052631578947,23
240,17
241.583333333333,23
243.166666666667,17
244.833333333333,23
246.416666666667,17
252.833333333333,23
254.416666666667,17
257.583333333333,23
259.166666666667,17
260.833333333333,23
264,17
267.166666666667,23
275.166666666667,17
280,23
283.166666666667,17
284.833333333333,23
289.135964912281,22
293.052631578947,20
294.635964912281,22
296.219298245614,20
297.802631578947,22
299.385964912281,20
305.635964912281,22
307.219298245614,20
310.385964912281,22
311.969298245614,20
313.552631578947,22
316.635964912281,20
319.802631578947,22
327.635964912281,20
332.385964912281,22
335.552631578947,20
336,20
337.583333333333,22
339.166666666667,20
340.75,22
342.333333333333,20
348.583333333333,22
350.166666666667,20
353.333333333333,22
354.916666666667,20
356.5,22
359.583333333333,20
362.75,22
370.583333333333,20
375.333333333333,22
378.5,20
380.083333333333,22
384.109649122807,21
384.94298245614,22
386.526315789474,21
387.359649122807,22
388.109649122807,21
388.94298245614,22
389.69298245614,21
392.94298245614,22
393.69298245614,21
395.359649122807,22
396.109649122807,21
396.94298245614,22
398.526315789474,21
400.109649122807,22
404.109649122807,21
406.526315789474,22
408,21
408.833333333333,22
409.583333333333,21
410.416666666667,22
411.166666666667,21
414.416666666667,22
415.166666666667,21
416.833333333333,22
417.583333333333,21
418.416666666667,22
420,21
421.583333333333,22
425.583333333333,21
428,22
429.583333333333,21
430.416666666667,22
"t","Tset"
0,25
0.521929824561411,15
3.68859649122807,25
10.1052631578947,15
13.2719298245614,25
16.5219298245614,15
19.6885964912281,25
22.9385964912281,15
35.6885964912281,25
38.9385964912281,15
45.2719298245614,25
48.5219298245614,15
51.6885964912281,25
58.1052631578947,15
64.5219298245614,25
80.5219298245614,15
90.1052631578947,25
96,15
99.1666666666667,25
102.416666666667,15
105.583333333333,25
108.833333333333,15
121.583333333333,25
124.833333333333,15
131.166666666667,25
134.416666666667,15
137.583333333333,25
144,15
150.416666666667,25
166.416666666667,15
176,25
182.416666666667,15
185.583333333333,25
192.219298245614,17
193.885964912281,23
197.052631578947,17
198.635964912281,23
200.219298245614,17
201.885964912281,23
203.469298245614,17
209.885964912281,23
211.469298245614,17
214.635964912281,23
216.219298245614,17
217.885964912281,23
221.052631578947,17
224.219298245614,23
232.219298245614,17
237.052631578947,23
240,17
241.583333333333,23
243.166666666667,17
244.833333333333,23
246.416666666667,17
252.833333333333,23
254.416666666667,17
257.583333333333,23
259.166666666667,17
260.833333333333,23
264,17
267.166666666667,23
275.166666666667,17
280,23
283.166666666667,17
284.833333333333,23
289.135964912281,22
293.052631578947,20
294.635964912281,22
296.219298245614,20
297.802631578947,22
299.385964912281,20
305.635964912281,22
307.219298245614,20
310.385964912281,22
311.969298245614,20
313.552631578947,22
316.635964912281,20
319.802631578947,22
327.635964912281,20
332.385964912281,22
335.552631578947,20
336,20
337.583333333333,22
339.166666666667,20
340.75,22
342.333333333333,20
348.583333333333,22
350.166666666667,20
353.333333333333,22
354.916666666667,20
356.5,22
359.583333333333,20
362.75,22
370.583333333333,20
375.333333333333,22
378.5,20
380.083333333333,22
384.109649122807,21
384.94298245614,22
386.526315789474,21
387.359649122807,22
388.109649122807,21
388.94298245614,22
389.69298245614,21
392.94298245614,22
393.69298245614,21
395.359649122807,22
396.109649122807,21
396.94298245614,22
398.526315789474,21
400.109649122807,22
404.109649122807,21
406.526315789474,22
408,21
408.833333333333,22
409.583333333333,21
410.416666666667,22
411.166666666667,21
414.416666666667,22
415.166666666667,21
416.833333333333,22
417.583333333333,21
418.416666666667,22
420,21
421.583333333333,22
425.583333333333,21
428,22
429.583333333333,21
430.416666666667,22
"t","Tset"
0,15
10.4254385964912,25
13.6754385964912,15
20.0087719298245,25
23.2587719298245,15
26.4254385964912,25
32.8421052631579,15
39.2587719298245,25
55.2587719298245,15
64.8421052631579,25
71.2587719298245,15
74.4254385964912,25
80.8421052631579,15
84.0087719298246,25
87.2587719298246,15
90.4254385964912,25
93.6754385964912,15
101.052631578947,15
104.219298245614,25
107.469298245614,15
110.635964912281,25
113.885964912281,15
126.635964912281,25
129.885964912281,15
136.219298245614,25
139.469298245614,15
142.635964912281,25
149.052631578947,15
155.469298245614,25
171.469298245614,15
181.052631578947,25
187.469298245614,15
190.635964912281,25
197.254385964912,23
198.837719298246,17
202.004385964912,23
203.587719298246,17
205.254385964912,23
208.421052631579,17
211.587719298246,23
219.587719298246,17
224.421052631579,23
227.587719298246,17
229.254385964912,23
232.421052631579,17
234.004385964912,23
235.587719298246,17
237.254385964912,23
238.837719298246,17
242.526315789474,17
244.109649122807,23
245.69298245614,17
247.359649122807,23
248.94298245614,17
255.359649122807,23
256.94298245614,17
260.109649122807,23
261.69298245614,17
263.359649122807,23
266.526315789474,17
269.69298245614,23
277.69298245614,17
282.526315789474,23
285.69298245614,17
287.359649122807,23
293.004385964912,22
294.587719298246,20
297.754385964912,22
299.337719298246,20
300.921052631579,22
304.004385964912,20
307.171052631579,22
315.004385964912,20
319.754385964912,22
322.921052631579,20
324.504385964912,22
328.421052631579,20
330.004385964912,22
331.587719298246,20
333.171052631579,22
334.754385964912,20
338.526315789474,20
340.109649122807,22
341.69298245614,20
343.276315789474,22
344.859649122807,20
351.109649122807,22
352.69298245614,20
355.859649122807,22
357.44298245614,20
359.026315789474,22
362.109649122807,20
365.276315789474,22
373.109649122807,20
377.859649122807,22
381.026315789474,20
382.609649122807,22
386.627192982456,22
387.377192982456,21
389.043859649123,22
389.793859649123,21
390.627192982456,22
392.210526315789,21
393.793859649123,22
397.793859649123,21
400.210526315789,22
401.793859649123,21
402.627192982456,22
404.210526315789,21
405.043859649123,22
405.793859649123,21
406.627192982456,22
407.377192982456,21
409.263157894737,21
410.09649122807,22
410.84649122807,21
411.679824561404,22
412.429824561404,21
415.679824561404,22
416.429824561404,21
418.09649122807,22
418.84649122807,21
419.679824561404,22
421.263157894737,21
422.84649122807,22
426.84649122807,21
429.263157894737,22
430.84649122807,21
431.679824561404,22
"t","Tset"
0,25
0.521929824561411,15
3.68859649122807,25
10.1052631578947,15
13.2719298245614,25
16.5219298245614,15
19.6885964912281,25
22.9385964912281,15
35.6885964912281,25
38.9385964912281,15
45.2719298245614,25
48.5219298245614,15
51.6885964912281,25
58.1052631578947,15
64.5219298245614,25
80.5219298245614,15
90.1052631578947,25
96,15
99.1666666666667,25
102.416666666667,15
105.583333333333,25
108.833333333333,15
121.583333333333,25
124.833333333333,15
131.166666666667,25
134.416666666667,15
137.583333333333,25
144,15
150.416666666667,25
166.416666666667,15
176,25
182.416666666667,15
185.583333333333,25
192.219298245614,17
193.885964912281,23
197.052631578947,17
198.635964912281,23
200.219298245614,17
201.885964912281,23
203.469298245614,17
209.885964912281,23
211.469298245614,17
214.635964912281,23
216.219298245614,17
217.885964912281,23
221.052631578947,17
224.219298245614,23
232.219298245614,17
237.052631578947,23
240,17
241.583333333333,23
243.166666666667,17
244.833333333333,23
246.416666666667,17
252.833333333333,23
254.416666666667,17
257.583333333333,23
259.166666666667,17
260.833333333333,23
264,17
267.166666666667,23
275.166666666667,17
280,23
283.166666666667,17
284.833333333333,23
289.135964912281,22
293.052631578947,20
294.635964912281,22
296.219298245614,20
297.802631578947,22
299.385964912281,20
305.635964912281,22
307.219298245614,20
310.385964912281,22
311.969298245614,20
313.552631578947,22
316.635964912281,20
319.802631578947,22
327.635964912281,20
332.385964912281,22
335.552631578947,20
336,20
337.583333333333,22
339.166666666667,20
340.75,22
342.333333333333,20
348.583333333333,22
350.166666666667,20
353.333333333333,22
354.916666666667,20
356.5,22
359.583333333333,20
362.75,22
370.583333333333,20
375.333333333333,22
378.5,20
380.083333333333,22
384.109649122807,21
384.94298245614,22
386.526315789474,21
387.359649122807,22
388.109649122807,21
388.94298245614,22
389.69298245614,21
392.94298245614,22
393.69298245614,21
395.359649122807,22
396.109649122807,21
396.94298245614,22
398.526315789474,21
400.109649122807,22
404.109649122807,21
406.526315789474,22
408,21
408.833333333333,22
409.583333333333,21
410.416666666667,22
411.166666666667,21
414.416666666667,22
415.166666666667,21
416.833333333333,22
417.583333333333,21
418.416666666667,22
420,21
421.583333333333,22
425.583333333333,21
428,22
429.583333333333,21
430.416666666667,22
"t","Tset"
0,25
0.521929824561411,15
3.68859649122807,25
10.1052631578947,15
13.2719298245614,25
16.5219298245614,15
19.6885964912281,25
22.9385964912281,15
35.6885964912281,25
38.9385964912281,15
45.2719298245614,25
48.5219298245614,15
51.6885964912281,25
58.1052631578947,15
64.5219298245614,25
80.5219298245614,15
90.1052631578947,25
96,15
99.1666666666667,25
102.416666666667,15
105.583333333333,25
108.833333333333,15
121.583333333333,25
124.833333333333,15
131.166666666667,25
134.416666666667,15
137.583333333333,25
144,15
150.416666666667,25
166.416666666667,15
176,25
182.416666666667,15
185.583333333333,25
192.219298245614,17
193.885964912281,23
197.052631578947,17
198.635964912281,23
200.219298245614,17
201.885964912281,23
203.469298245614,17
209.885964912281,23
211.469298245614,17
214.635964912281,23
216.219298245614,17
217.885964912281,23
221.052631578947,17
224.219298245614,23
232.219298245614,17
237.052631578947,23
240,17
241.583333333333,23
243.166666666667,17
244.833333333333,23
246.416666666667,17
252.833333333333,23
254.416666666667,17
257.583333333333,23
259.166666666667,17
260.833333333333,23
264,17
267.166666666667,23
275.166666666667,17
280,23
283.166666666667,17
284.833333333333,23
289.135964912281,22
293.052631578947,20
294.635964912281,22
296.219298245614,20
297.802631578947,22
299.385964912281,20
305.635964912281,22
307.219298245614,20
310.385964912281,22
311.969298245614,20
313.552631578947,22
316.635964912281,20
319.802631578947,22
327.635964912281,20
332.385964912281,22
335.552631578947,20
336,20
337.583333333333,22
339.166666666667,20
340.75,22
342.333333333333,20
348.583333333333,22
350.166666666667,20
353.333333333333,22
354.916666666667,20
356.5,22
359.583333333333,20
362.75,22
370.583333333333,20
375.333333333333,22
378.5,20
380.083333333333,22
384.109649122807,21
384.94298245614,22
386.526315789474,21
387.359649122807,22
388.109649122807,21
388.94298245614,22
389.69298245614,21
392.94298245614,22
393.69298245614,21
395.359649122807,22
396.109649122807,21
396.94298245614,22
398.526315789474,21
400.109649122807,22
404.109649122807,21
406.526315789474,22
408,21
408.833333333333,22
409.583333333333,21
410.416666666667,22
411.166666666667,21
414.416666666667,22
415.166666666667,21
416.833333333333,22
417.583333333333,21
418.416666666667,22
420,21
421.583333333333,22
425.583333333333,21
428,22
429.583333333333,21
430.416666666667,22
"t","Tset"
0,15
10.4254385964912,25
13.6754385964912,15
20.0087719298245,25
23.2587719298245,15
26.4254385964912,25
32.8421052631579,15
39.2587719298245,25
55.2587719298245,15
64.8421052631579,25
71.2587719298245,15
74.4254385964912,25
80.8421052631579,15
84.0087719298246,25
87.2587719298246,15
90.4254385964912,25
93.6754385964912,15
101.052631578947,15
104.219298245614,25
107.469298245614,15
110.635964912281,25
113.885964912281,15
126.635964912281,25
129.885964912281,15
136.219298245614,25
139.469298245614,15
142.635964912281,25
149.052631578947,15
155.469298245614,25
171.469298245614,15
181.052631578947,25
187.469298245614,15
190.635964912281,25
197.254385964912,23
198.837719298246,17
202.004385964912,23
203.587719298246,17
205.254385964912,23
208.421052631579,17
211.587719298246,23
219.587719298246,17
224.421052631579,23
227.587719298246,17
229.254385964912,23
232.421052631579,17
234.004385964912,23
235.587719298246,17
237.254385964912,23
238.837719298246,17
242.526315789474,17
244.109649122807,23
245.69298245614,17
247.359649122807,23
248.94298245614,17
255.359649122807,23
256.94298245614,17
260.109649122807,23
261.69298245614,17
263.359649122807,23
266.526315789474,17
269.69298245614,23
277.69298245614,17
282.526315789474,23
285.69298245614,17
287.359649122807,23
293.004385964912,22
294.587719298246,20
297.754385964912,22
299.337719298246,20
300.921052631579,22
304.004385964912,20
307.171052631579,22
315.004385964912,20
319.754385964912,22
322.921052631579,20
324.504385964912,22
328.421052631579,20
330.004385964912,22
331.587719298246,20
333.171052631579,22
334.754385964912,20
338.526315789474,20
340.109649122807,22
341.69298245614,20
343.276315789474,22
344.859649122807,20
351.109649122807,22
352.69298245614,20
355.859649122807,22
357.44298245614,20
359.026315789474,22
362.109649122807,20
365.276315789474,22
373.109649122807,20
377.859649122807,22
381.026315789474,20
382.609649122807,22
386.627192982456,22
387.377192982456,21
389.043859649123,22
389.793859649123,21
390.627192982456,22
392.210526315789,21
393.793859649123,22
397.793859649123,21
400.210526315789,22
401.793859649123,21
402.627192982456,22
404.210526315789,21
405.043859649123,22
405.793859649123,21
406.627192982456,22
407.377192982456,21
409.263157894737,21
410.09649122807,22
410.84649122807,21
411.679824561404,22
412.429824561404,21
415.679824561404,22
416.429824561404,21
418.09649122807,22
418.84649122807,21
419.679824561404,22
421.263157894737,21
422.84649122807,22
426.84649122807,21
429.263157894737,22
430.84649122807,21
431.679824561404,22
"t","Tset"
0,25
0,15
3.16666666666667,25
6.41666666666667,15
9.58333333333333,25
12.8333333333333,15
25.5833333333333,25
28.8333333333333,15
35.1666666666667,25
38.4166666666667,15
41.5833333333333,25
48,15
54.4166666666667,25
70.4166666666667,15
80,25
86.4166666666667,15
89.5833333333333,25
96.5219298245614,15
99.6885964912281,25
106.105263157895,15
109.271929824561,25
112.521929824561,15
115.688596491228,25
118.938596491228,15
131.688596491228,25
134.938596491228,15
141.271929824561,25
144.521929824561,15
147.688596491228,25
154.105263157895,15
160.521929824561,25
176.521929824561,15
186.105263157895,25
192,17
193.583333333333,23
195.166666666667,17
196.833333333333,23
198.416666666667,17
204.833333333333,23
206.416666666667,17
209.583333333333,23
211.166666666667,17
212.833333333333,23
216,17
219.166666666667,23
227.166666666667,17
232,23
235.166666666667,17
236.833333333333,23
240.219298245614,17
241.885964912281,23
245.052631578947,17
246.635964912281,23
248.219298245614,17
249.885964912281,23
251.469298245614,17
257.885964912281,23
259.469298245614,17
262.635964912281,23
264.219298245614,17
265.885964912281,23
269.052631578947,17
272.219298245614,23
280.219298245614,17
285.052631578947,23
288,20
289.583333333333,22
291.166666666667,20
292.75,22
294.333333333333,20
300.583333333333,22
302.166666666667,20
305.333333333333,22
306.916666666667,20
308.5,22
311.583333333333,20
314.75,22
322.583333333333,20
327.333333333333,22
330.5,20
332.083333333333,22
337.135964912281,22
341.052631578947,20
342.635964912281,22
344.219298245614,20
345.802631578947,22
347.385964912281,20
353.635964912281,22
355.219298245614,20
358.385964912281,22
359.969298245614,20
361.552631578947,22
364.635964912281,20
367.802631578947,22
375.635964912281,20
380.385964912281,22
383.552631578947,20
384,21
384.833333333333,22
385.583333333333,21
386.416666666667,22
387.166666666667,21
390.416666666667,22
391.166666666667,21
392.833333333333,22
393.583333333333,21
394.416666666667,22
396,21
397.583333333333,22
401.583333333333,21
404,22
405.583333333333,21
406.416666666667,22
408.109649122807,21
408.94298245614,22
410.526315789474,21
411.359649122807,22
412.109649122807,21
412.94298245614,22
413.69298245614,21
416.94298245614,22
417.69298245614,21
419.359649122807,22
420.109649122807,21
420.94298245614,22
422.526315789474,21
424.109649122807,22
428.109649122807,21
430.526315789474,22
"t","Tset"
0,15
0.320175438596479,25
3.57017543859648,15
9.90350877192981,25
13.1535087719298,15
16.3201754385965,25
22.7368421052632,15
29.1535087719298,25
45.1535087719298,15
54.7368421052632,25
61.1535087719298,15
64.3201754385965,25
70.7368421052632,15
73.9035087719298,25
77.1535087719298,15
80.3201754385965,25
83.5701754385965,15
101.574561403509,15
104.741228070175,25
111.157894736842,15
114.324561403509,25
117.574561403509,15
120.741228070175,25
123.991228070175,15
136.741228070175,25
139.991228070175,15
146.324561403509,25
149.574561403509,15
152.741228070175,25
159.157894736842,15
165.574561403509,25
181.574561403509,15
191.157894736842,25
192.201754385965,23
193.785087719298,17
196.951754385965,23
198.535087719298,17
200.201754385965,23
203.368421052632,17
206.535087719298,23
214.535087719298,17
219.368421052632,23
222.535087719298,17
224.201754385965,23
227.368421052632,17
228.951754385965,23
230.535087719298,17
232.201754385965,23
233.785087719298,17
242.745614035088,17
244.412280701754,23
247.578947368421,17
249.162280701754,23
250.745614035088,17
252.412280701754,23
253.995614035088,17
260.412280701754,23
261.995614035088,17
265.162280701754,23
266.745614035088,17
268.412280701754,23
271.578947368421,17
274.745614035088,23
282.745614035088,17
287.578947368421,23
289.535087719298,20
292.701754385965,22
294.285087719298,20
295.868421052632,22
298.951754385965,20
302.118421052632,22
309.951754385965,20
314.701754385965,22
317.868421052632,20
319.451754385965,22
323.368421052632,20
324.951754385965,22
326.535087719298,20
328.118421052632,22
329.701754385965,20
335.951754385965,22
338.078947368421,20
339.662280701754,22
343.578947368421,20
345.162280701754,22
346.745614035088,20
348.328947368421,22
349.912280701754,20
356.162280701754,22
357.745614035088,20
360.912280701754,22
362.495614035088,20
364.078947368421,22
367.162280701754,20
370.328947368421,22
378.162280701754,20
382.912280701754,22
384.100877192982,22
384.850877192982,21
386.517543859649,22
387.267543859649,21
388.100877192982,22
389.684210526316,21
391.267543859649,22
395.267543859649,21
397.684210526316,22
399.267543859649,21
400.100877192982,22
401.684210526316,21
402.517543859649,22
403.267543859649,21
404.100877192982,22
404.850877192982,21
409.372807017544,21
410.206140350877,22
411.789473684211,21
412.622807017544,22
413.372807017544,21
414.206140350877,22
414.956140350877,21
418.206140350877,22
418.956140350877,21
420.622807017544,22
421.372807017544,21
422.206140350877,22
423.789473684211,21
425.372807017544,22
429.372807017544,21
431.789473684211,22
"t","Tset"
0,15
0.320175438596479,25
3.57017543859648,15
9.90350877192981,25
13.1535087719298,15
16.3201754385965,25
22.7368421052632,15
29.1535087719298,25
45.1535087719298,15
54.7368421052632,25
61.1535087719298,15
64.3201754385965,25
70.7368421052632,15
73.9035087719298,25
77.1535087719298,15
80.3201754385965,25
83.5701754385965,15
101.574561403509,15
104.741228070175,25
111.157894736842,15
114.324561403509,25
117.574561403509,15
120.741228070175,25
123.991228070175,15
136.741228070175,25
139.991228070175,15
146.324561403509,25
149.574561403509,15
152.741228070175,25
159.157894736842,15
165.574561403509,25
181.574561403509,15
191.157894736842,25
192.201754385965,23
193.785087719298,17
196.951754385965,23
198.535087719298,17
200.201754385965,23
203.368421052632,17
206.535087719298,23
214.535087719298,17
219.368421052632,23
222.535087719298,17
224.201754385965,23
227.368421052632,17
228.951754385965,23
230.535087719298,17
232.201754385965,23
233.785087719298,17
242.745614035088,17
244.412280701754,23
247.578947368421,17
249.162280701754,23
250.745614035088,17
252.412280701754,23
253.995614035088,17
260.412280701754,23
261.995614035088,17
265.162280701754,23
266.745614035088,17
268.412280701754,23
271.578947368421,17
274.745614035088,23
282.745614035088,17
287.578947368421,23
289.535087719298,20
292.701754385965,22
294.285087719298,20
295.868421052632,22
298.951754385965,20
302.118421052632,22
309.951754385965,20
314.701754385965,22
317.868421052632,20
319.451754385965,22
323.368421052632,20
324.951754385965,22
326.535087719298,20
328.118421052632,22
329.701754385965,20
335.951754385965,22
338.078947368421,20
339.662280701754,22
343.578947368421,20
345.162280701754,22
346.745614035088,20
348.328947368421,22
349.912280701754,20
356.162280701754,22
357.745614035088,20
360.912280701754,22
362.495614035088,20
364.078947368421,22
367.162280701754,20
370.328947368421,22
378.162280701754,20
382.912280701754,22
384.100877192982,22
384.850877192982,21
386.517543859649,22
387.267543859649,21
388.100877192982,22
389.684210526316,21
391.267543859649,22
395.267543859649,21
397.684210526316,22
399.267543859649,21
400.100877192982,22
401.684210526316,21
402.517543859649,22
403.267543859649,21
404.100877192982,22
404.850877192982,21
409.372807017544,21
410.206140350877,22
411.789473684211,21
412.622807017544,22
413.372807017544,21
414.206140350877,22
414.956140350877,21
418.206140350877,22
418.956140350877,21
420.622807017544,22
421.372807017544,21
422.206140350877,22
423.789473684211,21
425.372807017544,22
429.372807017544,21
431.789473684211,22
"t","Tset"
0,25
4.73245614035088,15
14.3157894736842,25
20.7324561403509,15
23.8991228070175,25
30.3157894736842,15
33.4824561403509,25
36.7324561403509,15
39.8991228070175,25
43.1491228070175,15
55.8991228070175,25
59.1491228070175,15
65.4824561403509,25
68.7324561403509,15
71.8991228070175,25
78.3157894736842,15
84.7324561403509,25
100.210526315789,25
106.627192982456,15
109.793859649123,25
116.210526315789,15
119.377192982456,25
122.627192982456,15
125.793859649123,25
129.043859649123,15
141.793859649123,25
145.043859649123,15
151.377192982456,25
154.627192982456,15
157.793859649123,25
164.210526315789,15
170.627192982456,25
186.627192982456,15
194.324561403509,17
199.157894736842,23
202.324561403509,17
203.991228070175,23
207.157894736842,17
208.741228070175,23
210.324561403509,17
211.991228070175,23
213.574561403509,17
219.991228070175,23
221.574561403509,17
224.741228070175,23
226.324561403509,17
227.991228070175,23
231.157894736842,17
234.324561403509,23
242.105263157895,23
245.271929824561,17
246.938596491228,23
250.105263157895,17
251.688596491228,23
253.271929824561,17
254.938596491228,23
256.521929824561,17
262.938596491228,23
264.521929824561,17
267.688596491228,23
269.271929824561,17
270.938596491228,23
274.105263157895,17
277.271929824561,23
285.271929824561,17
289.741228070175,20
294.491228070175,22
297.657894736842,20
299.241228070175,22
303.157894736842,20
304.741228070175,22
306.324561403509,20
307.907894736842,22
309.491228070175,20
315.741228070175,22
317.324561403509,20
320.491228070175,22
322.074561403509,20
323.657894736842,22
326.741228070175,20
329.907894736842,22
337.438596491228,22
340.605263157895,20
342.188596491228,22
346.105263157895,20
347.688596491228,22
349.271929824561,20
350.855263157895,22
352.438596491228,20
358.688596491228,22
360.271929824561,20
363.438596491228,22
365.021929824561,20
366.605263157895,22
369.688596491228,20
372.855263157895,22
380.688596491228,20
385.162280701754,21
387.578947368421,22
389.162280701754,21
389.995614035088,22
391.578947368421,21
392.412280701754,22
393.162280701754,21
393.995614035088,22
394.745614035088,21
397.995614035088,22
398.745614035088,21
400.412280701754,22
401.162280701754,21
401.995614035088,22
403.578947368421,21
405.162280701754,22
409.052631578947,22
410.635964912281,21
411.469298245614,22
413.052631578947,21
413.885964912281,22
414.635964912281,21
415.469298245614,22
416.219298245614,21
419.469298245614,22
420.219298245614,21
421.885964912281,22
422.635964912281,21
423.469298245614,22
425.052631578947,21
426.635964912281,22
430.635964912281,21
"t","Tset"
0,25
3.04824561403508,15
6.21491228070175,25
12.6315789473684,15
19.0482456140351,25
35.0482456140351,15
44.6315789473684,25
51.0482456140351,15
54.2149122807018,25
60.6315789473684,15
63.7982456140351,25
67.0482456140351,15
70.2149122807018,25
73.4649122807018,15
86.2149122807018,25
89.4649122807018,15
95.7982456140351,25
105.263157894737,25
111.679824561404,15
114.84649122807,25
121.263157894737,15
124.429824561404,25
127.679824561404,15
130.84649122807,25
134.09649122807,15
146.84649122807,25
150.09649122807,15
156.429824561404,25
159.679824561404,15
162.84649122807,25
169.263157894737,15
175.679824561404,25
191.679824561404,15
193.482456140351,17
195.149122807018,23
198.315789473684,17
201.482456140351,23
209.482456140351,17
214.315789473684,23
217.482456140351,17
219.149122807018,23
222.315789473684,17
223.899122807018,23
225.482456140351,17
227.149122807018,23
228.732456140351,17
235.149122807018,23
236.732456140351,17
239.899122807018,23
244.631578947368,23
247.798245614035,17
249.464912280702,23
252.631578947368,17
254.214912280702,23
255.798245614035,17
257.464912280702,23
259.048245614035,17
265.464912280702,23
267.048245614035,17
270.214912280702,23
271.798245614035,17
273.464912280702,23
276.631578947368,17
279.798245614035,23
287.798245614035,17
289.232456140351,20
290.815789473684,22
293.899122807018,20
297.065789473684,22
304.899122807018,20
309.649122807018,22
312.815789473684,20
314.399122807018,22
318.315789473684,20
319.899122807018,22
321.482456140351,20
323.065789473684,22
324.649122807018,20
330.899122807018,22
332.482456140351,20
335.649122807018,22
339.964912280702,22
343.131578947368,20
344.714912280702,22
348.631578947368,20
350.214912280702,22
351.798245614035,20
353.381578947368,22
354.964912280702,20
361.214912280702,22
362.798245614035,20
365.964912280702,22
367.548245614035,20
369.131578947368,22
372.214912280702,20
375.381578947368,22
383.214912280702,20
384.741228070175,21
385.574561403509,22
387.157894736842,21
388.741228070175,22
392.741228070175,21
395.157894736842,22
396.741228070175,21
397.574561403509,22
399.157894736842,21
399.991228070175,22
400.741228070175,21
401.574561403509,22
402.324561403509,21
405.574561403509,22
406.324561403509,21
407.991228070175,22
410.315789473684,22
411.899122807018,21
412.732456140351,22
414.315789473684,21
415.149122807018,22
415.899122807018,21
416.732456140351,22
417.482456140351,21
420.732456140351,22
421.482456140351,21
423.149122807018,22
423.899122807018,21
424.732456140351,22
426.315789473684,21
427.899122807018,22
431.899122807018,21
"t","Tset"
0,25
3.04824561403508,15
6.21491228070175,25
12.6315789473684,15
19.0482456140351,25
35.0482456140351,15
44.6315789473684,25
51.0482456140351,15
54.2149122807018,25
60.6315789473684,15
63.7982456140351,25
67.0482456140351,15
70.2149122807018,25
73.4649122807018,15
86.2149122807018,25
89.4649122807018,15
95.7982456140351,25
105.263157894737,25
111.679824561404,15
114.84649122807,25
121.263157894737,15
124.429824561404,25
127.679824561404,15
130.84649122807,25
134.09649122807,15
146.84649122807,25
150.09649122807,15
156.429824561404,25
159.679824561404,15
162.84649122807,25
169.263157894737,15
175.679824561404,25
191.679824561404,15
193.482456140351,17
195.149122807018,23
198.315789473684,17
201.482456140351,23
209.482456140351,17
214.315789473684,23
217.482456140351,17
219.149122807018,23
222.315789473684,17
223.899122807018,23
225.482456140351,17
227.149122807018,23
228.732456140351,17
235.149122807018,23
236.732456140351,17
239.899122807018,23
244.631578947368,23
247.798245614035,17
249.464912280702,23
252.631578947368,17
254.214912280702,23
255.798245614035,17
257.464912280702,23
259.048245614035,17
265.464912280702,23
267.048245614035,17
270.214912280702,23
271.798245614035,17
273.464912280702,23
276.631578947368,17
279.798245614035,23
287.798245614035,17
289.232456140351,20
290.815789473684,22
293.899122807018,20
297.065789473684,22
304.899122807018,20
309.649122807018,22
312.815789473684,20
314.399122807018,22
318.315789473684,20
319.899122807018,22
321.482456140351,20
323.065789473684,22
324.649122807018,20
330.899122807018,22
332.482456140351,20
335.649122807018,22
339.964912280702,22
343.131578947368,20
344.714912280702,22
348.631578947368,20
350.214912280702,22
351.798245614035,20
353.381578947368,22
354.964912280702,20
361.214912280702,22
362.798245614035,20
365.964912280702,22
367.548245614035,20
369.131578947368,22
372.214912280702,20
375.381578947368,22
383.214912280702,20
384.741228070175,21
385.574561403509,22
387.157894736842,21
388.741228070175,22
392.741228070175,21
395.157894736842,22
396.741228070175,21
397.574561403509,22
399.157894736842,21
399.991228070175,22
400.741228070175,21
401.574561403509,22
402.324561403509,21
405.574561403509,22
406.324561403509,21
407.991228070175,22
410.315789473684,22
411.899122807018,21
412.732456140351,22
414.315789473684,21
415.149122807018,22
415.899122807018,21
416.732456140351,22
417.482456140351,21
420.732456140351,22
421.482456140351,21
423.149122807018,22
423.899122807018,21
424.732456140351,22
426.315789473684,21
427.899122807018,22
431.899122807018,21
"t","Tset"
0,15
4.21052631578948,25
10.6271929824561,15
13.7938596491228,25
20.2105263157895,15
23.3771929824561,25
26.6271929824561,15
29.7938596491228,25
33.0438596491228,15
45.7938596491228,25
49.0438596491228,15
55.3771929824561,25
58.6271929824561,15
61.7938596491228,25
68.2105263157895,15
74.6271929824561,25
90.6271929824561,15
100.732456140351,15
110.315789473684,25
116.732456140351,15
119.899122807018,25
126.315789473684,15
129.482456140351,25
132.732456140351,15
135.899122807018,25
139.149122807018,15
151.899122807018,25
155.149122807018,15
161.482456140351,25
164.732456140351,15
167.899122807018,25
174.315789473684,15
180.732456140351,25
194.105263157895,23
197.271929824561,17
198.938596491228,23
202.105263157895,17
203.688596491228,23
205.271929824561,17
206.938596491228,23
208.521929824561,17
214.938596491228,23
216.521929824561,17
219.688596491228,23
221.271929824561,17
222.938596491228,23
226.105263157895,17
229.271929824561,23
237.271929824561,17
242.324561403509,17
247.157894736842,23
250.324561403509,17
251.991228070175,23
255.157894736842,17
256.741228070175,23
258.324561403509,17
259.991228070175,23
261.574561403509,17
267.991228070175,23
269.574561403509,17
272.741228070175,23
274.324561403509,17
275.991228070175,23
279.157894736842,17
282.324561403509,23
289.438596491228,22
292.605263157895,20
294.188596491228,22
298.105263157895,20
299.688596491228,22
301.271929824561,20
302.855263157895,22
304.438596491228,20
310.688596491228,22
312.271929824561,20
315.438596491228,22
317.021929824561,20
318.605263157895,22
321.688596491228,20
324.855263157895,22
332.688596491228,20
337.741228070175,20
342.491228070175,22
345.657894736842,20
347.241228070175,22
351.157894736842,20
352.741228070175,22
354.324561403509,20
355.907894736842,22
357.491228070175,20
363.741228070175,22
365.324561403509,20
368.491228070175,22
370.074561403509,20
371.657894736842,22
374.741228070175,20
377.907894736842,22
385.052631578947,22
386.635964912281,21
387.469298245614,22
389.052631578947,21
389.885964912281,22
390.635964912281,21
391.469298245614,22
392.219298245614,21
395.469298245614,22
396.219298245614,21
397.885964912281,22
398.635964912281,21
399.469298245614,22
401.052631578947,21
402.635964912281,22
406.635964912281,21
409.162280701754,21
411.578947368421,22
413.162280701754,21
413.995614035088,22
415.578947368421,21
416.412280701754,22
417.162280701754,21
417.995614035088,22
418.745614035088,21
421.995614035088,22
422.745614035088,21
424.412280701754,22
425.162280701754,21
425.995614035088,22
427.578947368421,21
429.162280701754,22
"t","Tset"
0,25
2.52631578947368,15
8.94298245614036,25
24.9429824561404,15
34.5263157894737,25
40.9429824561404,15
44.109649122807,25
50.5263157894737,15
53.6929824561403,25
56.9429824561403,15
60.109649122807,25
63.359649122807,15
76.109649122807,25
79.359649122807,15
85.6929824561404,25
88.9429824561404,15
92.109649122807,25
105.785087719298,15
115.368421052632,25
121.785087719298,15
124.951754385965,25
131.368421052632,15
134.535087719298,25
137.785087719298,15
140.951754385965,25
144.201754385965,15
156.951754385965,25
160.201754385965,15
166.535087719298,25
169.785087719298,15
172.951754385965,25
179.368421052632,15
185.785087719298,25
193.263157894737,17
196.429824561404,23
204.429824561404,17
209.263157894737,23
212.429824561404,17
214.09649122807,23
217.263157894737,17
218.84649122807,23
220.429824561404,17
222.09649122807,23
223.679824561404,17
230.09649122807,23
231.679824561404,17
234.84649122807,23
236.429824561404,17
238.09649122807,23
244.850877192982,17
249.684210526316,23
252.850877192982,17
254.517543859649,23
257.684210526316,17
259.267543859649,23
260.850877192982,17
262.517543859649,23
264.100877192982,17
270.517543859649,23
272.100877192982,17
275.267543859649,23
276.850877192982,17
278.517543859649,23
281.684210526316,17
284.850877192982,23
288.84649122807,20
292.013157894737,22
299.84649122807,20
304.59649122807,22
307.763157894737,20
309.34649122807,22
313.263157894737,20
314.84649122807,22
316.429824561404,20
318.013157894737,22
319.59649122807,20
325.84649122807,22
327.429824561404,20
330.59649122807,22
332.179824561404,20
333.763157894737,22
340.267543859649,20
345.017543859649,22
348.184210526316,20
349.767543859649,22
353.684210526316,20
355.267543859649,22
356.850877192982,20
358.434210526316,22
360.017543859649,20
366.267543859649,22
367.850877192982,20
371.017543859649,22
372.600877192982,20
374.184210526316,22
377.267543859649,20
380.434210526316,22
384.631578947368,21
386.214912280702,22
390.214912280702,21
392.631578947368,22
394.214912280702,21
395.048245614035,22
396.631578947368,21
397.464912280702,22
398.214912280702,21
399.048245614035,22
399.798245614035,21
403.048245614035,22
403.798245614035,21
405.464912280702,22
406.214912280702,21
407.048245614035,22
410.425438596491,21
412.842105263158,22
414.425438596491,21
415.258771929825,22
416.842105263158,21
417.675438596491,22
418.425438596491,21
419.258771929825,22
420.008771929825,21
423.258771929825,22
424.008771929825,21
425.675438596491,22
426.425438596491,21
427.258771929825,22
428.842105263158,21
430.425438596491,22
"t","Tset"
0,25
9.78508771929825,15
19.3684210526316,25
25.7850877192982,15
28.9517543859649,25
35.3684210526316,15
38.5350877192982,25
41.7850877192982,15
44.9517543859649,25
48.2017543859649,15
60.9517543859649,25
64.2017543859649,15
70.5350877192982,25
73.7850877192982,15
76.9517543859649,25
83.3684210526316,15
89.7850877192982,25
110.837719298246,15
120.421052631579,25
126.837719298246,15
130.004385964912,25
136.421052631579,15
139.587719298246,25
142.837719298246,15
146.004385964912,25
149.254385964912,15
162.004385964912,25
165.254385964912,15
171.587719298246,25
174.837719298246,15
178.004385964912,25
184.421052631579,15
190.837719298246,25
196.850877192982,17
201.684210526316,23
204.850877192982,17
206.517543859649,23
209.684210526316,17
211.267543859649,23
212.850877192982,17
214.517543859649,23
216.100877192982,17
222.517543859649,23
224.100877192982,17
227.267543859649,23
228.850877192982,17
230.517543859649,23
233.684210526316,17
236.850877192982,23
247.377192982456,17
252.210526315789,23
255.377192982456,17
257.043859649123,23
260.210526315789,17
261.793859649123,23
263.377192982456,17
265.043859649123,23
266.627192982456,17
273.043859649123,23
274.627192982456,17
277.793859649123,23
279.377192982456,17
281.043859649123,23
284.210526315789,17
287.377192982456,23
292.267543859649,20
297.017543859649,22
300.184210526316,20
301.767543859649,22
305.684210526316,20
307.267543859649,22
308.850877192982,20
310.434210526316,22
312.017543859649,20
318.267543859649,22
319.850877192982,20
323.017543859649,22
324.600877192982,20
326.184210526316,22
329.267543859649,20
332.434210526316,22
342.793859649123,20
347.543859649123,22
350.710526315789,20
352.293859649123,22
356.210526315789,20
357.793859649123,22
359.377192982456,20
360.960526315789,22
362.543859649123,20
368.793859649123,22
370.377192982456,20
373.543859649123,22
375.127192982456,20
376.710526315789,22
379.793859649123,20
382.960526315789,22
386.425438596491,21
388.842105263158,22
390.425438596491,21
391.258771929825,22
392.842105263158,21
393.675438596491,22
394.425438596491,21
395.258771929825,22
396.008771929825,21
399.258771929825,22
400.008771929825,21
401.675438596491,22
402.425438596491,21
403.258771929825,22
404.842105263158,21
406.425438596491,22
411.688596491228,21
414.105263157895,22
415.688596491228,21
416.521929824561,22
418.105263157895,21
418.938596491228,22
419.688596491228,21
420.521929824561,22
421.271929824561,21
424.521929824561,22
425.271929824561,21
426.938596491228,22
427.688596491228,21
428.521929824561,22
430.105263157895,21
431.688596491228,22
"t","Tset"
0,15
3.89035087719299,25
19.890350877193,15
29.4736842105263,25
35.890350877193,15
39.0570175438596,25
45.4736842105263,15
48.640350877193,25
51.890350877193,15
55.0570175438597,25
58.3070175438597,15
71.0570175438596,25
74.3070175438596,15
80.640350877193,25
83.890350877193,15
87.0570175438596,25
93.4736842105263,15
99.890350877193,25
115.890350877193,15
125.473684210526,25
131.890350877193,15
135.05701754386,25
141.473684210526,15
144.640350877193,25
147.890350877193,15
151.05701754386,25
154.30701754386,15
167.05701754386,25
170.30701754386,15
176.640350877193,25
179.890350877193,15
183.05701754386,25
189.473684210526,15
193.90350877193,23
201.90350877193,17
206.736842105263,23
209.90350877193,17
211.570175438596,23
214.736842105263,17
216.320175438596,23
217.90350877193,17
219.570175438596,23
221.15350877193,17
227.570175438596,23
229.15350877193,17
232.320175438596,23
233.90350877193,17
235.570175438596,23
238.736842105263,17
241.90350877193,23
249.90350877193,17
254.736842105263,23
257.90350877193,17
259.570175438596,23
262.736842105263,17
264.320175438596,23
265.90350877193,17
267.570175438596,23
269.15350877193,17
275.570175438596,23
277.15350877193,17
280.320175438596,23
281.90350877193,17
283.570175438596,23
286.736842105263,17
289.486842105263,22
297.320175438596,20
302.070175438596,22
305.236842105263,20
306.820175438596,22
310.736842105263,20
312.320175438596,22
313.90350877193,20
315.486842105263,22
317.070175438596,20
323.320175438596,22
324.90350877193,20
328.070175438596,22
329.65350877193,20
331.236842105263,22
334.320175438596,20
337.486842105263,22
345.320175438596,20
350.070175438596,22
353.236842105263,20
354.820175438596,22
358.736842105263,20
360.320175438596,22
361.90350877193,20
363.486842105263,22
365.070175438596,20
371.320175438596,22
372.90350877193,20
376.070175438596,22
377.65350877193,20
379.236842105263,22
382.320175438596,20
384.951754385965,22
388.951754385965,21
391.368421052632,22
392.951754385965,21
393.785087719298,22
395.368421052632,21
396.201754385965,22
396.951754385965,21
397.785087719298,22
398.535087719298,21
401.785087719298,22
402.535087719298,21
404.201754385965,22
404.951754385965,21
405.785087719298,22
407.368421052632,21
408.951754385965,22
412.951754385965,21
415.368421052632,22
416.951754385965,21
417.785087719298,22
419.368421052632,21
420.201754385965,22
420.951754385965,21
421.785087719298,22
422.535087719298,21
425.785087719298,22
426.535087719298,21
428.201754385965,22
428.951754385965,21
429.785087719298,22
431.368421052632,21
"t","Tset"
0,15
3.89035087719299,25
19.890350877193,15
29.4736842105263,25
35.890350877193,15
39.0570175438596,25
45.4736842105263,15
48.640350877193,25
51.890350877193,15
55.0570175438597,25
58.3070175438597,15
71.0570175438596,25
74.3070175438596,15
80.640350877193,25
83.890350877193,15
87.0570175438596,25
93.4736842105263,15
99.890350877193,25
115.890350877193,15
125.473684210526,25
131.890350877193,15
135.05701754386,25
141.473684210526,15
144.640350877193,25
147.890350877193,15
151.05701754386,25
154.30701754386,15
167.05701754386,25
170.30701754386,15
176.640350877193,25
179.890350877193,15
183.05701754386,25
189.473684210526,15
193.90350877193,23
201.90350877193,17
206.736842105263,23
209.90350877193,17
211.570175438596,23
214.736842105263,17
216.320175438596,23
217.90350877193,17
219.570175438596,23
221.15350877193,17
227.570175438596,23
229.15350877193,17
232.320175438596,23
233.90350877193,17
235.570175438596,23
238.736842105263,17
241.90350877193,23
249.90350877193,17
254.736842105263,23
257.90350877193,17
259.570175438596,23
262.736842105263,17
264.320175438596,23
265.90350877193,17
267.570175438596,23
269.15350877193,17
275.570175438596,23
277.15350877193,17
280.320175438596,23
281.90350877193,17
283.570175438596,23
286.736842105263,17
289.486842105263,22
297.320175438596,20
302.070175438596,22
305.236842105263,20
306.820175438596,22
310.736842105263,20
312.320175438596,22
313.90350877193,20
315.486842105263,22
317.070175438596,20
323.320175438596,22
324.90350877193,20
328.070175438596,22
329.65350877193,20
331.236842105263,22
334.320175438596,20
337.486842105263,22
345.320175438596,20
350.070175438596,22
353.236842105263,20
354.820175438596,22
358.736842105263,20
360.320175438596,22
361.90350877193,20
363.486842105263,22
365.070175438596,20
371.320175438596,22
372.90350877193,20
376.070175438596,22
377.65350877193,20
379.236842105263,22
382.320175438596,20
384.951754385965,22
388.951754385965,21
391.368421052632,22
392.951754385965,21
393.785087719298,22
395.368421052632,21
396.201754385965,22
396.951754385965,21
397.785087719298,22
398.535087719298,21
401.785087719298,22
402.535087719298,21
404.201754385965,22
404.951754385965,21
405.785087719298,22
407.368421052632,21
408.951754385965,22
412.951754385965,21
415.368421052632,22
416.951754385965,21
417.785087719298,22
419.368421052632,21
420.201754385965,22
420.951754385965,21
421.785087719298,22
422.535087719298,21
425.785087719298,22
426.535087719298,21
428.201754385965,22
428.951754385965,21
429.785087719298,22
431.368421052632,21
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment