Greetings,
I’m currently writing a dissertation about how building envelopes behave in cold climates, specifically, I’m having trouble interpreting a wall’s resistance to freeze/thaw cycles. I have the following data:
I have two columns with 40 000 rows of data.
Colum A is the Time (Number of hours after the experiment starts, 1, 2, 3, 4, 5…)
Colum B is the Temperature (In Celsius)
Example:
(A) (B)
1 -5
2 13
3 16
… …
I need to create a function, or something similar, that can return the number of freeze/taw cycles that occur. Freezing takes place when the temperature is below 0ºC, and thaw takes place when the temperature is above 0ºC. However, I need to take into consideration the following two aspects:
1)The freezing of the wall must take at least 2 hours to occur (There needs to exist 2 consecutive hours, where the temperature is below 0ºC to occur freezing)
2)Two consecutive freeze/thaw cycles must be separated by, at least, 2 hours to occur.
Could someone with a little more expertise help me out on this? I would be very grateful
Kind regards
I’m currently writing a dissertation about how building envelopes behave in cold climates, specifically, I’m having trouble interpreting a wall’s resistance to freeze/thaw cycles. I have the following data:
I have two columns with 40 000 rows of data.
Colum A is the Time (Number of hours after the experiment starts, 1, 2, 3, 4, 5…)
Colum B is the Temperature (In Celsius)
Example:
(A) (B)
1 -5
2 13
3 16
… …
I need to create a function, or something similar, that can return the number of freeze/taw cycles that occur. Freezing takes place when the temperature is below 0ºC, and thaw takes place when the temperature is above 0ºC. However, I need to take into consideration the following two aspects:
1)The freezing of the wall must take at least 2 hours to occur (There needs to exist 2 consecutive hours, where the temperature is below 0ºC to occur freezing)
2)Two consecutive freeze/thaw cycles must be separated by, at least, 2 hours to occur.
Could someone with a little more expertise help me out on this? I would be very grateful
Kind regards