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: PLC Program for Control Valve Scaling
Share
Notification Show More
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 > PLC Program for Control Valve Scaling

PLC Program for Control Valve Scaling

PLC Analog Scaling example for the valve. We discuss about PLC Program for Control Valve Scaling using Siemens PLC Programming software.

Last updated: November 3, 2023 11:46 am
Editorial Staff
PLC Tutorials
4 Comments
Share
5 Min Read
SHARE

This is a PLC Program to implement analog scaling in S7-300 PLC.

Contents
Control Valve ScalingProblem DiagramProblem SolutionList of inputs/outputsPLC Ladder Diagram for Valve ScalingLadder Logic ExplainedResult

Control Valve Scaling

Problem Description

Implement PLC program in S7-300 for analog scaling.

Problem Diagram

PLC Program for Control Valve Scaling

Problem Solution

Analog inputs come from different sensors or transmitters. Transmitters convert physical quantity into electrical signal. We can measure many physical quantity by using analog sensors such as temperature, pressure, level, distance, flow etc.

Of course we can measure all physical quantity by using analog sensors, but for example and explanation purpose here we take one example of control valve.

As shown in figure, here we consider one control valve and it has 4-20mA output (valve feedback)  and 4-20mA input (valve command) for operation. Hence, when PLC will give 20mA to flow control valve, valve will be open 100% and for 4mA it will be 0% (close).

In other way flow control valve is also providing output signal that can be used for close loop system/for valve percentage indication. If valve is 100% open, PLC will get 20mA signal and for 0% it will get 4mA.

Note:- We consider here close loop system for simple explanation, so operator will set control valve open command parameter in range between 0% to 100% .

PLC Valve Open Command

Now as per close loop system, control valve will provide output signal (valve feedback) and by using SCALE instruction, operator can see actual valve open parameter on graphics.

PLC Valve Feedback value

List of inputs/outputs

M memory

  • Enable command-Scaling :- M0.0
  • Bipolar selection-Scaling :- M0.1
  • Actual value from the sensor or transmitter :- MW10
  • Error word –Scaling :- MW12
  • Scaled output :- MD20
  • Enable command-Unscaling :- M1.0
  • Bipolar selection- Unscaling :- M0.2
  • Given value from the display :- MD24
  • Error word-Unscaling :- MW16
  • Unscaled output :- MW26

PLC Ladder Diagram for Valve Scaling

PLC Control Valve Scaling

Valve PLC Scale

Ladder Logic Explained

For this application, we use S7-300 PLC and TIA portal software for programming. We can implement this logic by using other PLC also.

Network 1:

In this network, scaling logic is executed when Enable command (M0.0) is ON.

The “Scale” instruction is to convert the integer (here 4-20mA signal from the control valve or MW10) at the IN parameter which can be scaled in physical units between a low limit (0% output) and a high limit (100% output).

The result or scaled output (MD20) of the instruction is output at the OUT parameter.

If bipolar selection (M0.1) is ON, it is assumed that the value at the IN parameter is bipolar (range between -27648 to +27648).

If bipolar selection (M0.1) is OFF, it is assumed that the value at the IN parameter is unipolar (range between 0 to 27648).

Network 2:

The “Unscale” instruction is used to unscaled the floating-point number (given value from the display or MD24) on the IN parameter into physical units between a low limit and and a high limit.

The result of the instruction is output (unscaled output MW26) at the OUT parameter. If bipolar selection (M0.2) is ON, it is assumed that the value at the IN parameter is bipolar (range between -27648 to +27648).

If bipolar selection (M0.2) is OFF, it is assumed that the value at the IN parameter is unipolar (range between 0 to 27648).

Error code table:

PLC analog block error codes

Note: The above application may be different from actual application. This example is only for explanation purpose only. We can implement this logic in other PLC also. This is the simple concept of SCALE and UNSCALE instructions, we can use this concept in other examples also.

All parameters considered in the example are for explanation purposes only, parameters may be different in actual applications.

Result

Simulation for analog scaling in S7-300 PLC

Author : Bhavesh

If you liked this article, then 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:

  • Sensor Scaling in PLC
  • Latching Function in PLC
  • PLC Ladder Diagrams
  • Multiple Outputs using PLC
  • PLC Continuous Filling Operation
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

SCADA Software and their Comparison
Define the Order of Execution in Functional Block Diagram of Studio 5000
How to use Sub Routines with Allen Bradley PLC
Difference between DCS & PLC Systems
How to Connect a Solenoid Valve with PLC?
What is a Annunciator Panel?
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
4 Comments
  • adams says:
    August 2, 2018 at 8:24 pm

    how about a similar article like this using the SCP instruction of Allen Bradley thanks nice work here

    Reply
    • Nick Camplin says:
      February 6, 2022 at 6:27 pm

      It is important to explain where you get the range values of +27648 to -27648.

      Reply
  • Qadir Mohtasham says:
    August 3, 2018 at 10:04 am

    Great

    Reply
  • satish says:
    October 11, 2018 at 11:44 am

    Please upload types and makes PLC with photos, IO card to different types of field instruments and identification of errors in PLC

    Reply

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

DCS
Example of Automated Guided Vehicle with PLC
Failsafe Wiring Practices
Doll Claw Machine using Omron PLC Programming
PLC Programming Example for Motor Forward and Reverse Control
Open User Communication in Siemens Tia Portal – PLC to PLC
PLC Instruction List for Motor Reverse and Forward Direction
PLC Timer Instructions

Keep Learning

Omron PLC Mixing System

Mixing Program with Timers and Counters in Omron PLC

Electrical Ground Loop

How to Solve Electrical Ground Loop Problems?

PLC XOR LOGIC with Ladder Diagram

PLC Logic Functions

Types of Instructions in PLC Programming

Types of Instructions in PLC Programming

SCADA

Top 100+ SCADA Questions

CRA Module in Schneider PLC

CRA Module in Schneider PLC – Remote IO Adapter Module

InTouch SCADA Password Protection

InTouch SCADA Login Password Security

Machine Tool and Coolant Control PLC Ladder Logic

Machine Tool and Coolant Control: PLC Ladder Logic Design

Learn More

Solenoid Valve Functional Testing

Solenoid Valve Functional Testing

Thermocouple Temperature Measurements Errors

Thermocouple Temperature Measurement Errors

Electrical Drives Animation

Electrical Drives – Modes, Types, Speed Control Applications

EPC Questions and Answers

EPC Questions and Answers

Functional Safety Terms in Industrial Automation

Functional Safety Terminology in Industrial Automation

Control Panel

What is a Control Panel and its types?

Why Circuit Breakers Don't Protect People?

Why Circuit Breakers Don’t Protect People?

Digital Electronics Multiple Choice Questions

Encoders Objective Questions

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?