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
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: Notes on Instrument Ranging
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
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > Basics > Notes on Instrument Ranging

Notes on Instrument Ranging

Last updated: June 12, 2020 12:42 pm
Editorial Staff
Basics
No Comments
Share
7 Min Read
SHARE

An important configuration parameter for any practical measurement or control system is instrument process variable ranging. This entails setting both the transmitter and indicator/controller to a specified measurement range, with the controller indicating the process variable in real “engineering units” (e.g. PSI or degrees F rather than just percent).

Contents
Instrument RangingExamples

The following tutorial describes how this works and which configuration parameters to modify in a variety of different control systems found in the Instrumentation. The reason this is an issue at all is because loop controllers operating on 4-20 mA analog signals don’t “know” what those signals are supposed to represent unless someone configures the controller with the proper range reflecting real-world conditions.

For example, if a engineer is assigned a temperature transmitter with a range of 300 to 800 degrees Fahrenheit, not only does the transmitter have to output 4 mA when sensing 300 oF and output 20 mA when sensing 800 oF, but the controller must display an indication of 300 oF when it receives a 4 mA signal from the transmitter, and display an indication of 800 oF when it receives a 20 mA signal from the transmitter. None of this happens on its own – the engineer must range the transmitter for 300-800 oF input (and 4-20 mA output) as well as range the controller to display 300-800 oF over its 4-20 mA input scale.

Instrument Ranging

A typical loop is shown here with all instrument ranges displayed:

Instrument Ranging

Analog (non-“smart”) transmitters, I/P transducers, and valve positioners are ranged using “zero” and “span” adjustments, typically screws or nuts. The ranging of analog instruments is discussed in the “Instrument Calibration” topic. Click Here.

Digital (“smart”) transmitters and valve positioners are ranged by setting LRV and URV parameters using a “communicator” device or a personal computer equipped with the appropriate interface and software. This tool is discussed in this article. Click Here

Digital electronic loop controllers contain parameters specifying the process variable (PV) ranges. The following page lists examples of PV range configuration parameters for several different makes and models of loop controllers.

Examples

Siemens/Moore 352 controller:

Process variable range parameters are located in the “Operator’s Display” function block (FB15):

  • LRV = Process Lo
  • URV = Process Hi

Siemens/Moore 352P and 353 controller:

Process variable range parameters are located in the “Analog Input” function block (AIN):

  • LRV = Minscale
  • URV = Maxscale

Emerson DeltaV DCS:

Process variable range parameters are located in the “Analog Input” function block (AI) and “PID” function block (PID):

(AI block) = the OUT SCALE parameter contains both high and low range limits, engineering units (e.g. deg F), and decimal point position. The L Type parameter needs to be set to “indirect” to allow scaling to occur (“direct” mode prohibits scaling), and the XD Scale parameter needs to be ranged 0 to 100%. Note that the “direct” and “indirect” options for L Type have absolutely nothing to do with “direct” and “reverse” PID controller action, which is configured elsewhere.

(PID block) = the PV SCALE parameter contains both high and low range limits, engineering units (e.g. deg F), and decimal point position. Note: the PID block’s PV SCALE range must exactly match the OUT SCALE range of the AI block!

Honeywell UDC 2500 controller:

Process variable input #1 range parameters are located in the “Input 1” set-up group of parameters:

  • LRV = IN1 LO
  • URV = IN1 HI

Automation Direct “SOLO” controller:

Process variable range parameters are located in the following registers:

  • LRV = P3-4 Input Range Low
  • URV = P3-3 Input Range High

Allen-Bradley PLC5, SLC500, and MicroLogix controllers:

Process variable scaling parameters are typically located either in a “Scale” instruction (SCL) or a “Scale with Parameters” instruction (SCP). In either case, the instruction takes the raw count value from the input channel’s analog-to-digital converter and scales it into the desired process variable display range. Note: SCP instruction parameters may be edited online.

For this reason, downloading edits is not necessary for the MicroLogix PLCs. In fact, it is very important that you not save or download the PLC program, because doing so may alter the PLC’s network address and lead to communication problems. Just make the changes while the PLC is in “Run” mode and then exit the program:

  • (SCL instruction) = Rate and Offset values scale the signal according to the slope-intercept formula y = mx + b, where Rate is 10000m and Offset is b
  • (SCP instruction LRV) = Scaled Min.
  • (SCP instruction URV) = Scaled Max.

Allen-Bradley Logix5000 controller:

Process variable scaling parameters are located in the “PID” instruction (PID):

  • LRV = .MINS
  • URV = .MAXS

caSCADA “pid” control program:

Process variable scaling parameters are located in one of the source code files which must be modified using a text editor program, then recompiling the pid program so the new parameters may take effect. This control program may be initiated from the Linux command line by typing ./pid and pressing the Enter key, after which a set of instructions will appear on the screen showing the default LRV and URV range values, and which file to find these parameters within. After editing and saving this file, you will need to type make at the Linux command line and press Enter to recompile the program. Finally, type ./pid and press Enter to initiate the recompiled program.

  • LRV = pid[0].LRV
  • URV = pid[0].URV file

Interest to add any further points? Share with us through below comments section.

Read Next:

  • PLC Scan Time
  • Process Control Instrumentation
  • Strain Gauge Bridge Circuit
  • Instrument Cable Voltage Drop
  • Types of Thermometers
  • Electrical Signal Types

Credits: Tony R. Kuphaldt

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

Sink or Source? Normally Open or Normally Closed?
4-20 mA Transmitter Wiring Types : 2-Wire, 3-Wire, 4-Wire
What is Live Zero in 4-20 mA Current Loop ?
Basics of Valves
Difference between Smart Transmitter and Ordinary Transmitter
What is an O-Ring?
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
208kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

Troubleshooting a 4-20mA Current loop
Formulas to calculate mA from PV, LRV and URV
Why 4-20 mA Current Signal is used instead of Voltage Signal?
What are Analog and Digital Signals? Differences, Examples
Instrumentation Dictionary
Understanding a Process Control Loop
Difference between Transmitter and Transducer with Examples
What is the Difference Between Sensor and Transducer?

Keep Learning

Process Control Instrumentation Terms Glossary

Process Control Instrumentation Glossary

HART Transmitters Loop Checks

Loop Check of 4-20mA or HART Transmitters

Ground Rod

What is a Ground Rod?

What is Instrumentation and Control

What is Instrumentation and Control ?

Piping and Instrument Drawing

Difference between PFD and P&ID with Example

Process Control Fundamentals

Process Control Fundamentals

how-a-4-20ma-transmitter-works

How a 4-20mA Transmitter Works?

What Every Instrument Engineer Should Know

Common Mistakes in Instrumentation

Learn More

Calculate Temperature of Three Wire RTD

Determine the Temperature of 3 Wire RTD

PLC Program for Filling Operation

PLC Program for Continuous Filling Operation

Classification of valves

Losses in a DC Generator

shape of the trim determines the valve characteristic

Control Valve Characteristics

Automatic Liquid Mixing Application

PLC Program for Automatic Liquid Mixing Application

Gang Switch Principle

Reading Electrical Schematics

Gases LEL and UEL

What is Lower Explosive Limit & Upper Explosive Limit ?

PLC Program for Valves

PLC Pump Permissive Interlocks

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?