def CHTempRamp goal, time
  start = CH.amount
  current = start
  while current < goal
    CH.seek current,180
    delay 5
    current = current + 4
    if current > goal then
      current = goal
    end
  end
  CH.hold time,goal
end
