4-20 mA Signal Calculation Explained (PLC Example)

4-20 mA signal calculation industrial automation-এর একটি গুরুত্বপূর্ণ বিষয়। PLC system-এ analog signal বুঝতে হলে এই concept clear থাকা দরকার।

Sensor environment-এর বিভিন্ন parameter যেমন temperature, pressure, level বা distance measure করে। এরপর transmitter এই signal-কে electrical current-এ convert করে PLC-তে পাঠায়।

এই পুরো process বুঝতে পারলে analog signal handling অনেক সহজ হয়ে যায়।

এই ধরনের analog signal এবং PLC system ভালোভাবে বুঝতে হলে আমাদের PLC Programming Basics Guide দেখে নিতে পারেন, যেখানে শুরু থেকে step-by-step পুরো বিষয়টি সহজভাবে ব্যাখ্যা করা হয়েছে।

Sensor এবং Transmitter কীভাবে কাজ করে?

Sensor মূলত input device। এটি physical parameter detect করে।

Transmitter সেই signal-কে standard current signal-এ convert করে। সাধারণত এই range হয় 4-20 mA।

PLC এই signal receive করে এবং logic অনুযায়ী output control করে।

Signal Scaling কী?

Signal scaling ব্যবহার করে আমরা current value থেকে actual process value বের করি।

এটি PLC programming-এর একটি গুরুত্বপূর্ণ অংশ।

4-20 mA Signal Calculation Formula

PV = (Current – Min Current) ÷ (Max Current – Min Current) × (PV Max – PV Min) + PV Min

Example: Current থেকে Temperature বের করা

ধরা যাক:
Temperature range = 0°C to 250°C
Current range = 4 mA to 20 mA

Current = 12 mA

তাহলে,

PV = (12 – 4) ÷ (20 – 4) × 250
= 8 ÷ 16 × 250
= 125°C

Reverse Signal Calculation (Temperature to Current)

এখন যদি temperature দেওয়া থাকে, তাহলে current বের করতে হবে।

Formula

Current = (PV – PV Min) ÷ (PV Max – PV Min) × (Max Current – Min Current) + Min Current

Example

PV = 125°C

Current = (125 ÷ 250) × 16 + 4
= 12 mA

PLC Analog Input Conversion

PLC-এর analog input card সাধারণত current signal-কে voltage-এ convert করে।

এখানে 250 ohm resistor ব্যবহার করে 4-20 mA কে 1-5V এ convert করা হয়।

এর ফলে PLC সহজে signal process করতে পারে।

কেন এই Signal ব্যবহার করা হয়?

  • Noise কম হয়
  • Long distance-এ stable থাকে
  • Fault detection সহজ
  • Industrial standard

Practical Use Cases

এই calculation বাস্তবে অনেক জায়গায় ব্যবহার হয়:

  • Sensor calibration
  • Analog input scaling
  • Process control system

Conclusion

4-20 mA signal calculation বুঝতে পারলে PLC system-এ analog signal handle করা অনেক সহজ হয়ে যায়। এটি industrial automation-এর একটি core concept.

Leave a Reply

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