Oil Burner Setup Tool
About this app
A tool to choose the size and degrees of nozzle depending on heat exchanger dimensions shape and size and kW demand.
Oil Burner Setup Tool 🔥 Oil Burner Setup Tool 🔥 Heat Exchanger Size (mm) kW Demand Oil Type (Calorific Value) Oil Type 1 Oil Type 2 Oil Type 3 Oil Pressure Calculate Nozzle Size
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Oil Burner Setup Tool</title>
<meta name="description" content="A tool to choose the size and degrees of nozzle depending on heat exchanger dimensions shape and size and kW demand.">
<meta name="keywords" content="oil burner, setup tool, heat exchanger, nozzle, kW demand">
<link href="https://fonts.googleapis.com/css?family=Chango|Frijole" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
body {
font-family: 'Chango', cursive;
background: #f5f5f5;
color: #333;
}
.result {
font-weight: bold;
color: #008000;
}
</style>
<script>
try {
function calculateNozzleSize() {
var heatExchangerSize = document.getElementById('heatExchangerSize').value;
var demand = document.getElementById('demand').value;
var oilType = document.getElementById('oilType').value;
var pressure = document.getElementById('pressure').value;
var nozzleSize = (heatExchangerSize * demand * oilType) / pressure;
document.getElementById('nozzleSize').innerHTML = "Nozzle Size: " + nozzleSize;
}
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("calcButton").addEventListener("click", calculateNozzleSize);
});
} catch (error) {
throw error;
}
</script>
</head>
<body>
<div id="main-container" class="container mt-5">
<h1>🔥 Oil Burner Setup Tool 🔥</h1>
<div class="form-group">
<label for="heatExchangerSize">Heat Exchanger Size (mm)</label>
<input type="number" class="form-control" id="heatExchangerSize" required>
</div>
<div class="form-group">
<label for="demand">kW Demand</label>
<input type="number" class="form-control" id="demand" required>
</div>
<div class="form-group">
<label for="oilType">Oil Type (Calorific Value)</label>
<select class="form-control" id="oilType">
<option value="1">Oil Type 1</option>
<option value="2">Oil Type 2</option>
<option value="3">Oil Type 3</option>
</select>
</div>
<div class="form-group">
<label for="pressure">Oil Pressure</label>
<input type="number" class="form-control" id="pressure" required>
</div>
<button class="btn btn-primary mt-3" id="calcButton">Calculate Nozzle Size</button>
<p id="nozzleSize" class="mt-3 result"></p>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!