Energy Savings With LEDs
- Replacing LED lights with conventional/fluorescent lights is an established energy efficiency improvement method
- Input brief details about your existing lights and the number of lights you want to replace
- Based on your inputs, we will calculate how much you can save on your energy bills by opting for LEDs
While the use of rooftop solar power is a good idea, it becomes an even better idea if energy efficiency methods are first adopted for your building. One simple way to achieve energy efficiency is through the use of LED lights in the place of conventional incandescent/flourescent lights. You will be surprised at the amount of energy and cost savings you can make from LEDs over its lifetime.
Get surprised by using the simple estimator below to calculate the savings achieved by replacing your conventional lamps by LED lights.
[insert_php] if(!isset($_POST[‘calculate’])){ [/insert_php]
| Incandescent Lamp (Watts) | CFL (Watts) | Corresponding LEDs (Watts) |
|---|---|---|
| 40 | 09-13 | 04-05 |
| 60 | 13-15 | 06-08 |
| 75 | 18-25 | 09-13 |
| 100 | 23-30 | 16-20 |
| 150 | 30-55 | 25-28 |
[insert_php] } [/insert_php]
[embed_custom_field “code1”]
[insert_php]
if(isset($_POST[‘existing_light_wattage’]) && isset($_POST[‘led_wattage’]) && isset($_POST[‘existing_bulbs’]) ) {
if(!empty($_POST[‘existing_light_wattage’]) && !empty($_POST[‘led_wattage’]) && !empty($_POST[‘existing_bulbs’]) ) {
$servername = ‘localhost’;
$username = ‘solarman_cal’;
$password = ‘mv)f848R4h~&’;
$dbname = ‘solarman_tools’;
// Create connection
$conn = mysql_connect($servername, $username, $password) or die(“Unable to connect to MySQL”);
mysql_select_db($dbname, $conn );
$i=$_POST[‘existing_light_wattage’];
$j=$_POST[‘led_wattage’];
$b=$_POST[‘existing_bulbs’];
$ll = $_POST[‘unit_charged’];
$ip = $_SERVER[‘REMOTE_ADDR’];
$date= date(‘Y-m-d’);
$sql = “INSERT INTO `energy_saving` (`existing_light_wattage`, `led_wattage`, `existing_bulbs`, `date`, `ip`) VALUES (‘$i’,’$j’,’$b’,’$date’, ‘$ip’)”;
if (mysql_query($sql) === TRUE) {
} else {
echo “Error: ” .mysql_error() . “
“;
}
mysql_close($conn);
$r=((($i-$j)*25000)/1000);
$n=$b*$r;
$lll = $ll*$n;
echo “
Energy Savings With LEDs
| Existing lights’ Wattage | “; echo number_format($i);echo” W |
| LED Wattage | “; echo number_format($j);echo” W |
| No. of lights to be replaced | “; echo number_format($b);echo ” nos |
Result:
|
Energy savings from using 1 LED over its entire lifetime is |
“; echo number_format($r); echo” units |
|
Energy saving from using $b LED(s) over its entire lifetime is |
“; echo number_format($n); echo” units |
|
Monetary savings from replacing $b lights with LEDs over its entire lifetime – |
Rs.$lll |
Assumptions
- Lifetime of an LED bulb is approximated to be 25000 hours
- Here the replacement cost of lights is not considered. The actual savings would be higher if it was considered.
} else {
echo “
Please enter the valid values
}
}[/insert_php]
Skip to content
