Showing posts with label supply. Show all posts
Showing posts with label supply. Show all posts

Monday, 1 June 2020

Mikroe Buck 5 Click with PSoC5 VDAC

Summary
This post examines alternate means for driving the MikroElektronica Buck 5 Click hardware. First, the onboard digital Potentiometer was rewired in a new configuration and second the Potentiometer was replaced with Cypress PSoC.

Buck 5 Click - Courtesy MikroElektronica
Buck 5 Click - Courtesy MikroElektronica

Buck 5 Click with Digital Potentiometer and PSoC5
MikroElektronica's Buck 5 Click (MIKROE-3100) hardware presented itself as a cost-effective and off the shelf unit for testing the MAX17506 DC-DC Converter. The Buck 5 Click was designed primarily for use with other MikroElektronica hardware. The input voltage range of the Maxim buck converter (4.5V to 60 V DC) is not fully utilised on the Buck 5 Click (5V to 30 V DC). In the same manner, the output voltage appears capped at 20 V DC maximum. Even with the voltage limits the output range of the hardware was able to be tweaked. 


Wiring a Cypress CY8CKIT-059 prototyping kit to drive the Buck 5 Click required three connections for the SPI and two for power. The Buck 5 Click schematics indicated the board logic operated with 3.3 V DC however, the board was powered from 5 V DC. The supply range of the MAX5401 digital Potentiometer (pot) was 2.7 V to 5.5 V DC.

To control the digital pot, a PSoC Creator application using an SPI Master component was created


SPIM_WriteTxData(Buck5_Dig_Pot_Val);
while (0u == (SPIM_ReadTxStatus() & SPIM_STS_SPI_DONE)) 
{ }



The subsequent step of increasing the output voltage range of the Buck 5 Click was accomplished although the configuration of feedback resistor network (R8) and digital pot (U2) for the DC-DC converter (MAX17506) needed to switch places. The digital pot operating voltage was the reason for the change. The pot wiper was connected directly into the feedback pin of the MAX17506. Below is a working board with modifications.


Buck 5 Click Modified with Increased Output Range
Buck 5 Click Modified with Increased Output Range



The output voltage range of the modified board was approximately 4V to 18 V DC. The digital pot, with 255 positions, provided output voltage steps of 55 mV.

When applying power to the digital pot, the default setting is the middle position which may not be ideal in all instances. To control the behaviour of the buck regulator on power-up, a connection from the PSoC to the Enable line of the Buck 5 Click was used. A pull-up resistor (R4) was removed from the board to prevent the Buck 5 Click from starting when power was applied

Buck 5 Click with Cypress PSOC5 VADC, No Digital Potentiometer
Other solutions for adjusting the output voltage of a DC-DC converter, through control of the feedback pin, use external PWM or DAC sources.

The Cypress PSoC provides control of DC-DC converters either through PWM (Trim and Margin component) or a DAC (Current or Voltage component). This post used the PSoC VDAC8 component which provided 255 steps. For additional resolution the dithered VDAC component with 4096 steps could be used.

For calculating the output voltage for VDAC solution, Maxim published a notable tutorial deriving the output equation shown below from first principles.

VOUT = VREF(1 + (R1/R2)) + (VREF - VDAC) (R1/R3)                        Eq (1)

For connection of the VDAC to the feedback loop of the DC-DC Converter, one additional resistor (R3) was required.


DC-DC Converter Output Voltage Control Using a DAC
DC-DC Converter Output Voltage Control Using a DAC

A spreadsheet was used to implement Equation (1) which allowed the three unknown resistor values to be manually changed and the output voltage range of the DC-DC converter observed.

DC-DC Converter Vout Spreadsheet Calculations
DC-DC Converter Vout Spreadsheet Calculations

Equation (2) was used to ensure that the maximum current seen by the PSoC (DAC) was less than 25 mA.

i3 = (VREF - VDAC)/R3                       Eq. (2)

Quadrature Encoder
A quadrature encoder (Bourns PEC11R) was added to the design to allow for manual voltage adjustments. The QuadDec component was used to convert the encoder AB lines. The QuadDec returned value was limited to between 0 and 255. The reading from the QuadDec was then used to adjust the output of the VDAC component.


PSoC Creator Top Design
The project required the QuadDec, DAC and OpAmp components as shown below.


PSoC Creator Project Top Design
PSoC Creator Project Top Design


The calculations in Excel used a voltage range from 0.1 V to 4.08 V which was the option selected in the VDAC component.

VDAC Component Settings
VDAC Component Settings

While not essential, an OpAmp follower was added to the design.

OpAmp Component Settings
OpAmp Component Settings

To maintain 255 positions the QuadDec component was changed from the default 8 bit to 16 bits.

QuadDec Component Settings
QuadDec Component Settings

The remaining signals that are shown on the PSoC Creator project page (Top Design) were related to the DC-DC converter (PSU_Enable) and the on-board switch (Switch1). Voltage ramps were generated in code on start-up then Switch1 was pressed.

To facilitate testing of the encoder, a UART component was added to the project.

PSoC Creator Pin Mapping
Pin mapping for the design is shown below.



PSoC Project Pin Mapping
PSoC Project Pin Mapping


PSoC Creator Code
Listed below is an extract of some quick and grubby code used for testing the Mikroe with the PSoC Creator prototyping board.



/**
* @brief Main init and update VDAC based on quadrature encoder value
*/
int main()
{
  uint16_6 Encoder_Count, Encoder_Count_last = 0;
CyGlobalIntEnable();
QuadDec_Start();
UART_Start();
Opamp_Start();
VDAC_Start();
CyDelay(2000); /* Time to stabalise */
PSU_Enable_Write(true); /* Switch DC DC On */
pulse_on_switch1();
for(;;)
{
Encoder_Count = QuadDec_GetCounter();
if (Encoder_Count != Encoder_Count_Last)
{
if ((Encoder_Count <= MAX_ENC) && (Encoder_Count >= MIN_ENC))
{
write_to_uart(Encoder_Count);
VDAC_SetValue(Encoder_Count);
}
else if (Encoder_Count > MAX_ENC)
{
Encoder_Count = MAX_ENC;
QuadDec_SetCounter(MAX_ENC);
}
else if (Encoder_Count < MIN_ENC)
{
Encoder_Count = MIN_ENC;
QuadDec_SetCounter(MIN_ENC);
}
Encoder_Count_Last = Encoder_Count;
}
}
}

The functionality of the test code was to read the Quadrature Decoder, ensures the value read was within the range, then write the value to the VDAC.


Hardware Setup
Shown in the image below is the hardware setup which consisted of the Buck 5 Click, PSoC board and the rotary encoder.



Buck 5 Click with Increased Output and PSoC VDAC
Buck 5 Click with Increased Output and PSoC VDAC

Output Voltage Range and Regulation
The calculated output voltage range was for 1.62 V to 20.33 V DC and the measured range was 2.39 V to 20.42 V DC.

Rudimentary load tests were conducted with a resistive load driven by the Buck 5 Click. Tests indicated a 0.25 % voltage regulation with low loads (1W) and better than 0.1 % with higher loads (65 W). The DC-DC converter used in the Buck 5 Click (MAX17506) has a capability of 5 A. The full load current was not load tested.

Output Voltage Adjustment using PSoC
To change the output voltage of the DC-DC converter without the encoder, the value written to the VDAC was controlled in software. When the switch located on the Cypress CY8CKIT-059 prototyping kit was pressed on power-up, the code generated several pulse types.

Buck 5 Click Output Voltage Waveform from PSoC VDAC
Buck 5 Click Output Voltage Waveform driven from PSoC VDAC

The capture above shows the Buck 5 Click output voltage ramp up and down with a 220 R resistive load.

Final Thoughts
The MikroElektronica Buck 5 Click was a reliable hardware module which allowed a Cypress PSoC to be interfaced for testing. Using a DAC to adjust the output voltage provided an alternative method to the on-board Potentiometer. The option to use PWM control for voltage adjustment was not reviewed in this post although this method should be considered as another solution.


Downloads
PSoC Creator 4.3 Power Supply Project (PSU) Project.

PSoC Creator 4.3 PSU Project
PSoC Creator 4.3 PSU Project

Saturday, 13 October 2018

Rigol DP832 Output Capacitor Limitations

Summary
This blog details a hindrance with the Rigol DP832 power supply outputs when used for purposes such as characterising digital inputs, circuit reaction times or external power supply transient performance to name handful.


Rigol DP832
Rigol DP832

DP832 'Gotcha'
The Rigol DP832 is a good mid-range power supply sporting an easy to use interface to suit the hobbyist and options such as remote communications and power cycling to cater for some professional applications. For engineers familiar with power supply interruption testing, as defined in EN61496-1, the Rigol DP832 can be setup, with some fiddling, to assist with compliance tests.

It was the power cycling feature on the DP832 that was to be used for testing the PLC input design, however after the first few power cycles some unexpected measurements were observed. The configurable PLC input section circuit is shown below.


PLC Input Section
PLC Input Section

The power On captures shown below illustrate the difference between using the Rigol On/Off power button and the second capture shown the response using an external switch with the Rigol power button set to On.


Power ON Delay using Rigol Power Button
Power ON Delay using Rigol Power Button

Power ON Delay using External Switch - Rigol Power ON
Power ON Delay using External Switch - Rigol Power ON

The delay in powering the circuit Off was also easily visible on the scope.



Power OFF Delay using Rigol Power Button
Power OFF Delay using Rigol Power Button

Power OFF Delay using External Switch - Rigol Power ON
Power OFF Delay using External Switch - Rigol Power ON

Output Capacitance
Looking at the captures from the scope this appeared to be output capacitance. I recalled that Dave Jones from EEVBlog had torn down the DP832 several years ago; the output capacitors where found in EEVBlog #511; credit and many thanks to Dave Jones saving me the teardown.

The output capacitors appeared to be 1000uF electrolytics, which would explain the delayed switching performance.


EEVBlog #511 DP832 Output Capacitors - 2 Channels
EEVBlog #511 DP832 Output Capacitors - 2 Channels

EEVBlog #511 DP832 Output Capacitors - 1 Channel
EEVBlog #511 DP832 Output Capacitors - 1 Channel

Output Solution
As a temporary solution to testing, a relay was added. Channel one performed the relay coil switching and Channel two was left powered with the output connected to a Normally Open relay contact. The switching response was did not have the effect of the capacitor charge time although some relay contact bounce was evident.

Sunday, 15 October 2017

CUI INC PDQ15 Remote Control Pin

Summary
This blog illustrates the measurement of the remote control pin available on the CUI INC® PDQ15 series of brick power supplies. Similar tests were conducted in a previous post with two MeanWell supplies.
CUI INC PDQ15 power supply
CUI INC PDQ15 power supply

Control Pin
From the CUI INC PDQ datasheet (page 2), the voltages required to drive the ON/OFF pin are listed as greater than 3.5V for ON and less than 1.2V for OFF.


Remote control pin specifications
Remote control pin specification
Control Pin Input Voltage Measurements
To verify the operation of the control pin on the CUI INC PDQ converter, two outputs of a Rigol DP832 linear regulator power supply were used in the same manner as a previous blog which used MeanWell converters.


Rigol DP832
Rigol DP832
An initial test was conducted to determine the ON / OFF voltage hysteresis for the converter. Turn ON was 8.7V DC and turn OFF 8.0V DC. Tests were conducted with no input on the remote control pin (floating).

For the second test, one channel of the power supply provided the input supply to the DC to DC converter and the second channel on the supply provided the supply for the control pin. Both outputs of the power supply had a common 0V connection.


PDQ bench testing
PDQ bench testing
The supply input voltage was increased, from the threshold ON voltage and the control pin threshold voltages determined and recorded.

Measurements for the CUI INC PDQ15 is listed below.

PDQ Measurements for supply vs control pin voltage
PDQ Measurements for supply vs control pin voltage

A visual representation of the above data is shown below.



PDQ Graphed measurements
PDQ Graphed measurements
The graph shown above is scaled to show the small variation in voltages required to activate the converter using the remote control pin.

Note On Temperature
The cold body temperature of a PDQ15 converter was measured at 19.2C. With a 24VDC input supply connected, no load, the PDQ15 has a quiescent power of just less than 2W. After 30 min the body of the supply had raised to 57.1C.

Summary
For this test of the characteristic response of the PDQ15 remote control pin, the measurements showed that it was similar to the MeanWell SKM series. The remote control ON/OFF voltages were flat after 14VDC although the voltages were not similar to the MeanWell SKM or SDM converters.

Thursday, 21 September 2017

MeanWell SDM SKM Remote Control Pin

Summary
This blog highlights the need for verification and validation testing when changing or updating electronic parts. In particular all facets of the device should be reviewed or tested whenever possible.

Background
In a commercial arena, new parts or those parts earmarked for an upgrade, are usually checked on paper for suitability. The time spent on the comparison between parts usually depends on the parts complexity although specifics can be inadvertently overlooked from time to time. After the new part is sanctioned for use it is commonly bench tested or bolted onto an existing design to validate operation before being included in a new hardware (PCB) design.

For this blog two MeanWell products are referenced, the SDM and SKM series of DC to DC converters.
 MeanWell SDM30-24S5
MeanWell SKM15
Operational Characteristics
Comparing the datasheets of the MeanWell SKM to the SDM series, the SKM is technically the better device. After all, the SKM is newer technology and it performs accordingly during bench tests.

One technical aspect of these converters which can be overlooked is the hardware difference between the inputs used to switch the converter ON and OFF. For the SDM this input is called an ON/OFF pin and for the SKM it is called RC for Remote Control.


SDM converter block diagram
SDM converter block diagram
The block diagram shown above illustrates in block diagram format how the control pin for the SDM converter enables or disables the PWM portion of the circuit. A similar block diagram for the SKM was not available at the time of writing this blog.

Control Pin Difference
From the MeanWell SDM datasheet, the voltages required to drive the ON/OFF pin are shown as 5.5V ON and 2.5V maximum for OFF.


SDM ON/OFF control voltages
SDM ON/OFF control voltages
The MeanWell SKM datasheet lists the voltages required to drive the ON/OFF pin as greater than 2.5V ON and 0.5V maximum for OFF.

SKM ON/OFF control voltages
SKM ON/OFF control voltages
This information is clear enough, well vague enough! Other factors also need to be considered depending on the method used to drive the control pin. These could include, type of input, input voltage range, current required to drive the input, absolute maximum ratings and response times / delays where applicable.

For this blog only the input voltage range of the control pin will be looked at in detail.

Control Pin Input Voltage Measurements
To verify the operation of the control pin on the MeanWell SKM and SDM converters, two outputs of a Rigol DP832 linear regulator power supply were used. 


Rigol DP832
Rigol DP832
An initial test was conducted to determine the ON / OFF voltage hysteresis for SDM model, 100mV, and the SKM model which had a hysteresis of 2000mV. Tests were conducted with no input on the remote control pin, floating.


MeanWell SDM, SKM supply voltage hysteresis
MeanWell SDM, SKM supply voltage hysteresis
For the second test, one channel of the power supply provided the input supply to the DC to DC converter and the second channel on the power supply provided the supply for the control pin. Both outputs of the power supply had a common 0V connection.

This is one method of testing the MeanWell supplies. There are other methods that could be used to drive the control pin although a voltage derived from the actual input supply appeared to be a common method for controlling this input pin.


SDM bench testing
SDM bench testing
The supply input voltage was increased, from the threshold ON voltage and the control pin threshold voltages determined and recorded.


SKM bench testing
SKM bench testing
Measurements for the two MeanWell supplies are shown below.

SDM Measurements for supply vs control pin voltage
SDM Measurements for supply vs control pin voltage

SKM Measurements for supply vs control pin voltage
SKM Measurements for supply vs control pin voltage
A visual representation of the above data is shown below.


SDM Graphed measurements
SDM Graphed measurements

SKM Graphed measurements
SKM Graphed measurements
Summary
When migrating between MeanWell SDM and SKM DC DC converters, reviewing the design should be performed as a matter of good design principle. 

For designs using the ON/OFF control pin, the drive circuit should be reviewed for a suitable drive level under a range of operating conditions.

At a supply voltage of 24VDC, the SDM series start operating at 3.4VDC whereas the SKM starts operating significantly lower at 1.2VDC. This of course sounds like a better hardware feature. The SKM supply could be driven from designs using lower circuit voltages, however narrowing the operating gap between 0V common and supply has its own drawbacks. Noise immunity, ESD or inadequate earthing can each introduce issues into the design if not considered carefully at design time.