S
Sylvia Else
Guest
On 13/12/2011 4:01 PM, kreed wrote:
wasteful of energy to heat up, and then cool, an element that doesn't
have much ice on it.
On the other hand, keeping it that way means that the defrost cycle
doesn't have to take long, which is helpful is one's primary goal is to
keep the freezer compartment below a certain temperature.
Sylvia.
I suppose it depends what one is trying to achieve. Clearly, it'sOn Dec 13, 10:40 am, Sylvia Else<syl...@not.here.invalid> wrote:
On 13/12/2011 9:23 AM, NT wrote:
On Dec 12, 5:20 am, linnix<m...@linnix.info-for.us> wrote:
On Dec 11, 5:48 pm, John Fields<jfie...@austininstruments.com> wrote:
On Sun, 11 Dec 2011 16:20:48 -0800 (PST), linnix
m...@linnix.info-for.us> wrote:
On Dec 11, 3:09 pm, John Fields<jfie...@austininstruments.com> wrote:
On Sat, 10 Dec 2011 17:19:52 -0800 (PST), linnix
m...@linnix.info-for.us> wrote:
On Dec 10, 5:06 pm, John Fields<jfie...@austininstruments.com> wrote:
You've said the defrost only happens every six hours, but for how long
is the heater energized?
knowing that will allow us to determine the duty cycle of the timer
and cause it to mimic the motor timer.
--
JF
It should be long enough to melt the ice and let the water drain off.
It can easily be programmable in a micro, at least during
development. Perhaps a 5 to 10 minutes range.
---
Thanks, but I'd prefer some real numbers from Sylvia so that I can
work up a hardware solution for her.
You don't like my numbers?
---
I don't care for conjecture, which is all you're offering.
---
Then go with the number from commerical
defrost timer.
4 minutes to 110 minutes in 2 minutes step.
4 to 12 cycles per day.
http://www.grainger.com/Grainger/PARAGON-Time-InitiatedTime-Terminate...
---
That's USD 184.75, and she's in Oz, so it'd more likely be about USD
250 before she got the part in hand.
Plus, she's got an old fridge and if went belly-up shortly after
spending the money for the defroster she'd probably wind up with a new
fridge and a homeless new defroster.
---
I would go with 2 pots + 2 A2D. adjust and time it with a micro.
---
Yeah, sure you would...
Why not post a schematic and some code showing how you'd propose to
implement your wily scheme, and I'll do the same proposing a strictly
hardware solution?
Game on?
OK, changed my mind, let do digital.
Let start with perhaps 4 buttons. Two to change cycles per day and two
to change durations. Three bits driving 138 (one of eight) to
indicate cycles (eight cycles should be plenty). Another three bits
to indicate durations such as 5,7,10,15,20,25,30 minutes. I doubt we
really want to defrost beyond 30 minutes anyway. So far, we can do it
with 10 port pins and 16 LEDs.
Just a quick first draft:
char cycle[8] = {1,2,3,4,5,6,7};
char duration[8] = {5,7,10,15,20,25,30};
int c_idx;
int d_idx;
while(1)
{
if(port(c_up))
c_idx++;
if(port(c_dn))
c_idx--;
if(port(d_up))
d_idx++;
if(port(d_dn))
d_idx--;
defrost_on();
delay(d_idx);
defrost_off();
delay_hrs(24/cycle[c_idx]);
}
...
Its a better idea to stop defrost cycle when the exchanger temp rises
above freezing. Otherwie you're wasting energy, and at some point the
machine will likely ice up.
NT
The 'standard' self-defrost implementation has an additional thermostat
on the cooling element, which trips open when the element reaches some
predetermined temperature (11C on mine), and closes again at some lower
temperature (0C on mine).
11C seems rather high, but I suppose it's intended to ensure that the
entire element has defrosted, not just the part near the thermostat. It
also means the thermostat need not be that accurate.
Switching the cooling back on immediately after the thermostat trips off
seems attractive, to avoid defrosting the stuff in the freezer, but I
have some misgivings about the impact on the compressor of starting when
the element is that warm.
It's not clear to me why the machine would ice up if the defrost cycle
is left running too long.
Sylvia.
You could design a defrost system like was on the New Inventors last
year.
IIRC a resistive strip was placed in the freezer, a known voltage
passed through it periodically
and the resistance of it measured (heat causes resistance to rise, and
the more frost/ice formed on the strip
the longer it took to heat up and resistance to rise) and turn on the
defrost system only when
sufficient ice was detected.
wasteful of energy to heat up, and then cool, an element that doesn't
have much ice on it.
On the other hand, keeping it that way means that the defrost cycle
doesn't have to take long, which is helpful is one's primary goal is to
keep the freezer compartment below a certain temperature.
Sylvia.