Inst ToolsInst ToolsInst Tools
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Search
  • Books
  • Software
  • Projects
  • Process
  • Tools
  • Basics
  • Formula
  • Power Plant
  • Root Cause Analysis
  • Electrical Basics
  • Animation
  • Standards
  • 4-20 mA Course
  • Siemens PLC Course
Reading: Classroom Bell System – PLC Programming Practice Examples
Share
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • Design
  • PLC
  • Interview
  • Control System
Search
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > PLC Tutorials > Classroom Bell System – PLC Programming Practice Examples

Classroom Bell System – PLC Programming Practice Examples

Now we discuss the classroom bell system logic to learn the PLC programming with practice examples and solutions.

Last updated: April 28, 2024 7:25 pm
Editorial Staff
PLC Tutorials
No Comments
Share
6 Min Read
SHARE

Now we discuss the classroom bell system logic to learn the PLC programming with practice examples and solutions.

Contents
Classroom Bell SystemPLC Technical Training VideosInputs & OutputsPLC Programming Practice ExamplesProgram DescriptionPLC Program TestingWhen the Start Button is turned ONWhen the Add button is turned ON

Note: These PLC programs are primarily for engineering students to learn and practice the problems.

Classroom Bell System

Problem Statement:

Design a PLC ladder logic for the following application.

We are using two toggle switches to control Bell.

The bell should ring for 10 seconds after every 45 minutes (Let’s take it as 1 minute). If the add button is pressed then there will be a time delay of 15 seconds for the bell to get ON.

PLC Technical Training Videos

The best PLC technical training videos are available on the Instrumentation Tools YouTube channel for free of cost.

The below video explains the given problem statement and its solution.

PLC Programming Practice Examples - Classroom Bell System

Inputs & Outputs

Digital Inputs:

Start Button: I0.0

Add Button: I0.1

Digital Outputs:

Bell: Q0.0

PLC Programming Practice Examples

PLC Programming Classroom Bell System

Program Description

We have used Normally Open Contacts for the Start Button (I0.0) and Add Button (I0.0).

We have used Normally Closed Contacts for Memory Bits.

In Rung 0:

  1. Normally Open Contact is used for the Start Button (I0.0) to Turn ON the output Bell (Q0.0) and Memory Bit 1 (M0).
  2. Normally Closed Contacts are used for Memory Bit 1 (M0) and Memory Bit 2 (M1) to Turn OFF and Restart the outputs Bell (Q0.0).
  3. Timer Function Block type TP is used to Turn ON the output Bell (Q0.0) for a limited time.
  4. Timer Function Block type TON is used to delay the turning ON time of the output Memory Bit 1 (M0) for some time.

In Rung 1:

  1. Normally Open Contact is used for the Add Button (I0.1) to Turn ON Memory Bit 2 (M1). 
  2. Timer Function Block type TP is used to Turn ON Memory Bit 2 (M1) for a limited time.

PLC Program Testing

Now we will test our PLC program and the results discussed below.

When the Start Button is turned ON

When the Start Button (I0.0) is turned ON, the output Bell (Q0.0) will turn ON for 10 seconds as Timer Function Block type TP is used to Turn ON the output Bell (Q0.0) for a limited time. The time is set to 10 seconds.

PLC School Automation System

In a false state, Normally Closed Contacts used for Memory Bit 1 (M0) and Memory Bit 2 (M1) pass the signal to turn ON the output Bell (Q0.0).

After 10 seconds, the output Bell (Q0.0) will turn OFF.

PLC Programming Bell System

Also, when the Start Button (I0.0) is turned ON, Memory Bit 1 (M0) will turn ON after 60 seconds as Timer Function Block TON is used to delay the turning ON time of Memory Bit 1 (M0).

When Memory Bit 1 (M0) turns ON, it will turn OFF immediately as Normally Closed Contact is used for it to turn ON the Output Bell (Q0.0).

PLC Design of Automatic Bell Ringing System

So, when Memory Bit 1 (M0) turns OFF immediately, Normally Closed Contact used for Memory Bit 1 (M0) again passes the signal to turn the output Bell (Q0.0) for 10 seconds as Timer Function Block type TP is used to Turn ON the output Bell (Q0.0) for a limited time.

When the Add button is turned ON

When the Add Button is turned ON, Memory Bit 2 (M1) will turn ON for 15 seconds as Timer Function Block type TP is used to Turn ON Memory Bit 2 (M1) for a limited time.

Programmable Automatic Bell System

After 15 seconds, Memory Bit 2 (M1) will turn OFF. When Memory Bit (M1) turns ON, Normally Closed Contact used for Memory Bit 2 (M1) will be in True state and Add 15 seconds to delay the turning ON time of the output Bell (Q0.0).

When Timer Function Block type TP reaches its time of 15 seconds, Memory Bit 2 (M1) will turn OFF in Rung1.

College Bell System Ladder Logic

When Memory Bit 2 (M1) turns OFF in Rung1, Normally Closed Contact used for Memory Bit 2 (M1) will be in a false state and allow the signal to pass through it to turn ON the output Bell (Q0.0) and the output (Q0.0) will turn ON.

If you liked this article, please subscribe to our YouTube Channel for PLC and SCADA video tutorials.

You can also follow us on Facebook and Twitter to receive daily updates.

Read Next:

  • Coffee Machine PLC Programming
  • From Boolean Algebra to PLC Logic
  • How to Blink Lights in Ladder Logic?
  • PLC Example on Bottle Line Control
  • Cooking Logic for Kitchen Automation
Don't Miss Our Updates
Be the first to get exclusive content straight to your email.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
You've successfully subscribed !

Continue Reading

Troubleshooting a 4-20mA Current loop
#6 PLC Best Practices – Validate Timers and Counters
Studio 5000: Define Program or Operator Control in Functional Block Diagram
Structured Text PLC Example for Motor Interlocking and Control
How to Choose a PLC for New Project? – Criteria for Selection of PLC
Steps in PLC System Design
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

128.3kFollowersLike
69.1kFollowersFollow
210kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

Structured Text PLC Programming for Two-Tanks Level Application
PLC Programming Examples on Industrial Automation
LIFO Instruction in PLC
Difference between Machine Expert Basic and Machine Expert – Schneider PLC
PLC Digital Signals Wiring Techniques
Difference between Cold Standby and Hot Standby
How to Install GSD File in Step 7 PLC using Simatic Manager?
Intrinsically Safe Barriers Questions and Answers

Keep Learning

PLC to Start or Stop 3 Machines using 1 Switch Program

PLC to Start or Stop 3 Machines using 1 Switch Program

ICS System Design

ICS System Design Considerations

Elevator PLC Ladder Logic

Elevator PLC Ladder Logic

SCADA Engineer

SCADA Engineer Job Responsibilities and Skills

PLC Program for Automatic Mixing Controlling in a Tank

PLC Program for Automatic Mixing Control in a Tank

AENT Module in Rockwell PLC

AENT Module in Rockwell PLC – Remote IO Adapter

Code Block Comparison

Compare Online and Offline PLC Programs

PLC Latched Circuit Example

PLC Latching Function

Learn More

Pressure-sensing level transmitter

Moving Pressure Sensing Level Transmitter from Top to Bottom

Chlorine dioxide measurement principle

Chlorine dioxide Analyzer Principle

PLC Ladder Logic for Motor Control

PLC Program for Motor Starter

Caliper Calibration

Setting Up for Success: Preparing for Caliper Calibration

Industry 4.0 Explained

Industry 4.0 Explained – Industrial Internet of Things

Industrial Plasma Systems

Why PDMS is Used For Fabrication?

The Principle of Dead Weight Pressure Tester

The Principle of Dead Weight Pressure Tester

Measurement and Instrumentation Objective Questions

Measurements & Instrumentation Quiz – Set 10

Menu

  • About
  • Privacy Policy
  • Copyright

Quick Links

  • Learn PLC
  • Helping Hand
  • Part Time Job

YouTube Subscribe

Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?