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: Daily Alarm PLC Program using Real-Time Clock
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 > Daily Alarm PLC Program using Real-Time Clock

Daily Alarm PLC Program using Real-Time Clock

Learn the daily alarm PLC program using real-time clock instruction as per the required timings using CX programmer Omron PLC.

Last updated: May 15, 2024 9:39 am
Editorial Staff
PLC Tutorials
No Comments
Share
10 Min Read
SHARE

In this article, you will learn the daily alarm PLC program using real-time clock instruction as per the required timings using CX programmer Omron PLC.

Contents
Real-Time ClockAddressing Memory RTC in CX-ProgrammerTime Comparison InstructionsExampleDaily Alarm PLC ProgramSimulation Results

Real-Time Clock

The Real Time Clock (RTC) in PLC (Programmable Logic Controller) is a hardware component responsible for tracking time in real-time inside the PLC. This Real Time Clock (RTC) allows PLC to perform task scheduling, trigger events at specific times, and record data with a precise time reference.

With RTC, PLC can perform time-based functions, such as time control in the production process, logging data with timestamps, and running operational routines according to a specified schedule.

RTCs in PLCs are usually equipped with backup batteries so that they remain operational even when the PLC is turned OFF or loses power.

Addressing Memory RTC in CX-Programmer

In CX-Programmer, RTC data processing is allocated to Word Memory addresses A351-A354, each Word Memory address contains two RTC time units divided into 8-bits each in the form of BCD (Binary Code Decimal) Data Type and displayed in Hexadecimal units.

RTC can calculate units of time from the scale of Seconds to Years. Data on Word RTC Memory allocation can be processed and moved, and time on PLC can also be set in sync with World real-time or can be set as desired (not synchronized with World real-time).

The table below contains the time distribution for each Word Memory data allocation.

Word Memory AreaBit AreaFunctionRange TimeData Type
A351A351.00 – A351.07Seconds00 – 59BCD
A351.08 – A351.15Minutes00 – 59BCD
A352A352.00 – A352.07Hours00 – 23BCD
A352.08 – A351.15Date0 – 31BCD
A353A353.00 – A353.07Month01 – 12BCD
A353.08 – A353.15Year00 – 99BCD
A354A354.00 – A354.07Day of the Week00 – 06BCD
Not used   

Time Comparison Instructions

In CX-Programmer software, the time comparison instruction will compare time data in BCD form with comparison data, when the data comparison condition is “True”, the instruction will be ACTIVE.

Omron PLC Time Comparison Instruction

In the Time Comparison instruction above, 3 parameters must be set in the use of Time Comparison instructions.

The time comparison instruction is almost similar to the data comparison instruction, except that there is an addition of the “DT” format.

Following is the Time Comparison Instruction Table

ResultFlag Status
=DT<>DT <DT <=DT>DT >=DT
S1 = S2ONOFFOFFONOFFON
S1 > S2OFFONOFFOFFONON
S1 < S2OFFONONONOFFOFF

Parameter C: Control Word

This C parameter (Control Word) functionally functions to set what units of time will be activated and what units of time are not activated (masked). Time units that are not activated will not be compared with comparison data.

Omron PLC RTC Clock Instruction

Bits 00 to 05 (starting from the far right) of C determine whether time data will be disabled or not for comparison. If Bits 00 through 05 contain the time units of seconds, minutes, hours, days, months, and years, respectively. If all six values are masked, the instruction will not be executed, the execution condition will be OFF, and the Error Flag will be ENABLED. No time data compared

Covering the unit of time that you do not want to use can be done by activating the Bit, from the normal condition “False/0” to the condition “True/1” and expressing it in Hexadecimal units.

Parameter S1: First Word of Present Time

It is the Word memory address parameter of the RTC, such as A351, A352, A353, and A354.

Parameter S2: First Word of Comparison Time

It is a memory address parameter that is used as comparison data.

Example

When required, the unit of time data format to be compared is Hours, Minutes, and Seconds. Then the units that must be deactivated are Year, Month, and Day.

So the allocation of Memory Bits from Year, Month, and Day should be set to “True/1” while the allocation of Memory Bits from Hours, Minutes, and Seconds should still be set to “False/0”. So the Binary value obtained is “111000” and if converted to Hexadecimal units it becomes “38”.

Addressing Memory RTC in CX-Programmer

In the picture above, you can see that Word Memory allocation (D100) is used for the comparison of Minutes and Seconds time units from the RTC Memory address (A351), with Bit 00-07 as Seconds data allocation and Bit 08-15 as Minute data allocation. At the Word Memory address (D101) only Bits 00-07 are used because the “Day” data is not enabled.

In the time comparison instruction, 1 Word Memory data allocation is needed for comparison of 2 Time Unit data, because the data type used is BCD which is 8-bit equivalent, so if 2 BCD data becomes 8 + 8 = 16-bit.

Daily Alarm PLC Program

The way the PLC program works above is that when the START contact (0.00) is activated for a moment, the Coil “SYSTEM ON (W0.00)” will be ACTIVE and RUN the program in Rung 1.

Daily Alarm PLC Program using Real-Time Clock

The “>=(325)” instruction will activate when the value of memory address A354 which is the “Day of the Week” data allocation of the RTC is greater than or equal to #1. Value #1 = Monday, meaning the Instruction will ACTIVE on Monday or after Monday.

The “<=(315)” instruction will activate when the value of memory address A354 which is the “Day of the Week” data allocation of the RTC is less than or equal to #5. Value #5 = Saturday, meaning the Instruction will work on Saturday or days before Saturday.

The instruction “>=DT(346)” given by masking #38 indicates that the units of time to be compared are only Hours, Minutes, and Seconds. So if the value of A351 is greater than or equal to the value of the SV_ON comparison data (D0) then the Instruction will be ACTIVE.

The instruction “>=DT(344)” given by masking #38 indicates that the units of time to be compared are only Hours, Minutes, and Seconds. So if the value of A351 is less than or equal to the value of the comparison data SV_OFF (D1) then the Instruction will be ACTIVE and will be OFF if the value of A351 exceeds SV_OFF (D1).

The system will only stop if STOP (0.01) is enabled.

Simulation Results

PLC real-time clock programming

After the Program is run (simulated) the Daily Alarm (100.00) is inactive because the condition of all Instructions is still not set and has not been met.

In Pop-Up, PLC Clock can also be known if the time between PLC and PC / Computer is in Sync.

Omron CX Programmer Example Program

In the picture above, it can be seen that the Daily Alarm Output Coil (100.00) has been activated because all conditions of the Instruction have been met.

PLC Clock is manipulated so that it can be adjusted to the values in the parameters that have been given. Time comparison values can be entered in PLC memory as in Box No. 6.

The SV_ON parameter (D0) is set with a value of “2700” (27 = minutes, 00 = seconds), and a memory allocation (D1) is set with a value of “0021” (00 = Not Used, 21 = Hours).

The SV_OFF parameter (D10) is set with the value “3000” (30 = Minutes, 00 = Seconds) and the memory allocation (D11) is set with the value “0021” (00 = Not used, 21 = Hours).

In conclusion, Daily Alarm is ACTIVE because the day is more than equal to 1 (Monday) and less than equal to 6 (Saturday). Time has also passed 21 Minutes 27 Seconds 00, but less than 21 Minutes 30 Seconds 00 hours.

Omron PLC programs

In this phase, the time condition has exceeded the limits of Hours, Minutes, and Seconds so that the Daily Alarm becomes disabled.

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:

  • PLC and MCC Panel Interface Signals
  • VFD Simulator Software Download
  • CX-Programmer Products Sorting
  • Pneumatic Cylinder & Motor Circuit
  • Network Switch in SCADA and DCS
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

PLC Program for Temperature Control using Thermostat
How to Retrieve PLC Project From Memory Card?
PLC Input Output Modules
Timer-Based Sequential PLC Program with One Button
Allen Bradley PLC Interview Questions and Answers
Working Principle of Single Phase Preventer Relay
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

Types of SCADA System Architecture
3 Phase Motor Control using PLC Ladder Logic
PLC Programming Examples on Industrial Automation
Doll Claw Machine using Omron PLC Programming
Motor Speed Control using VFD and PLC Programming
Readings Mismatch between Field & Control Room ? Why
Communicating Between Siemens PLC and Other PLC Brands
PLC based Automatic Bell System for a School

Keep Learning

Advantages of Redundant System

Redundant Automation Systems – Need and Advantages

PLC Latching circuit Animation

What is Seal-in Circuit ?

Run 4 Motors Sequentially from Same Push button PLC Program

Run 4 Motors Sequentially from Same Push button PLC Program

Augmented Reality and Virtual Reality in Industrial Automation

Augmented Reality and Virtual Reality in Industrial Automation

Alarm prioritization

What is Alarm Prioritization? – Types of Alarms

Free Siemens PLC Training Course

Free Siemens PLC Training Course

PLC Program Example on Multiple LEDs using Set Coil

PLC Program Example on Multiple LEDs using Set Coil

Automatic bending machine for exhaust pipe

PLC Logic for Automatic Bending Machine for Exhaust Pipe

Learn More

Siemens Simatic HMI

How to Design an Effective HMI? – Human Machine Interface

Digital Electronics Multiple Choice Questions

Memory Devices Objective Questions – Part 1

Arc Fault Breaker (AFB) Electrical Problem Solved

Arc Fault Breaker (AFB) Electrical Problem Solved

Differential Pressure Transmitter with 5 Way Manifold Valve

Differential Pressure Transmitter with 5 Way Manifold Valve

Chemical Seal Pressure Transmitter

What is the Purpose of Chemical Seals Pressure Transmitter?

radar-level-sensor-

Non-Contacting Radar Level Transmitter Working Principle

Basic DC Power Supply Circuit

Basic DC Power Supply Circuit

DC Generator

DC Generator

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?