• Skip to main content
  • Skip to header right navigation
  • Skip to site footer
CDP Studio logo

CDP Studio

The no-code and full-code software development tool for distributed control systems and HMI

  • Doc
  • Why CDP
    • Software developers
    • Automation engineers
    • Managers
  • Products
    • Automation Designer
    • HMI Designer
    • Maritime HMIs
  • Services
  • Use cases
  • Pricing
  • Try CDP

CDP Studio Documentation

  • Framework - Automation
  • CTUDOperator
  • 5.0.0

CTUDOperator Class

(Automation::CTUDOperator)

The CTUDOperator is a rising edge counter operator, or CTUD counter as referenced by IEC 61131-3 in PLC. More...

Header: #include <CTUDOperator>
Inherits: CDPOperator<T>
  • List of all members, including inherited members

Public Functions

CTUDOperator(const CDPPropertyBase &in)

Reimplemented Public Functions

virtual void Configure(XMLPrimitive *operatorXML) override
virtual unsigned int Process() override
  • 18 public functions inherited from CDPOperator
  • 17 public functions inherited from CDPOperatorBase
  • 49 public functions inherited from CDPBaseObject
  • 27 public functions inherited from CDP::StudioAPI::CDPNode
  • 22 public functions inherited from CDP::StudioAPI::ICDPNode

Additional Inherited Members

  • 1 public variable inherited from CDPOperatorBase
  • 1 static public member inherited from CDPBaseObject
  • 1 protected function inherited from CDP::StudioAPI::CDPNode
  • 8 protected variables inherited from CDPOperator
  • 5 protected variables inherited from CDPOperatorBase
  • 10 protected variables inherited from CDPBaseObject

Detailed Description

The CTUDOperator is a rising edge counter operator, or CTUD counter as referenced by IEC 61131-3 in PLC.

The CTUDOperator is increasing the count value (CV) on rising edge in the count up input (CU) and decreasing the count value on rising edge in the count down input (CD). The count up output (QU) is set to true when the count value has reached the preset value (PV). The Count down output (QD) is set to true when the count value has reached to zero.

Arguments

NameDescription
CUCount up enable (rising edges of this value will be up counted)
CDCount down enable (rising edges of this value will be down counted)
PVPreset value (counter limit)
CVCount value (current number of rising edges left to be counted)
QUWill be set to true when count value has reached preset value
QDWill be set to true when count value has reached to zero
RReset counter (set count value to zero)
LDLoad counter (set count value to preset value)

When operator is used inside a signal its default input is automatically tied to signal's InternalValue or previous operator's output. Its default output is automatically tied to next operator's input or to signal's Value. See also CDP Operator Usage In CDP Signals.

Example

Below are the example plots for CTUDOperator(PV=5) up input (CU, cyan), down input (CD, orange), count value (CV, yellow), up reached output (QU, magenta) and down reached output (QD, green).

Actual Processing Code of the CTUDOperator

unsigned int CTUDOperator<T>::Process()
{
  if (!m_CD || !m_PV || !m_R || !m_LD || !m_QU || !m_QD)
    return STATUS_ERROR;

  if ((bool)*m_R)
  {
    *m_CV = 0;
    *m_R = false;
  }
  if ((bool)*m_LD)
  {
    *m_CV = (T)*m_PV;
    *m_LD = false;
  }
  bool CU = (bool)*m_CU;
  if (CU && m_oldCU != CU && ((T)*m_CV < (T)*m_PV))
    *m_CV = (T)*m_CV + 1;
  bool CD = (bool)*m_CD;
  if (CD && m_oldCD != CD && ((T)*m_CV > 0))
    *m_CV = (T)*m_CV - 1;
  *m_QU = ((T)*m_CV >= (T)*m_PV);
  *m_QD = ((T)*m_CV == 0);

  m_oldCU = CU;
  m_oldCD = CD;

  return STATUS_OK;
}

See also Argument.

Member Function Documentation

CTUDOperator::CTUDOperator(const CDPPropertyBase &in)

Default constructs an instance of CTUDOperator.

[override virtual] void CTUDOperator::Configure(XMLPrimitive *operatorXML)

[override virtual] unsigned int CTUDOperator::Process()

The content of this document is confidential information not to be published without the consent of CDP Technologies AS.

CDP Technologies AS, www.cdpstudio.com

Get started with CDP Studio today

Let us help you take your great ideas and turn them into the products your customer will love.

Try CDP Studio for free
Why CDP Studio?

CDP Technologies AS
Hundsværgata 8,
P.O. Box 144
6001 Ålesund, Norway

Tel: +47 990 80 900
E-mail: info@cdptech.com

Company

About CDP

Contact us

Services

Partners

Blog

Developers

Get started

User manuals

Support

Document download

Release notes

My account

Follow CDP

  • LinkedIn
  • YouTube
  • GitHub

© Copyright 2025 CDP Technologies. Privacy and cookie policy.

Return to top