Baca INT 64 bit di SCADA?

seperti kita ketahui, kebanyakan SCADA belum support tipe data Integer 64 bit (max value: 9,223,372,036,854,775,807), lalu gimana kalau kita mau baca dari device yang menyediakan data ini? contohnya pada power meter Schneider untuk data KWH

berikut trik nya:

  1. Siapkan 1 variable Real / floating 32bit – sebagai contoh kita kasih nama Energy)
  2. Siapkan 4 variable INT (16bit) dimana nilai tersebut  didapat dari register modbus PM yaitu 43204, 43205, 43206, 43207) – sebagai contoh kita kasih nama RAW_1 dan RAW_2, RAW_3, dan RAW_4

Energy = (raw_4 * 281474976710656) + (raw_3 * 4294967296) + (raw_2 *  65536) + raw_1

HMI GTU (HMIG3U) Recovery

If your HMIG3U Magelis runtime just crash and Halt you can recover only using SDcard by using this tool “BackupRecovery” you can download from this link:
https://schneider-electric.box.com/s/c6ray49otwvj1p3ugyq66b3kx76lsqzc

and image recover HMIG3U VJD 6.2 SP 5.1 :
https://schneider-electric.box.com/s/pxquf8r3d507k01od8w8l1rnowv8nj8m

and here is the official tutorial from schneider electric, the different thing is only version of image. if you are using newer version you can’t recover to the previous version so I created the newest version:

https://www.schneider-electric.com/en/faqs/FA242275/

PLC – Unity Pro XL, Set up project and configuration

Unity Pro XL adalah software yang digunakan untuk programming & konfigurasi PLC Schneider.

PLC yang di dukung oleh Unity Pro XL antara lain:

  • M340
  • Modicon Quantum
  • Modicon Premium
  • M580

Pada jenis PLC tersebut tidak semua processor/CPU pada PLC tersebut didukung oleh Unity, ada beberapa CPU yang didukung oleh ProWorks atau PL7

fitur dari Unity Pro:

  • 5 IEC61131-3 languages + Legacy LL984
  • Integrated conversion tools dari software Concept, Proworks, PL7 Pro
  • FDT / DTM standard, untuk integrasi dengan field device
  • Customizable integrated Function Block Library (DFB)
  • PLC simulator on PC, Built-in test and diagnostic
  • Animation tables, Operator Screens and Trending Tool

READ MORE