You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<label class="field sensor-range-field" style="display: none;"><span><span class="sensor-range-label">Sensor Range</span><span class="tooltip-icon sensor-range-tooltip" tabindex="0" data-tooltip="Native measurement range of the sensor (e.g., 0-5 PSI for pressure, 0-10m for ultrasonic). This is the range that corresponds to 4-20mA output.">?</span></span>
<label class="field sensor-mount-height-field" style="display: none;"><span><span class="mount-height-label">Sensor Mount Height (in)</span><span class="tooltip-icon mount-height-tooltip" tabindex="0" data-tooltip="For pressure sensors: height of sensor above tank bottom (usually 0-2 inches). For ultrasonic sensors: distance from sensor to tank bottom when empty.">?</span></span><input type="number" class="sensor-mount-height" value="0" step="0.1" min="0"></label>
753
768
<label class="field height-field"><span><span class="height-label">Height (in)</span><span class="tooltip-icon height-tooltip" tabindex="0" data-tooltip="Maximum height or capacity of the tank in inches. Used to calculate fill percentage and set alarm thresholds relative to tank size.">?</span></span><input type="number" class="tank-height" value="120"></label>
<strong>Pressure Sensor (Bottom-Mounted):</strong> Installed near the bottom of the tank, this sensor measures the pressure of the liquid column above it. Examples: Dwyer 626-06-CB-P1-E5-S1 (0-5 PSI).<br>
766
-
• 4mA = Empty tank (0 PSI)<br>
767
-
• 20mA = Full tank (max PSI)<br>
781
+
• 4mA = Empty tank (0 pressure)<br>
782
+
• 20mA = Full tank (max pressure)<br>
783
+
• Sensor Range: The native pressure range (e.g., 0-5 PSI, 0-2 bar)<br>
768
784
• Mount Height: Distance from sensor to tank bottom (usually 0-2 inches)
<strong>Ultrasonic Sensor (Top-Mounted):</strong> Mounted on top of the tank, this sensor measures the distance from the sensor to the liquid surface. Examples: Siemens Sitrans LU240.<br>
772
788
• 4mA = Full tank (liquid close to sensor)<br>
773
789
• 20mA = Empty tank (liquid far from sensor)<br>
790
+
• Sensor Range: The native distance range (e.g., 0-10m, 0-30ft)<br>
774
791
• Sensor Mount Height: Distance from sensor to tank bottom when empty
mountHeightTooltip.setAttribute('data-tooltip', 'Distance from the ultrasonic sensor to the tank bottom when empty. This is used to calculate the actual liquid level.');
1118
1144
heightLabel.textContent = 'Tank Height (in)';
1119
1145
heightTooltip.setAttribute('data-tooltip', 'Maximum liquid height in the tank. When the tank is full, the liquid level equals this value.');
1146
+
sensorRangeLabel.textContent = 'Sensor Range';
1147
+
sensorRangeTooltip.setAttribute('data-tooltip', 'Native distance range of the ultrasonic sensor (e.g., 0-10m). This is the measurement range that corresponds to the 4-20mA output.');
1148
+
// Set defaults for ultrasonic sensors
1149
+
sensorRangeUnit.value = 'm';
1150
+
sensorRangeMax.value = '10';
1120
1151
} else {
1121
1152
pressureInfo.style.display = 'block';
1122
1153
ultrasonicInfo.style.display = 'none';
1123
1154
mountHeightLabel.textContent = 'Sensor Mount Height (in)';
1124
1155
mountHeightTooltip.setAttribute('data-tooltip', 'Height of the pressure sensor above the tank bottom (usually 0-2 inches). This offset is added to the measured level.');
heightTooltip.setAttribute('data-tooltip', 'Maximum liquid height the sensor can measure (corresponds to 20mA / full sensor scale). Does not include the sensor mount height offset.');
1158
+
sensorRangeLabel.textContent = 'Sensor Range';
1159
+
sensorRangeTooltip.setAttribute('data-tooltip', 'Native pressure range of the sensor (e.g., 0-5 PSI, 0-2 bar). This is the measurement range that corresponds to the 4-20mA output.');
0 commit comments