Skip to main content

Gas Turbine Temperature Alarms using Siemens TIA Portal

 This article is about the temperature alarms PLC program for a Gas turbine. Here we will use Siemens TIA PORTAL for programming the logic.

There are many applications in the industry where we need to measure the temperature accurately. If the process temperature goes out of the required range then there must be an alarm generated in the system.

Gas Turbine Temperature Alarms

In a Gas turbine, there are various elements need to be monitored like speed, temperature, lube oil pressure, etc.

Here in this article, let’s consider that in the gas turbine we have to measure the temperature in one of the sections.

Here we will take three temperature sensors where RTD PT 100 is used for its constant high accuracy for a smaller range of the temperature measurement. If anyone of the sensors goes out of the range as per the defined temperature setpoint, there should be an alarm generated, which is to notify personnel that things are not working properly.

Also, we want an average of three sensors to maintain a predefined temperature difference. Let’s say, in our case we need to maintain an average temperature of 100°C. We also need one more alarm to indicate, when the average temperature goes out of the range.

If the Temperature difference between Temperature sensor_1 and the average temperature goes above 100°C then the alarm should be generated. Same applicable for sensor_2 and sensor_3.

Whenever there is an active alarm in the system, then I want an additional GENERAL ALARM to be activated.

Here I will use 3 Analog INPUT’s for three RTD temperature sensors and four outputs, out of them one for average temperature indication and three for individual RTD’s.

Inputs:

  • TEMPERATURE SENSOR_1 (MD0)
  • TEMPERATURE SENSOR_2 (MD4)
  • TEMPERATURE SENSOR_3 (MD8)

Outputs:

  • ALARM_1 (Q0.0)
  • ALARM_2 (Q0.1)
  • ALARM_3 (Q0.2)
  • ALARM_4 (Q0.3)

Now first, we need to calculate the average of the temperature readings. For that, we have to add the values of the three temperature sensors and divide it by 3.

PLC Logic using Siemens TIA Portal

Gas Turbine Temperature Control using Siemens Tia Portal
Program Description
Network 1:
Here, I have added the three temperature sensors readings using ADD instruction and divide it by three as per the above-shown equation to get an average temperature.

Network 2:
Here, we want to generate an alarm, when the difference between Temperature sensor_1 and the average temperature goes above 100 °C. To compare it, we have used greater than instruction.

To generate that difference, I have used subtraction instruction.

Here, absolute instruction is used to reverse the sign (+ or -). If the temperature difference goes negative, we want it to positive using absolute instruction. So, it only alarms when the temperature goes above 100 °C.

Absolute instruction only uses real data type. That’s why we have used data type “real” in all the instructions.

Network 3 & 4:
Here, as explained in the above network Alarm_2 and Alarm_3 generated if the temperature goes above 100°C.

Network 5:
As the temperature difference goes above 100°C from any one of the sensors then the main alarm will also generate.

-END-

Comments

Popular posts from this blog

Ferrules and Cross Ferruling

 Ferrules are identification labels provided for every wire terminations in an instrument, equipment, or electrical/instrumentation control panels. These tube-shaped sleeves can be inserted easily on each individual wire in a multi-core cable. In earlier days fixed digits/letters are used as ferrules, but now Instrumentation engineers/technicians prints out desired ferrules by using a ferrule printing machine. Typical Ferrule The numbers/ letters on the ferrules will be given as per the approved electrical hook up or loop diagrams. This helps technicians to easily identify a particular loop/wiring from a series of terminal blocks and to troubleshoot the desired terminal connection. Separate numbers on the ferrules distinguish the positive and negative polarities of wires, thus ensure the polarity protection of the instrument. Cross Ferruling  As a wire is connected on its both ends, it is quite useful to use a cross reference method for wire identification. Unlike normal ferru...

What is a Torbar? – Averaging Pitot Tubes

 The Torbar is employed for flow measurement of liquids, gases, or steam in circular, square, or rectangular section ducts for large flow rates. The Torbar is an insertion type multi-port self-averaging primary sensor for flow measurement. Torbar TORBAR is a set of Pitot tubes mounted on a bar across the pipeline with no moving parts. An averaging Pitot tube is a technology, while TORBAR is a manufacturing brand name. There are several brands available in the market with VERABAR, ANNUBAR, etc. Averaging Pitot Tube Principle Purpose Averaging Pitot tube can be employed when the average velocity of the flow profile, rather than the velocity in a specific point in the cross-section is desired. Averaging Pitot Tubes Principle It measures the differential pressure between the static pressure tap and the tap of full pressure of a stream. Thus such magnitude of differential pressure is directly proportional to the square of the flow rate. Working The TORBAR is designed in such a way that ...

Thermowell Insertion and Immersion Length

 The thermowell is the industrial housing for temperature elements like RTD or thermocouple or temperature gauges. Thermowell is directly exposed to process fluid/media. Inside the thermowell, element/gauge is installed. Thermowell transfers the heat to the temperature element. Depending upon the element type, the fluid temperature can be known. So Thermowell protects the temperature element against harsh conditions and process fluid. It enables removal of the temperature element for replacement, repair, or testing without affecting the process system. Generally, thermowells are provided with all-temperature Elements like RTD or Thermocouple or temperature gauge. A few exceptions would be bearing RTD, skin type thermocouple, air duct thermometer, etc where thermowell is not applicable / required. When the thermowell assembly is inserted into the pipe, it is subjected to vibration. This vibration is caused by vortices to be generated alternately on either side of the thermowell. The...