
Search Results
Search this site
143 results found with an empty search
Services (22)
- Digital Twin model
A digital twin is a virtual replica of a physical object, system, or process, that uses real-time data to mirror its behavior and characteristics. It's essentially a digital counterpart that provides a window into the real-world object's performance and state.
- Electrical - Low Voltage
MEICA Consulting Engineers Ltd offers engineering consultancy services for Low Voltage Systems.
- Renewables
MEICA Consulting is a trusted consultant for Energy and Renewables, offering cutting-edge solutions in Combined Heat & Power (CHP) systems and Solar energy. Our CHP systems integrate efficiently with building operations, providing both heat and electricity while reducing carbon footprints. Our Solar energy solutions are designed for both residential and commercial applications, promoting sustainability and long-term savings. We deliver tailored solutions, exceed expectations, and build lasting relationships. Partner with us for comprehensive consultancy that drives success and growth. Experience the MEICA Consulting difference.
Blog Posts (58)
- Demystifying Harmonic Suppression on Variable Speed Drives
Variable Speed Drives (VSDs), also known as Variable Frequency Drives (VFDs), are essential components in modern industrial automation. By adjusting motor speeds to match actual load demands, VSDs significantly reduce energy consumption and improve process control. However, these benefits come with a hidden technical cost: the generation of electrical harmonics. Understanding what harmonics are and how to suppress them is critical for safeguarding your electrical infrastructure and maintaining power quality. What are Harmonics and Why Do VSDs Create Them? In a perfect electrical system, alternating current (AC) flows as a smooth sine wave at a fundamental frequency of 50 Hz or 60 Hz. A VSD, however, is a non-linear load. It works by converting incoming AC power to Direct Current (DC) via a rectifier bridge, storing it in a DC bus capacitor, and then inverting it back into a simulated AC output to control the motor. Because the rectifier bridge only draws current from the line at the peaks of the voltage wave, it pulls power in rapid, non-linear spikes. This choppy current draw distorts the smooth incoming voltage sine wave. This distortion introduces unwanted frequencies that are integer multiples of the fundamental frequency (such as the 5th harmonic at 250 Hz, or the 7th at 350 Hz). The Hidden Dangers of Unsuppressed Harmonics Leaving harmonic distortion unchecked within an industrial plant can lead to severe operational issues. High levels of Total Harmonic Distortion (THD) cause several problems: Overheating Components: Transformers, cables, and motors run hotter due to increased eddy current losses, which shortens their operational lifespan. Nuisance Tripping: Circuit breakers and protective relays may trip unexpectedly due to distorted waveforms. Control Errors: Sensitive electronic equipment, such as PLCs, sensors, and communication networks, can experience data corruption and intermittent faults caused by electrical noise. Advanced Methods for Harmonic Suppression 1. Passive Mitigation: AC Line Reactors and DC Chokes The simplest and most cost-effective method is installing an AC line reactor upstream of the VSD, or utilizing a drive with a built-in DC link choke. These are inductors that oppose rapid changes in current. By smoothing out the sharp current spikes drawn by the drive's rectifier, they flatten the current profile and typically reduce current distortion to around 30% to 40% THD. 2. Multi-Pulse Rectifiers For high-horsepower applications, standard 6-pulse drives are often replaced with 12-pulse or 18-pulse configurations. These systems use specialized phase-shifting transformers to split the incoming power. The rectifier circuits are configured so that the harmonic currents created by one bridge naturally cancel out the harmonics generated by the other, drastically reducing overall distortion. 3. Active Front End (AFE) Drives Active Front End technology replaces traditional passive diodes in the drive rectifier with controlled transistors (IGBTs). The AFE actively controls the input current, forcing it to mimic a clean, sinusoidal wave that stays perfectly in phase with the voltage. AFE drives are highly efficient and can keep current THD below 5%. 4. Active Harmonic Filters (AHF) Instead of modifying the drive itself, an Active Harmonic Filter can be installed parallel to the main electrical bus. The AHF monitors the network's harmonic distortion in real time. It then injects equal and opposite harmonic currents into the line, dynamically cancelling out the distortion created by multiple VSDs on the network.
- Securing and Optimising OPC UA: From PLC to SCADA and Cloud
Modern industrial automation relies heavily on Open Platform Communications Unified Architecture (OPC UA). Unlike legacy OPC Classic, which was bound to Microsoft DCOM technology, OPC UA is platform-independent, highly scalable, and secure by design. It serves as the primary bridge connecting Programmable Logic Controllers (PLCs) on the factory floor to Supervisory Control and Data Acquisition (SCADA) systems, and ultimately to cloud-based enterprise platforms. Implementing a robust OPC UA architecture requires careful attention to server configuration, cryptographic security, data mapping, and bandwidth management. Step-by-Step Guide to Setting Up an OPC UA Server Activate the Firmware Server License: Access your hardware configuration software (e.g., TIA Portal or Studio 5000) and enable the embedded OPC UA server capability within the CPU properties. Define the Network Endpoint: Configure the specific IP address and network interface the server will use. Set the standard OPC UA port (typically opc.tcp://[IP_Address]:4840). Select Security Policies: Disable the "None" security policy for production environments. Enable modern, secure endpoints such as Basic256Sha256 or Aes128_Sha256_RsaOaep, and set the message mode to SignAndEncrypt Expose the Tag Namespace: Selectively flag PLC data blocks, tags, and User Defined Types (UDTs) as "Accessible from OPC UA." Avoid exposing raw internal memory tags to minimize the attack surface. Compile and Download: Download the updated hardware configuration and data structures directly to the physical PLC Certificate-Based Authentication Between PLC and SCADA Username and password authentication alone cannot protect critical infrastructure from sophisticated man-in-the-middle (MitM) attacks. OPC UA addresses this by enforcing asymmetric cryptography via X.509 digital certificates to establish a mutual trust relationship between the SCADA client and the PLC server. When a SCADA client attempts to connect to the PLC for the first time, an asymmetric handshake occurs. The SCADA client presents its public certificate to the PLC. Because this certificate is not yet recognized by the controller, the PLC automatically rejects the connection attempt and places the certificate into an "Untrusted" or "Rejected" holding queue. To establish trust, an automation engineer must log into the PLC’s diagnostic server or engineering software, review the rejected certificate's unique cryptographic thumbprint, and manually move it into the PLC’s "Trusted Clients" store. Simultaneously, the engineer must export the PLC's own server certificate and import it into the SCADA client’s "Trusted Servers" folder. Once mutual trust is established, the devices use their private keys to sign and encrypt all subsequent data traffic. Mapping PLC Data Tags to Cloud Databases To unlock the benefits of Industrial IoT (IIoT), predictive analytics, and enterprise resource planning, local PLC tags must flow securely into cloud environments like AWS, Microsoft Azure, or private SQL/NoSQL databases Direct cloud database writing from an on-premises OPC UA namespace requires an intermediate edge gateway or an IoT-enabled OPC UA client. The edge software browses the PLC’s hierarchical information model, tracking specific data nodes. It maps these binary or structured PLC elements into standard developer-friendly data formats, most commonly JSON (JavaScript Object Notation). For example, a raw temperature register is transformed into a structured telemetry payload containing a specific asset ID, a precise ISO timestamp, the engineering unit, and the numeric value. This JSON payload is then securely pushed upstream to cloud ingestion hubs using transport layer security. Bandwidth Optimization Strategies for Remote Telemetry Transmitting hundreds of thousands of factory tags over cellular networks, satellite links, or constrained wide-area networks (WANs) can lead to data loss and high operational costs. To optimize remote telemetry bandwidth, engineers employ three main strategies: Report-by-Exception (Rbe) / Monitored Items: Instead of forcing the SCADA system or cloud client to continuously poll the PLC at fixed intervals (e.g., every 100 milliseconds), configure tags as "Monitored Items." The PLC server will only transmit data over the network when a value actually changes. Deadband Tuning: For analog signals that fluctuate constantly due to process noise (such as a pressure transmitter hovering between 4.12 and 4.14 bar), apply an absolute or percentage deadband. The OPC UA server ignores minor fluctuations and only sends an update when the value crosses the defined threshold. OPC UA PubSub via MQTT: For massive scale, migrate from the traditional client-server architecture to the newer OPC UA PubSub (Publish-Subscribe) model over MQTT. This wraps structured OPC UA data into highly compact, lightweight binary wrappers, significantly reducing network overhead.
- Key Roles of EEPROM in a PLC
EEPROM (Electrically Erasable Programmable Read-Only Memory) is critical in a PLC because it provides reliable, non-volatile storage that permanently retains the control program and machine settings even during a complete power failure. Unlike volatile RAM, EEPROM does not require a backup battery to keep its data safe. It's main function is: Failsafe Program Backup: If the PLC loses power and its main chassis battery fails or drains, the volatile RAM wipes clean. The PLC can automatically reload its entire ladder logic program from the EEPROM submodule upon reboot, preventing permanent logic loss. Byte-Level Modification: Unlike flash memory, which requires erasing massive "blocks" of data to change information, EEPROM is addressable byte by byte. This lets control engineers make precise, "on-the-fly" program updates or fine-tune logic parameters without stopping the entire chip. Recipe and Calibration Storage: Industrial machines require persistent operational settings. EEPROM safely holds data like calibration offsets, device IDs, MAC addresses, network configurations, and step recipes. No Specialized Erasure Hardware: Older EPROM submodules required removal from the machine and 20+ minutes under an external ultraviolet (UV) light box to clear data. EEPROM can be erased and overwritten digitally in seconds right through standard PLC programming software like Rockwell RSLogix. While EEPROM is robust, it has a finite lifespan of roughly 100,000 to 1,000,000 write cycles. Because of this, it is highly critical that programmers never map rapidly updating values (like high-speed millisecond timers or counter accumulators) directly to EEPROM memory registers. Doing so will burn out the chip's internal transistors within weeks.
Other Pages (63)
- CURRENT OPEN POSITIONS | MEICA Consulting
Attracting, developing and retaining the best talent is key to our success. We’re looking for a new generation of talent to bring their perspective and new ways of thinking to our business. In return, you will gain a unique experience, develop and advance your skills and enjoy a generous salary and comprehensive benefits package. CURRENT OPEN POSITIONS We have no active open positions at the moment. We are always eager to connect with exceptional talent for future opportunities. Send us your resume for the future to us at hr@meicaeng.com BACK JOIN US Phone +353 59 9135361 Email hr@meicaeng.com Social Media First Name Last Name Email Message HOME Send Thanks for submitting!
- FUNCTIONAL SAFETY | MEICA Consulting
FUNCTIONAL SAFETY FUNCTIONAL SAFETY Functional Safety refers to the part of a system's overall safety that relies on automatic protection mechanisms operating correctly, especially in response to inputs or failures. It focuses on ensuring systems function safely, even in the face of electrical or electronic malfunctions. This includes preventing hazards and reducing risks to protect people, plant, and the environment BACK Process Hazard Analysis Our team have the experience to undertake a Process Hazard Analysis using the Hazard and Operability Study, (HAZOP), methodology. Our team has undertaken HAZOP work in Water and Energy Projects holding the roles of: Chairperson Scribe Operations Specialist Designer. Project Manager. SIL Determination MEICA Consulting Engineers Ltd have the technical expertise to conduct Safety Integrity Levels (SILs) Determination Studies based on Risk Assessment as per the IEC 61508 standard. The SIL risk is defined by examining the systematic capability, architecture constraints, and the probability of dangerous failure. The standard works to prevent avoidable mistakes and errors throughout the entire lifecycle. Hazard Identification (HAZID) study MEICA Consulting Engineers Ltd have the technical expertise to conduct Hazard Identification (HAZID) studies. A Hazard Identification (HAZID) study is a risk assessment technique used to systematically identify and evaluate potential hazards associated with a process, system, or operation. It's a multidisciplinary team workshop focused on uncovering possible dangers early in the project lifecycle, before detailed engineering design. The goal is to identify hazards, assess their potential consequences, and recommend preventative measures to minimize risks ATEX / DSEAR Assessments Our experienced team carry out ATEX / DSEAR Assessments for a number of clients across the Water industry in Ireland. Our consultancy services can highlight potential risks and work with you to ensure the safety of your business and your team. We have extensive experience using the Uisce Eireann ATEX Assessment Methodology We recognise that each client has a unique set of requirements and it is important to us to meet and exceed your expectations for your organisation. Risk Management & Layer of Protection Analysis MEICA Consulting Engineers Ltd have the technical expertise to undertake Layer of Protection Analysis, (LOPA) as well as Quantitative Risk Assessment (QRA). We also can undertake Risk Management studies using tools such as the BowTie Analysis.
- Renewables - Solar | MEICA Consulting
RENEWABLES - SOLAR MEICA Consulting Engineers bring the essential skills, experience, and technical expertise required to support windfarm projects, with a strong focus on electrical and environmental engineering. We work closely with key project stakeholders—including the civil design team and main contractor—to ensure the successful delivery of every project. A solar photovoltaic (PV) generation facility development will be made up of multiple rows of solar PV modules angled at 15 degrees. MEICA Consulting Engineers Ltd can provide Pre-Planning and Planning services on this type of project: PVsyst Simulation Site visits and meetings with the Local Authority. Scoping with Statutory Bodies. Undertaking co-ordination of the planning application. Preparation of the Environmental Report, Natura Impact Statement, Planning Drawings and application documents. ELECTRICAL MEICA Consulting Engineers bring the essential skills, experience, and technical expertise required to deliver electrical design solutions for medium- and high-voltage systems, including associated substations. BACK TO RENEWABLES
.png)



