>>> from tmax import tmax_time_oven --input-ini >>> ovenL = ['fNK021', 'fMM042', 'fMF023', 'fMM004', 'fLP085'] >>> tempL = [ ... ('01:15:00', [30.1, 31.5, 31.9, 28.0, 31.0]), ... ('02:30:00', [30.0, 32.5, 30.0, 38.0, 32.5]), ... ('03:45:00', [29.1, 38.5, 29.9, 25.5, 34.5]), ... ('04:30:00', [28.1, 37.5, 31.0, 31.5, 38.2]), ... ('05:00:00', [27.5, 36.5, 32.1, 29.5, 38.2]) ... ] --input-fi --output-ini >>> tmt = tmax_time_oven(ovenL, tempL) >>> tmt_corr = [ ... ('01:15:00', 31.9, 'fMF023'), ... ('02:30:00', 38.0, 'fMM004'), ... ('03:45:00', 38.5, 'fMM042'), ... ('04:30:00', 38.2, 'fLP085'), ... ('05:00:00', 38.2, 'fLP085'), ... ] --output-fi >>> if tmt == tmt_corr: ... True ... else: ... print(tmt) ... print(tmt_corr) True