summaryrefslogtreecommitdiffstats
path: root/Temparray.h
diff options
context:
space:
mode:
Diffstat (limited to 'Temparray.h')
-rw-r--r--Temparray.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Temparray.h b/Temparray.h
index 19040a2..ed5813e 100644
--- a/Temparray.h
+++ b/Temparray.h
@@ -32,7 +32,7 @@ class Temparray
float *temparrayold, *temparraynew;
Cubehole *cubearray;
int sx, sy, sz, *weight1, maxweight;
- float averagetemp, earthtemp, probetemp, input, inputpower, factor;
+ float averagetemp, earthtemp, probetemp, input, inputpower, factor, basementtemp;
Cubehole& cubehole(int x, int y, int z, int line) {
return cubearray[x*sy*sz*6 + y*sz*6 + z*6 + line];
@@ -61,6 +61,7 @@ class Temparray
}
}
earthtemp=8;
+ basementtemp=20;
}
void calcAverage(){
float tempcache = 0;