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

Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!

Control Expert, How to use DNP binary input commands in PLC logic from an SEL RTAC

Modicon PAC Forum

A forum for topics related to the scope of Modicon PAC offers and ecosystem along the whole lifecycle: Modicon M580 and 340, EcoStruxure Control Expert, EcoStruxure Process Expert (Unity Pro) 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
  • Industrial Automation
  • Modicon PAC Forum
  • Control Expert, How to use DNP binary input commands in PLC logic from an SEL RTAC
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
Trinxs1
Lt. Commander Trinxs1 Lt. Commander
11
YONGHO-KIM
Lieutenant YONGHO-KIM Lieutenant
9
ciupol
Lieutenant ciupol
9
RoozeeR
Lt. Commander RoozeeR Lt. Commander
8
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to Modicon PAC Forum
Owen_Woodard
Owen_Woodard Cadet
Cadet

Posted: ‎2025-08-29 07:48 AM

0 Likes
1
94
  • 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.

Posted: ‎2025-08-29 07:48 AM

Control Expert, How to use DNP binary input commands in PLC logic from an SEL RTAC

I have configured a BMENOR2200H with a server channel for receiving DNP3 binary input commands from an SEL RTAC. 

 

Within control expert these DNP3 binary inputs from the remote client are defined as bytes within control expert. I want to be able to use the correct bit within the binary input DNP3 byte to indicate on/off from a pulsed command from the automation controller. Which bit within the byte do I use to indicate on/off status? Or which bit within the byte is going to change, and how, if the remote client sends a binary input high command (ex. TRIP bkr).

 

I currently have the DNP3 remote client byte going to a BYTE TO BOOL function block within control expert but have no way to test this expect during the installation. Is the use of the BYTE TO BOOL function block to use the DNP binary input from the remote client the correct use of this data? If not, how am I supposed to utilize the DNP3 binary input command from the remote client within the PLC logic in control expert?

 

Below is an example of how i currently have the DNP3 pulsed binary input commands from the remote client being used in the program.

 

Screenshot 2025-08-29 084619.png

 

Labels
  • Labels:
  • 02. Modicon M580 ePAC
  • 06. EcoStruxure Control Expert
  • Tags:
  • english
Reply

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

  • All forum topics
  • Previous Topic
  • Next Topic
Reply 1
Siddiqui
Ensign Siddiqui Ensign
Ensign

Posted: ‎2025-09-03 06:14 AM

0 Likes
0
44
  • 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.

Posted: ‎2025-09-03 06:14 AM

Hi @Owen_Woodard,

 

Check my comments below:

 

The BMENOR module is configured as a DNP3 server and will receive the DNP3 Binary output commands from the DNP3 Client, which is SEL RTAC.

 

On the BMENOR server configuration, you have to choose DNP3 binary output points (BO) instead of DNP3 binary input points (BI) to receive the commands from the DNP3 Client, as mentioned below:

Siddiqui_0-1756902750538.png

 

There are three possibilities for operating CROB (Control Relay Output Block using DNP3 Binary output points:

  1. Latch ON/OFF
  2. Pulse_ON
  3. Pulse_Trip_Close.

By default, the Latch ON/OFF and Pulse_ON are selected when you declare the Binary Output DNP3 point in BMENOR configuration. For Trip functionality, you have to choose the Pulse_Trip_Close option, as shown below:

Siddiqui_1-1756902750540.png

 

Double Point Mode is selected by default for the Pulse Trip Close function in the BMENOR module, as shown below:

NOTE: The following snapshots show the DNP3 Server parameter.

Siddiqui_2-1756902750544.png

 

For the Double Point Mode, you have to declare two DNP3 Binary Output points in the BMENOR module, which are grouped for the Pulse Trip Close functionality.

 

Two DNP3 BO points are declared as shown below:

Siddiqui_3-1756902750546.png

 

Siddiqui_4-1756902750547.png

Note: Two DNP3 points are declared, with point 0 acting as a closed function and point 1 acting as a trip function. 

 

I did the test with the following setup:

  • DNP3 Client Test Harness Tool from TMW.
  • DNP3 Server BMENOR2200H Module.
  • The two DNP3 BO points are declared in the BMENOR module.
  • The Client (Test Harness) issues the Binary Output (BO) command with the following option:
    • Latch_ON
    • Latch_OFF
    • Pulse_ON
    • Pulse_Trip
    • Pulse_Close

The BO structure inside the ECE DDT is in byte format (by default, and this is fixed, and cannot be changed); we are interested in only the first bit of the byte.

It depends on the programmer how it's going to use this bit; you can also use the BYTE_TO_BOOL converter to extract this first bit. I also used BYTE_TO_BOOL for both points and mapped them into two digital points, such as Command for point 0 and Trip for point 1, as shown below.

Siddiqui_5-1756902750548.png

 

Latch_ON:

Before triggering any command from the Client side:

Siddiqui_6-1756902750548.png

 

Triggered the Latch_ON command from the Client, and it's reflected inside the ECE as shown below:

Siddiqui_7-1756902750551.png

 

 

Latch_OFF:

Siddiqui_8-1756902750553.png

 

Pulse_ON:

NOTE: The pulse duration depends on how you configured it during the point configuration.

Siddiqui_9-1756902750557.png

 

I created the trending tool inside the ECE to show you the events when the value changes from 0 to 1 and then remains at 1 for the time duration that is configured in pulse duration. Once the timer expires, it reverts 1 to 0 as shown below:

Siddiqui_10-1756902750558.png

Pulse_Close:

Siddiqui_11-1756902750562.png

 

 

Pulse_Trip:

Siddiqui_12-1756902750565.png

 

The snapshots below show the pulse for ON/Close and Trip as I issued these commands multiple times:

Siddiqui_13-1756902750567.png

 

I hope the above explanation provides a fundamental understanding and guidance on using the BMENOR module to use DNP3 BO points with Trip and Close functionality.

I suggest you read the BMENOR user manual and the DNP3 standard to get more detailed information.

 

Best Regards,

MWS

 

 

Reply

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

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

Welcome!

Welcome to your new personalized space.

of

Explore