Italsensor TK15 - Incremental Shaft Encoder
Mechanical Specifications
Dimensions: see drawings
Shaft: stainless steel
Shaft loading: axial: 5 N; radial 5 N
Shaft rotational speed: 10.000 RPM to short cycle time; 6.000 RPM continuous
Sarting torque at 25°C: 0,005 Nm
Moment of inertia: 6 g cm2
Bearings life: 5 x rev. min.
Weight: 0.1 kg
Electrical Specifications
Output frequency: up to 150 kHz
Synchronous index output: on A
Supply current without load: 100 mA max.
Protection: short circuit protection, no limit duration (only LD2 and PP2); against inversion of polarity (except 5Vcc)
Materials
Flange: aluminium S11
Housing: Polyamid 6 (PA6)
Environmental Specifications
Operating temperature range: -10°C ÷ +70°C
Storage temperature range: -30°C ÷ 80°C
Relative humidity: 98% RH without condensing
Vibrations: 10 g (From 10 up to 2.000 Hz)
Shock: 20 g (for 11 ms)
Shock: 20 g
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>38 mm Encoder FAQ</title> <style> .accordion { background-color: #eee; color: #444; cursor: pointer; padding: 10px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; transition: 0.4s; } .active, .accordion:hover { background-color: #ccc; } .panel { padding: 0 10px; display: none; background-color: white; overflow: hidden; } </style> </head> <body> <h2>38 mm Encoder FAQ</h2> <button class="accordion">General Description</button> <div class="panel"> <p>This encoder features a compact 38 mm body diameter and is designed for various industrial applications. It offers a shaft diameter of 5-6 mm and supports resolutions up to 3600 PPR. The encoder operates with power supply options of 5 V, 11/30 V, or 24/5 V.</p> </div> <button class="accordion">Mechanical Specifications</button> <div class="panel"> <ul> <li><strong>Dimensions:</strong> See drawings</li> <li><strong>Shaft:</strong> Stainless steel</li> <li><strong>Shaft Loading:</strong> Axial: 5 N; Radial: 5 N</li> <li><strong>Shaft Rotational Speed:</strong> 10,000 RPM for short cycle time; 6,000 RPM continuous</li> <li><strong>Starting Torque at 25°C:</strong> 0.005 Nm</li> <li><strong>Moment of Inertia:</strong> 6 g·cm²</li> <li><strong>Bearings Life:</strong> 5 x 10<sup>9</sup> revolutions (minimum)</li> <li><strong>Weight:</strong> 0.1 kg</li> </ul> </div> <button class="accordion">Electrical Specifications</button> <div class="panel"> <ul> <li><strong>Output Frequency:</strong> Up to 150 kHz</li> <li><strong>Synchronous Index Output:</strong> On channel A</li> <li><strong>Supply Current Without Load:</strong> 100 mA max.</li> <li><strong>Protection:</strong> Short circuit protection (only for outputs LD2 and PP2); protection against inversion of polarity (except 5V DC)</li> </ul> </div> <button class="accordion">Materials</button> <div class="panel"> <ul> <li><strong>Flange:</strong> Aluminium S11</li> <li><strong>Housing:</strong> Polyamide 6 (PA6)</li> </ul> </div> <button class="accordion">Environmental Specifications</button> <div class="panel"> <ul> <li><strong>Operating Temperature Range:</strong> -10°C to +70°C</li> <li><strong>Storage Temperature Range:</strong> -30°C to +80°C</li> <li><strong>Relative Humidity:</strong> 98% RH without condensing</li> <li><strong>Vibrations:</strong> 10 g (from 10 up to 2,000 Hz)</li> <li><strong>Shock:</strong> 20 g (for 11 ms)</li> </ul> </div> <script> var acc = document.getElementsByClassName("accordion"); for (var i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { this.classList.toggle("active"); var panel = this.nextElementSibling; if (panel.style.display === "block") { panel.style.display = "none"; } else { panel.style.display = "block"; } }); } </script> </body> </html>