Learn PLCs free
Intermediate15 min readWater & Wastewater

Delta Timers for Pump Control

Learn Timers programming for Pump Control using Delta WPLSoft / ISPSoft / DIADesigner-AX. Includes code examples, best practices, and step-by-step implementation guide for Water & Wastewater applications.

💻
Platform
WPLSoft / ISPSoft / DIADesigner-AX
📊
Complexity
Intermediate
⏱️
Project Duration
2-4 weeks

Advanced Timers techniques for Pump Control in Delta's WPLSoft / ISPSoft / DIADesigner-AX can improve code organization, diagnostics, and reuse when they are applied deliberately. This guide explores patterns that go beyond a basic implementation and explains how to evaluate their tradeoffs.

Available language features and libraries depend on the controller family, firmware, installed options, and WPLSoft / ISPSoft / DIADesigner-AX version. Confirm each feature in current vendor documentation and create a minimal compile-and-run test before incorporating it into a larger project.

Advanced Pump Control implementations leverage sophisticated techniques including multi-sensor fusion algorithms, coordinated multi-actuator control, and intelligent handling of pressure regulation. When implemented using Timers, these capabilities are achieved through delays patterns that exploit Delta-specific optimizations.

This guide examines custom function blocks, data structures, advanced Timers patterns, and version-dependent WPLSoft / ISPSoft / DIADesigner-AX features. For each technique, assess readability, scan-time cost, failure behavior, portability, and how the design will be tested and maintained.

Delta WPLSoft / ISPSoft / DIADesigner-AX for Pump Control

WPLSoft / ISPSoft / DIADesigner-AX is a programming environment associated with Delta controller families such as DVP-ES2 / EX2 / SS2 (compact entry), DVP-SX2 / SA2 / SV2 (motion + analogue), DVP-SE (Ethernet). This guide uses Timers terminology from the supplied guide dataset, but controller capabilities and language support can change by model, firmware, software edition, and license.

Verify Before You Start:

  • The selected controller supports the required Timers constructs

  • The project version matches the installed WPLSoft / ISPSoft / DIADesigner-AX release

  • Required communications, motion, safety, and simulation options are licensed

  • Firmware and device-description files are compatible with the project

  • The vendor manuals used for the design match the exact hardware revision


Application Planning:

For a Pump Control exercise, map the required inputs and outputs before writing logic. The example considers 5 sensor types, including Pressure transmitters, Flow meters, Level sensors, and 5 actuator types.

Control Equipment for Pump Control:

  • Centrifugal pumps for high flow applications

  • Positive displacement pumps for metering

  • Submersible pumps for wet well applications

  • Booster pump systems for pressure maintenance


Controller-family references used in this guide include:

  • DVP-ES2 / EX2 / SS2 (compact entry): Confirm CPU, I/O, memory, communications, and Timers support in the current selection guide

  • DVP-SX2 / SA2 / SV2 (motion + analogue): Confirm CPU, I/O, memory, communications, and Timers support in the current selection guide

  • DVP-SE (Ethernet): Confirm CPU, I/O, memory, communications, and Timers support in the current selection guide

  • DVP-EH3 (legacy high-end): Confirm CPU, I/O, memory, communications, and Timers support in the current selection guide


Hardware Selection Checklist:

  • Count local and remote I/O, including planned expansion

  • Measure the required task and communications update rates

  • Identify memory, data-retention, diagnostics, and cybersecurity requirements

  • Treat safety functions as a separate, standards-led design activity

  • Confirm lifecycle status, regional availability, licensing, and support


Source and Validation Note:

This page does not represent a vendor certification or a hardware acceptance test. Use current Delta manuals, release notes, and safety documentation as the authority for product-specific behavior. Validate adapted logic in a simulator or isolated test setup before connecting it to equipment.

Investment Considerations:

For Pump Control projects, compare hardware, software licensing, training, engineering, test equipment, commissioning, spares, and ongoing support. Obtain current pricing and lifecycle information directly from the vendor or an authorized regional supplier.

Understanding Timers for Pump Control

PLC timers measure elapsed time to implement delays, pulses, and timed operations. They use accumulated time compared against preset values to control outputs.

Execution Model:

For Pump Control applications, Timers offers significant advantages when any application requiring time delays, time-based sequencing, or time monitoring.

Core Advantages for Pump Control:

  • Simple to implement: Critical for Pump Control when handling intermediate control logic

  • Highly reliable: Critical for Pump Control when handling intermediate control logic

  • Essential for most applications: Critical for Pump Control when handling intermediate control logic

  • Easy to troubleshoot: Critical for Pump Control when handling intermediate control logic

  • Widely supported: Critical for Pump Control when handling intermediate control logic


Why Timers Fits Pump Control:

Pump Control systems in Water & Wastewater typically involve:

  • Sensors: Pressure transmitters for discharge and suction pressure, Flow meters (magnetic, ultrasonic, or vortex), Level transmitters for tank or wet well level

  • Actuators: Variable frequency drives (VFDs) for speed control, Motor starters (DOL or soft start), Control valves for flow regulation

  • Complexity: Intermediate with challenges including Preventing cavitation at low suction pressure


Control Strategies for Pump Control:

  • constant: Maintain fixed speed or output

  • pressure: PID control to maintain discharge pressure setpoint

  • flow: PID control to maintain flow rate setpoint


Programming Fundamentals in Timers:

Timers in WPLSoft / ISPSoft / DIADesigner-AX follows these key principles:

1. Structure: Timers organizes code with highly reliable
2. Execution: Scan-cycle integration defines when the 5 sensor inputs are read and processed; verify the timing on the selected controller
3. Data Handling: Proper data types for 5 actuator control signals

Best Practices for Timers:

  • Use constants or parameters for preset times - avoid hardcoded values

  • Add timer status to HMI for operator visibility

  • Implement timeout timers for fault detection in sequences

  • Use appropriate timer resolution for the application

  • Document expected timer values in comments


Common Mistakes to Avoid:

  • Using TON when TOF behavior is needed or vice versa

  • Not resetting RTO timers, causing unexpected timeout

  • Timer preset too short relative to scan time causing missed timing

  • Using software timers for safety-critical timing


Typical Applications:

1. Motor start delays: Directly applicable to Pump Control
2. Alarm delays: Related control patterns
3. Process timing: Related control patterns
4. Conveyor sequencing: Related control patterns

Understanding these fundamentals prepares you to implement effective Timers solutions for Pump Control using Delta WPLSoft / ISPSoft / DIADesigner-AX.

Implementing Pump Control with Timers

Pump control systems use PLCs to regulate liquid flow in industrial processes, water treatment, and building services. These systems manage pump operation, protect equipment, optimize energy use, and maintain process parameters.

This walkthrough demonstrates practical implementation using Delta WPLSoft / ISPSoft / DIADesigner-AX and Timers programming.

System Requirements:

A typical Pump Control implementation includes:

Input Devices (Sensors):
1. Pressure transmitters for discharge and suction pressure: Critical for monitoring system state
2. Flow meters (magnetic, ultrasonic, or vortex): Critical for monitoring system state
3. Level transmitters for tank or wet well level: Critical for monitoring system state
4. Temperature sensors for bearing and motor monitoring: Critical for monitoring system state
5. Vibration sensors for predictive maintenance: Critical for monitoring system state

Output Devices (Actuators):
1. Variable frequency drives (VFDs) for speed control: Primary control output
2. Motor starters (DOL or soft start): Supporting control function
3. Control valves for flow regulation: Supporting control function
4. Isolation valves (actuated for remote operation): Supporting control function
5. Check valves to prevent backflow: Supporting control function

Control Equipment:

  • Centrifugal pumps for high flow applications

  • Positive displacement pumps for metering

  • Submersible pumps for wet well applications

  • Booster pump systems for pressure maintenance


Control Strategies for Pump Control:

  • constant: Maintain fixed speed or output

  • pressure: PID control to maintain discharge pressure setpoint

  • flow: PID control to maintain flow rate setpoint

  • level: Control tank/wet well level within band


Implementation Steps:

Step 1: Characterize pump curve and system curve

In WPLSoft / ISPSoft / DIADesigner-AX, characterize pump curve and system curve.

Step 2: Size VFD for application (constant torque vs. variable torque)

In WPLSoft / ISPSoft / DIADesigner-AX, size vfd for application (constant torque vs. variable torque).

Step 3: Implement primary control loop (pressure, flow, or level)

In WPLSoft / ISPSoft / DIADesigner-AX, implement primary control loop (pressure, flow, or level).

Step 4: Add pump protection logic (minimum flow, temperature, seal)

In WPLSoft / ISPSoft / DIADesigner-AX, add pump protection logic (minimum flow, temperature, seal).

Step 5: Program lead/lag sequencing with alternation

In WPLSoft / ISPSoft / DIADesigner-AX, program lead/lag sequencing with alternation.

Step 6: Implement soft start/stop ramps for smooth operation

In WPLSoft / ISPSoft / DIADesigner-AX, implement soft start/stop ramps for smooth operation.


Delta Function Design:

WPLSoft P-labels are the primary reuse mechanism on DVP. ISPSoft instance-based function blocks enable proper IEC-style reuse on AH / AS, with library import / export. Delta-supplied motion, communication, and PID FBs ship with the IDE.

Common Challenges and Solutions:

1. Preventing cavitation at low suction pressure

  • Solution: Timers addresses this through Simple to implement.


2. Managing minimum flow requirements

  • Solution: Timers addresses this through Highly reliable.


3. Coordinating VFD speed with system pressure

  • Solution: Timers addresses this through Essential for most applications.


4. Handling pump cycling with varying demand

  • Solution: Timers addresses this through Easy to troubleshoot.


Safety Considerations:

  • Dry run protection using flow or level monitoring

  • Overtemperature protection for motor and bearings

  • Overload protection through current monitoring

  • Vibration trips for mechanical failure detection

  • Emergency stop with proper system depressurization


Performance Metrics:

  • Task and I/O timing: Record minimum, average, and maximum values under a defined test load

  • Accuracy: Define an acceptable tolerance and compare it with calibrated reference measurements

  • Throughput: Count completed cycles over a fixed interval and record rejected or incomplete cycles

  • Fault response: Measure detection, safe-state, alarm, and recovery behavior for each test case

  • Resource use: Record memory, communications load, and diagnostic-buffer behavior

Delta Diagnostic Tools:

WPLSoft / ISPSoft online monitor with rung-state colour,Soft-element watch table and tag watch lists,Built-in offline simulator (WPLSoft and ISPSoft),Modbus RTU / TCP communication wizard with diagnostic counters,DIADesigner-AX integrated diagnostics for AX motion projects,M1000-range system flags for CPU and comms diagnostics,Delta distributor support and loaner CPUs in major markets,Delta IA forum and DeltaPLC community for application questions

Use the monitoring and diagnostic functions available in your WPLSoft / ISPSoft / DIADesigner-AX version, and record the software, firmware, hardware, workload, and test procedure with every result.

Delta Timers Example for Pump Control

Illustrative Timers example for Pump Control using Delta terminology. Adapt the syntax to your WPLSoft / ISPSoft / DIADesigner-AX release, compile it, and verify it in an isolated test environment before use on equipment.

// Delta WPLSoft / ISPSoft / DIADesigner-AX - Pump Control Control
// Timers Implementation for Water & Wastewater
// WPLSoft / DVP work is dominated by raw soft-element addressi

// ============================================
// Variable Declarations
// ============================================
VAR
    bEnable : BOOL := FALSE;
    bEmergencyStop : BOOL := FALSE;
    rPressuretransmitters : REAL;
    rCentrifugalpumps : REAL;
END_VAR

// ============================================
// Input Conditioning - Pressure transmitters for discharge and suction pressure
// ============================================
// Standard input processing
IF rPressuretransmitters > 0.0 THEN
    bEnable := TRUE;
END_IF;

// ============================================
// Safety Interlock - Dry run protection using flow or level monitoring
// ============================================
IF bEmergencyStop THEN
    rCentrifugalpumps := 0.0;
    bEnable := FALSE;
END_IF;

// ============================================
// Main Pump Control Control Logic
// ============================================
IF bEnable AND NOT bEmergencyStop THEN
    // Pump control systems use PLCs to regulate liquid flow in ind
    rCentrifugalpumps := rPressuretransmitters * 1.0; (* Illustrative scaling only *)

    // Process monitoring
    // Add specific control logic here
ELSE
    rCentrifugalpumps := 0.0;
END_IF;

Code Explanation:

  • 1.Timers structure organized for a Pump Control training example
  • 2.Input conditioning handles Pressure transmitters for discharge and suction pressure signals
  • 3.Safety interlock ensures Dry run protection using flow or level monitoring always takes priority
  • 4.Main control implements Pump control systems use PLCs to regulat
  • 5.Adapt the scan-cycle assumptions to the selected DVP-ES2 / EX2 / SS2 (compact entry) task configuration and verify them by measurement

Best Practices

  • Follow Delta naming conventions: WPLSoft / DVP work is dominated by raw soft-element addressing (X0, Y0, M100, D1
  • Delta function design: WPLSoft P-labels are the primary reuse mechanism on DVP. ISPSoft instance-based
  • Data organization: DVP has no structured data blocks — D / register banks are documented by range.
  • Timers: Use constants or parameters for preset times - avoid hardcoded values
  • Timers: Add timer status to HMI for operator visibility
  • Timers: Implement timeout timers for fault detection in sequences
  • Pump Control: Use PID with derivative on PV for pressure control
  • Pump Control: Implement soft start ramps even with VFD (200-500ms)
  • Pump Control: Add flow proving before considering pump operational
  • Debug with WPLSoft / ISPSoft / DIADesigner-AX: Run the offline simulator with forced inputs before live download
  • Safety: Dry run protection using flow or level monitoring
  • Use a compatible simulator or isolated test rig to test Pump Control logic before deployment

Common Pitfalls to Avoid

  • Timers: Using TON when TOF behavior is needed or vice versa
  • Timers: Not resetting RTO timers, causing unexpected timeout
  • Timers: Timer preset too short relative to scan time causing missed timing
  • Delta common error: Battery-low alarm on legacy DVP-EH causing D-range data loss
  • Pump Control: Preventing cavitation at low suction pressure
  • Pump Control: Managing minimum flow requirements
  • Neglecting to validate Pressure transmitters for discharge and suction pressure leads to control errors
  • Insufficient comments make Timers programs unmaintainable over time

Related Certifications

🏆Delta IA Academy distributor-led engineer training
🏆WPLSoft / ISPSoft course completions
🏆DIADesigner-AX motion specialist tracks for AX-series engineers

Applying Timers to Pump Control using Delta WPLSoft / ISPSoft / DIADesigner-AX requires understanding the platform, the process, and the project's acceptance criteria. This guide has covered implementation structure, an illustrative code example, verification practices, and common pitfalls for a intermediate Pump Control exercise.

Use the practices outlined here to create a design that can be reviewed and tested. Define performance targets in the project requirements and confirm them with repeatable measurements.

Next Steps:

1. Check Sources: Read the current WPLSoft / ISPSoft / DIADesigner-AX help, controller manual, release notes, and relevant standards
2. Practice Safely: Adapt the example in a simulator or isolated training setup
3. Review: Have the I/O map, state behavior, faults, and recovery steps reviewed
4. Test: Record normal, boundary, fault, restart, and communications test results

Timers Foundation:

PLC timers measure elapsed time to implement delays, pulses, and timed operations. They use accumulated time compared against preset values to control...

Project duration depends on scope, reviews, hardware availability, software and firmware versions, testing, commissioning, and site constraints. Remember: Use PID with derivative on PV for pressure control

For further learning, explore related topics including Alarm delays, Wastewater treatment, and Delta platform-specific features for Pump Control optimization.