Follow our illustrated blog on Embedded Software Architecture

How to build a hybrid solar/wind energy harvester?

Investigating the Wind-turbine to dump load switching – part 3, other alternatives

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)

An alternative relay we have not looked at, until now, is the latching or bistable relay. This kind of relay will only use power when changing state from open to close or from close to open. Also, it keeps its last state.
Those properties could be interesting, because one of the problems we face in the preliminary design of the energy harvester, is the power usage of the external relay. One has to spend energy in order to connect the energy harvester device – via the contactor or non-latching relay – to the wind-turbine input. A latching relay could possibly solve that problem, but at a cost, as you can read further down this article.

Properties of latching and non-latching relays

Latching and non-latching describe the mechanism used to actuate/de-actuate electromechanical coils.

For non-latching relays, constant power is required to maintain the ‘ON’ position. Hence, when removing power from a non-latching or failsafe relay, the contacts will return to their normal state ‘OFF’ position. (Normally Open NO will disconnect and Normally Closed NC will connect).

To change the state of a bistable relay, a short pulse is sent to the set or reset lines on the relay. The period this pulse is active should be long enough to effectively energize the coils to change state, but not too long because then there is danger of burning the coils. The big difference between a non-latching and a bistable relay – as already mentioned – is that removing power from a bistable relay will not affect the present state of the contacts: ON remains ON and OFF remains OFF.

When to use

According to the knowledge-base on this website (and shamelessly copied to our site although the context at the origin is different), Latching or bistable relays should be used when an application requires one or more of the following:

  • The last state of the relay prior to power removal must be maintained.
  • Thermal stability (less heat) through power management.
  • Minimal power draw while maintaining state.
  • Better repeatability because they ensure more repeatable contact closures with regards to insertion loss over the life of the relay.

Non-latching relays should be used when an application requires one or more of the following:

  • Cost is a factor. In general, latching relays will be less expensive than their latching equivalents.
  • Relays need to be set to their normal position when power is removed: In normal operation, power removal is planned and handled elegantly. However, when power loss is not planned, it may be desirable, considering safety, to force the state to its NC or disconnect state.

Select a bistable or non-latching relay

Thus, now we would then have to investigate the effect with regard to safety when choosing a bistable relay: What happens if the energy harvester device misbehaves? The latching relay will not automatically disconnect the wind turbine from the device. Murphy’s law states that this will happen (possibly even) at the worst possible time (during a storm). At that time, power will surge into the energy harvester potentially destroying the device and or the battery bank.

Another problem is the high amperage and voltage specifications we defined for this external relay, make it very difficult to select a latching relay as an economical viable solution.

At mouser.com, we found a possible candidate, but the delivery time is way too long. At Ebay, there is also a latching relay rated 80A with a coil voltage of 12V.

Experiment

If you want to experiment with a latching relay board yourself, you can find a kit here.

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Share

MOSFETS

IMAG0202c

In this article we are going to give a short overview of mosfets and more specifically power mosfets. Surfing the web, we found this great YouTube video (Developed under Teaching Innovation Project 10-170 of Universidad de Granada in Spain) covering … [Continue reading]

Investigating the Wind-turbine to dump load switching – part 2, going the PWM route

DC_coil_voltage_spec_example

In part 1, we talked about the 'contactor'. Relays also use power, and in this particular case, the relay coil could draw up to 2 watts according to its specification. In order to save power, there are a couple of things we can do. Using PWM is one … [Continue reading]

Mutexes and semaphores: the FreeRTOS implementation

FreeRTOS mutex and semaphore

Let us start with an interesting quote from the FreeRTOS web site: Binary semaphores are used for both mutual exclusion and synchronisation purposes. The quote clearly makes a distinction between the two use cases we saw in part 1: mutual … [Continue reading]

Investigating the Wind-turbine to dump load switching – part 1

IMAG0227

The (most obvious?) switching solution would be a high-power relay. In a previous article, we already did an experiment with a Solid State relay (and we will continue to do so). Now we will look further into the 'contactor'. The 'kit' we ordered  … [Continue reading]

User level spin locks revisited

This article was written - quite a few years ago - but recent activities made it worthwhile to take another look at it,  revise the content and give it an overhaul to alleviate and clear up some of the inaccuracies. It starts with a quote and … [Continue reading]

STM32F100: why and how to use the internal reference voltage for ADC?

stm32f100 3.3 Vref

One of our main development boards is the  STM32VLDISCOVERY. Its st-link is an in-circuit debugger and programmer, and makes development for prototyping fast and easy. The board has an 'interesting' property though: its reference voltage is … [Continue reading]

Mutexes and semaphores: two concepts for two different use cases

mutex concept

Introduction There has always been (and there still is) confusion on terminology and usage of mutexes and semaphores. The main reason is that the term 'semaphore' has a different meaning depending on the context. We need to distinguish two contexts … [Continue reading]

The energy harvester is ready for iteration 2

Simple Platform Abstraction 2

Iteration 1 overview Iteration 1 was mainly about extending our software platform which we call Simple Platform Abstraction. This platform enables us to easily experiment with new hardware (sensors, mosfets etc.) and will be the fundament of our … [Continue reading]

PMD1 sensor board: our first hardware component

sensor board

We are pleased to announce the creation of our very first hardware component: the PMD1 sensor board. We won't let you wait, here is a beautiful image: Now, let us start with the global picture. The sensor board is part of Power Management … [Continue reading]