cschempp

Results 1 comments of cschempp

I think the error comes from using interp1d, which expects numpy array. For example, this works: ``` def aircon_power(self,tstep): if tstep1.5: return 544.9 else: return 42 ``` then call it...