Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

PM2100 CT primary change via Modbus

Metering & Power Quality

Schneider Electric support forum about Power Meters (ION, PowerTag, PowerLogic) and Power Quality from design, implementation to troubleshooting and more.

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • EcoStruxure Power & Grid
  • Metering & Power Quality
  • PM2100 CT primary change via Modbus
Options
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
Charles_Murison
Picard Charles_Murison Picard
477
Ramasamy_N
Captain Ramasamy_N Captain
113
Robert_Lee
Admiral Robert_Lee Admiral
92
Mehran_Mehrnia
Captain Mehran_Mehrnia Captain
85
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to Metering & Power Quality
Solved
ghulamshoaib
Ensign ghulamshoaib
Ensign

Posted: ‎2024-04-03 12:56 AM

0 Likes
10
2357
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-03 12:56 AM

PM2100 CT primary change via Modbus

Hello Everyone,

I have connected PM2100 with Siemens S7-1200 via CM1241 RS485 Module. I can read the data from PM2100 without any problem. Now I want to change the CT Primary via PLC. can anyone tell me how can I do that?

I am using Modbus_Master instruction in PLC, But unable to write the CT primary value. 

Waiting for reply

Thanks

 

Labels
  • Labels:
  • PowerTag Energy
Tags (1)
  • Tags:
  • english
Reply
  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
Robert_Lee
Admiral Robert_Lee Admiral
Admiral

Posted: ‎2024-04-04 09:52 AM

1 Like
1
2322
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-04 09:52 AM

The PM2100 does NOT use a simple read/write register map.  All configuration commands are done through a Protected Command Interface set of registers (5000 through 5124) and requires the acquisition of a command semaphore (register 5001).

The process would be:

1. Obtain the command semaphore by reading register 5001.  If a non-zero value is returned, then use that value in the subsequent command to be sent.

2. In the case of programming the CT Primary, you need to send Basic Meter Setup command (2000) by writing the appropriate registers (there are 24) in its entirety along with the semaphore acquired in step 1.
3. You can confirm the changes took place by reading the Command Result registers (5125 thru 5127) and ensure that the Result in 5126 is zero indicating valid operation and 5127 is for the command you sent in step 2.
4. Finally you release the semaphore in step 1 by writing the same value back into register 5001.

All write functions would use Write Holding Register (function code 10h).

See Answer In Context

Reply
Robert_Lee
Admiral Robert_Lee Admiral
Admiral

Posted: ‎2024-04-04 09:54 AM

1 Like
1
2322
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-04 09:54 AM

Here is where you can find the needed information on the PM2100 Modbus map:

https://www.se.com/id/en/download/document/PM2100_PM2200_Register_List/

See Answer In Context

Reply
Replies 10
Robert_Lee
Admiral Robert_Lee Admiral
Admiral

Posted: ‎2024-04-04 09:52 AM

1 Like
1
2323
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-04 09:52 AM

The PM2100 does NOT use a simple read/write register map.  All configuration commands are done through a Protected Command Interface set of registers (5000 through 5124) and requires the acquisition of a command semaphore (register 5001).

The process would be:

1. Obtain the command semaphore by reading register 5001.  If a non-zero value is returned, then use that value in the subsequent command to be sent.

2. In the case of programming the CT Primary, you need to send Basic Meter Setup command (2000) by writing the appropriate registers (there are 24) in its entirety along with the semaphore acquired in step 1.
3. You can confirm the changes took place by reading the Command Result registers (5125 thru 5127) and ensure that the Result in 5126 is zero indicating valid operation and 5127 is for the command you sent in step 2.
4. Finally you release the semaphore in step 1 by writing the same value back into register 5001.

All write functions would use Write Holding Register (function code 10h).

Reply
Robert_Lee
Admiral Robert_Lee Admiral
Admiral

Posted: ‎2024-04-04 09:54 AM

1 Like
1
2323
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-04 09:54 AM

Here is where you can find the needed information on the PM2100 Modbus map:

https://www.se.com/id/en/download/document/PM2100_PM2200_Register_List/

Reply
ghulamshoaib
Ensign ghulamshoaib
Ensign

Posted: ‎2024-04-04 11:27 PM

0 Likes
0
2287
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-04 11:27 PM

Dear @Robert_Lee thanks for your reply. I have read the semaphore value. Now I want to send the command.

so should I send command to 5000 address, with first value will be 2000 and second will be command semaphore, as listed in list of registers

(1) Command Semaphore
(2) Number of Phases
(3) Number of Wires
(4) Power System Configuration
(5) Nominal Frequency
(6-7) Nominal Voltage
(8-9) Nominal Current
(10-11) Nominal Power Factor
.

.

(18) CT Primary, Phase

 

So i will write,

2000>5000

semaphore>5001

Number of Phases>5002

Number of wires >5003

.

.

CT Primary, Phase>5018

 

is that right?

 

Reply
ghulamshoaib
Ensign ghulamshoaib
Ensign

Posted: ‎2024-04-05 12:25 AM

0 Likes
0
2287
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-05 12:25 AM

Dear @Robert_Lee , Please check the following map which I have mad to send data to PM2130 to write data

ghulamshoaib_0-1712301884363.png

please check if i am right? Should I sent data in this pattern?

Reply
ghulamshoaib
Ensign ghulamshoaib
Ensign

Posted: ‎2024-04-05 01:52 AM

0 Likes
0
2271
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-05 01:52 AM

Should I read 5001 or 5680 to read semaphore?

Reply
ghulamshoaib
Ensign ghulamshoaib
Ensign

Posted: ‎2024-04-07 10:48 PM

0 Likes
0
2228
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-07 10:48 PM

Waiting for reply 

Reply
Robert_Lee
Admiral Robert_Lee Admiral
Admiral

Posted: ‎2024-04-10 04:06 PM

0 Likes
1
2196
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-10 04:06 PM

I've attached a packet trace (can be opened using any plain text editor like notepad) where ION Setup is performing the Basic Setup command for a similar product.  It first reads the setup for the required 24 registers, then the semaphore, followed by sending the Basic Setup command (seen using function code 0x10), followed by dual reads of the result registers (the first returns zero for the command, then the subsequent one does return 2000 in the correct location).  Finally it releases the semaphore with another Write Holding register request.

Attachments
PACKET.LOG
Reply
ghulamshoaib
Ensign ghulamshoaib
Ensign

Posted: ‎2024-04-14 07:51 AM

0 Likes
0
2150
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-14 07:51 AM

Dear @Robert_Lee ,

When I sent write command and read 5125, 5126 and 5127 then it shows the following result,

 

5125 = 2000

5126 = 3001

5127 = 3

can you please tell me what is wrong? why 5126 showing 3001?

 

Reply
Robert_Lee
Admiral Robert_Lee Admiral
Admiral

Posted: ‎2024-04-18 09:55 AM . Last Modified: ‎2024-04-18 09:55 AM

0 Likes
0
2109
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-04-18 09:55 AM

Register 5126 is the command result register so a value of 3001 indicates that one of the sent parameters is "Invalid Parameter".

If you examine the other register values (5127 onwards), one or more of them will have a value of 0xFFFF which indicates which of the parameters sent was not acceptable.

I suspect in this instance, since you are modify the CT Primary value, the CT Primary Neutral register value is not being set correctly (I believe the firmware requires that if you modify the CT Primary value, the CT Primary Neutral value must match).

Many of the firmware requirements for programming many of the registers is undocumented which is why I don't ever recommend anyone to attempt to do this using any type of 3rd party system.

Reply
Isaacbrasil
Crewman Isaacbrasil
Crewman

Posted: ‎2024-09-25 12:03 PM

0 Likes
0
1437
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

‎2024-09-25 12:03 PM

Olá, não estou conseguindo lero o KWH via MODBUS-RTU os outros parametros estou lendo, somente o KWH não. PM2100 conseguiria me ajudar? contato: isaac.brito@castecnologia.com.br

Obrigado!

Reply
Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of