Skip to main content

Automatic Motor Off Circuit Using Float Sensor




In  in Post  You are Going To Lear ladder Representation of Automatic Motor Off Using Float sensor.

पोस्ट में आप फ्लोट सेंसर का उपयोग करके स्वचालित मोटर ऑफ की सीढ़ी का प्रतिनिधित्व करने जा रहे हैं।


In last Post already i discussed about float sensor.Toady we will learn what are the components required for Automatic Circuit. 
     Here we need following Components.
        1. Push button For start
        2. Electromagnetic Relay( 2 Changeover) 
        3. Single Phase Motor or Already connected motor in your                    home 
        4. Float Sensor and Wires According to your Requirement.


पिछले पोस्ट में मैंने पहले ही फ्लोट सेंसर के बारे में चर्चा की थी। फिर भी हम सीखेंगे कि स्वचालित सर्किट के लिए आवश्यक घटक क्या हैं।

      यहां हमें निम्नलिखित घटकों की आवश्यकता है।

         1. प्रारंभ के लिए पुश बटन

         2. विद्युत चुम्बकीय रिले (2 बदलाव)

         3. सिंगल फेज मोटर या पहले से आपके घर में कनेक्टेड मोटर


         4. फ्लोट सेंसर और तार अपनी आवश्यकता के अनुसार।

In Below Diag. you can see the tank filling with water. I made  hardware  circuit with motor, Tank,Relay & sensor.


नीचे डायग में। आप टैंक को पानी से भरते हुए देख सकते हैं। मैंने मोटर, टैंक, रिले और सेंसर के साथ हार्डवेयर सर्किट बनाया।





Now we will going to learn Ladder Representation of Motor automatic off using Electromagnetic Relay.


अब हम इलेक्ट्रोमैग्नेटिक रिले का उपयोग कर मोटर ऑटोमैटिक ऑफ लैडर रिप्रजेंटेशन सीखने जा रहे हैं.


Working of Above Circuit.
When You press the Push button, Relay will Activate and motor gets on. When Its Reaches at certain level Float Sensor activated and relay 2 gets on along with alarm and motor get off.

Here this circuit work as interlocking. when R2 activated R2 Nc terminal becomes no and there is no power supply coming to the motor.
Again when water slowly Decreasing Float sensor Off and Motor Gets on.

Remember. when tank is empty or when it has limited water, sensor is in Off condition only.
when water touches the float sensor, float  sensor get activated and alarm on,  motor off.


उपरोक्त सर्किट का कार्य करना।

जब आप पुश बटन दबाते हैं, तो रिले सक्रिय हो जाएगा और मोटर चालू हो जाएगा। जब कुछ स्तरों पर इसका पहुंचता है तो फ्लोट सेंसर सक्रिय और रिले 2 अलार्म और मोटर के साथ बंद हो जाता है।



यहां यह सर्किट इंटरलॉकिंग का काम करता है। जब R2 सक्रिय R2 Nc टर्मिनल बन जाता है और मोटर में कोई बिजली की आपूर्ति नहीं होती है।

फिर जब पानी धीरे-धीरे फ्लोट सेंसर को घटाता है और मोटर चालू हो जाता है।



याद है। जब टैंक खाली होता है या जब उसमें सीमित पानी होता है, तो सेंसर केवल बंद स्थिति में होता है।

जब पानी फ्लोट सेंसर को छूता है, तो फ्लोट सेंसर सक्रिय हो जाता है और मोटर बंद हो जाता है।

Hope this post is help you to understand the concept.


To Know about electromagnetic Relay Plz watch my Video

Comments

Popular posts from this blog

User Registration Form: Purpose, Design, and Code Explanation

  Why Do We Need to Create Forms? Forms are essential in web development as they provide a way for users to interact with web applications by submitting data. They are used for various purposes, including: Collecting User Data : For registration, login, feedback, surveys, and more. Enabling Interactions : Allowing users to send information to the server. Dynamic Applications : Forms are key in creating dynamic web applications like e-commerce websites, social media platforms, etc. Improving User Experience : Forms enable tailored content and services by collecting user preferences or queries. Code Explanation HTML The HTML provides the structure of the form and its elements. Here's a detailed breakdown: html .. <div class="form-container"> A container that wraps the entire form, styled with CSS for layout and design. html .. <h1>Sign Up</h1> A heading that indicates the purpose of ...

CSS Box Model

  CSS Box Model: Comprehensive Guide Overview The CSS Box Model is a foundational concept in web design that governs the layout and spacing of elements on a webpage. It treats every HTML element as a rectangular box, defining how its content, padding, border, and margin interact. Why Do We Need the CSS Box Model? 1.      Precise Layout Control : o     Allows developers to define the exact size and space of elements, including margins, borders, and padding. 2.      Consistency : o     Ensures uniform spacing and layout across different browsers and devices. 3.      Flexibility : o     Adjusts spacing and borders without changing the core content dimensions. Where Do We Need the CSS Box Model? 1.      Website Layout Design : o     Essential for spacing headers, footers, sidebars, and content sections. 2. ...

CSS Units

CSS Units: Comprehensive Notes What Are CSS Units? CSS (Cascading Style Sheets) units are a way to define the size of elements, spacing, and positioning in a web page. These units provide flexibility to design responsive, visually appealing, and functional layouts. CSS units are used in defining properties such as width, height, margin, padding, font size, and more. Example 1: <style>   div {     width: 100px;     height: 50px;   } </style> <div>Box</div> Here, 100px and 50px define the width and height of the div . Example 2: <style>   p {     font-size: 16px;   } </style> <p>This is a paragraph.</p> The font size of the paragraph is set to 16 pixels using CSS units. Purpose of CSS Units CSS units help define scalable and fixed measurements for web elements, ensuring: Consistency in layout design. Adaptability to differ...