boinc/doc/energy.php

96 lines
3.4 KiB
PHP
Raw Normal View History

<?php
require_once("docutil.php");
page_head("Heat and Energy considerations");
echo "
<h2>CPU heat</h2>
<p>
When BOINC applications are running on a computer,
its CPU chip produces more heat than when it is idle.
The computer's heat sinks and fans are normally able to
dissipate this heat sufficiently.
However, if the fans become clogged with dust,
they may not be able to cool the CPU adequately,
and this can lead to premature failure of the CPU or motherboard.
<p>
To deal with this problem, we recommend that you:
<ul>
<li> Clean your computer's fans and heat sinks periodically.
<li> Install a utility that monitors CPU temperature,
such as <a href=http://www.pcworld.com/downloads/file/fid,7309-order,1-page,1-c,alldownloads/description.html>Motherboard Monitor</a> or
<a href=http://www.diefer.de/i8kfan/index.html>i8kfan</a>
(for Dell laptops).
<li> If needed,
set your <a href=prefs.php>general preferences</a> to throttle CPU usage.
</ul>
<h2>The energy cost and environmental impact of running BOINC</h2>
<p>
A computer running BOINC uses more energy than an idle computer.
The amount of additional energy depends on several factors:
<ul>
<li> How many additional hours per day you
you leave your computer powered on to run BOINC.
<li> The energy consumption of your computer.
<li> Whether you use your computer's power-management features
to turn off your monitor when idle.
<li> Your marginal electricity cost.
</ul>
Using some typical values for energy usage and cost,
here are estimates of the monthly costs:
";
list_start();
list_heading_array(array(
"Computer state<br>(24 hrs/day)",
"Typical power usage",
"Energy per month",
"Cost per month<br><font size=-2>assuming USA average of 8 cents/kWh;
<br>the cost in Europe is about 50% higher.</font>"
));
list_item_array(array("Off", "0 watts", "0 kWh", "$0"));
list_item_array(array("Idle", "100 watts", "73 kWh", "$5.84"));
list_item_array(array("Active", "150 watts", "110 kWh", "$8.80"));
list_end();
echo "
Under these assumptions, running BOINC costs about $3/month
more than leaving your computer on but idle,
and about $8.80/month more than leaving it off all the time.
<p>
There may also be an environmental cost.
If your electricity is produced by burning fossil fuels,
the extra electricity usage produces greenhouse gases
that contribute to global warming.
If this is the case, we recommend that you
not leave your computer on just to run BOINC,
or that you reduce your overall energy use to compensate.
<p>
You can measure the power usage of their computer using
a power consumption meter.
These are available for
<a href=http://www.energydudes.com/proddetail.php?prod=0001>American</a>
<a href=http://www.pat-training.co.uk/230V_electricity_meter.htm>UK-type</a>
electrical outlets.
<h2>How reduce BOINC's energy usage and cost</h2>
Some possibilities:
<ul>
<li>
Set your <a href=prefs.php>general preferences</a> to allow BOINC
to compute while your computer is in use,
and turn your computer off when it's not in use.
<li> Use your computer's power-management features to
turn off your monitor when it's not in use,
or to enter a low-power mode.
A <a href=http://eetd.lbl.gov/EA/Reports/39466/>
technical document about computer power management</a>
is available from Lawrence Berkeley Laboratories.
<li> If your electricity costs vary according to time of day,
set your <a href=prefs.php>general preferences</a>
so that BOINC computes only during periods of low electricity costs.
</ul>
";
page_tail();
?>