Page 1 of 1

Meanwell LDD drivers

Posted: Mon May 27, 2013 1:26 pm
by cjrudy
Get I get the two dimming ports on my current relay box to work with LDD drivers. Their output voltage is 2-52VDC and I think the RA is 0-10VDC.

Re: Meanwell LDD drivers

Posted: Mon May 27, 2013 2:11 pm
by lnevo
The output voltage has nothing to do with the voltage on the dimming signal. You should be just fine controlling the drivers from the RA. I believe you need the analog dimming for those drivers though.

Re: Meanwell LDD drivers

Posted: Mon May 27, 2013 2:46 pm
by cjrudy
The spec sheet for the drivers says built in PWM

Re: Meanwell LDD drivers

Posted: Tue May 28, 2013 7:17 am
by cjrudy
Also will they work with the dimming expansion ?

Re: Meanwell LDD drivers

Posted: Tue May 28, 2013 7:28 am
by lnevo
Yea PWM one then...

Re: Meanwell LDD drivers

Posted: Tue May 28, 2013 8:16 am
by rimai
Looking at the spec sheet, I notice that the PWM signal needs to be 0-5VDC instead of 0-10VDC.
If you want to use this drivers, you will need to mod your relay box.
http://forum.reefangel.com/viewtopic.php?f=2&t=2980
You can also order the dimming expansion module with 0-5VDC signal. Just put it in the notes as special request.

Re: Meanwell LDD drivers

Posted: Tue May 28, 2013 3:45 pm
by cjrudy
So mod the relay box myself or order a dimming expansions module already modded for me. Got it, thanks.

Looking at the sizes of those drivers it just makes more sense to use LDD instead of ELN when building a DIY LED fixture

Re: Meanwell LDD drivers

Posted: Tue May 28, 2013 3:48 pm
by rimai
You need to provide a powerful enough DC voltage.
If you look at the size of the power supply, you will be surprised.

Re: Meanwell LDD drivers

Posted: Wed May 29, 2013 8:23 am
by cjrudy
I see what you mean, smaller LDD drivers with the additional large power supply or the slightly larger ELN drivers. Looks like either way I'm mounting something remotely so its off the LED Fixture.

Probably not worth the hassle of modding anything.

Although 6 ELN drivers is about $200 and 6 LDD drivers with two additional DC power supplies is only $100

Re: Meanwell LDD drivers

Posted: Thu May 30, 2013 12:21 am
by thekameleon
Does anyone know if these LDD drivers offer deep diming or basically being able to dim the light output to zero. Instead of the 50 to 100% that the ELN drivers seem to do.

Re: Meanwell LDD drivers

Posted: Thu May 30, 2013 5:55 am
by fatman
thekameleon wrote:Does anyone know if these LDD drivers offer deep diming or basically being able to dim the light output to zero. Instead of the 50 to 100% that the ELN drivers seem to do.
I haven't tried them, but I have been told by people that do use them that they will go right down to zero so you can dim below the usual 10% cutoff. I should have about 6 channels up this fall using them.

Fat

Re: Meanwell LDD drivers

Posted: Thu May 30, 2013 6:38 am
by cjrudy
fatman wrote:
thekameleon wrote:Does anyone know if these LDD drivers offer deep diming or basically being able to dim the light output to zero. Instead of the 50 to 100% that the ELN drivers seem to do.
I haven't tried them, but I have been told by people that do use them that they will go right down to zero so you can dim below the usual 10% cutoff. I should have about 6 channels up this fall using them.

Fat
+1

They go right to zero, the advantage of that is freeing up a at least two ports on my relay box.

Re: Meanwell LDD drivers

Posted: Thu May 30, 2013 8:16 am
by thekameleon
You say down to zero, so that applies to output as well. With my Meanwell drivers, when I apply 10% the LEDs seem to be at 50% brightness already. So with the LDD at 10% at the input will I have 10% brightness?

Re: Meanwell LDD drivers

Posted: Thu May 30, 2013 8:19 am
by rimai
That's the human eye perception to light...
You can correct it through math.
http://neuroelec.com/2011/04/led-bright ... ection-no/

Re: Meanwell LDD drivers

Posted: Thu May 30, 2013 8:20 am
by rimai

Re: Meanwell LDD drivers

Posted: Fri May 31, 2013 7:59 pm
by Rodasphoto
I have ldd drivers on a DIY build I just completed and they do dim to 0. I currently use my near uv and royal blue set around 3 or so as moon lights.

Re: Meanwell LDD drivers

Posted: Sat Jun 01, 2013 9:31 pm
by KRavEN
Here's code that take 0 to 100 percent and converts to 12bit PWM corrected luminance value. If you're using 8 bit change PwmMax to 255.

Code: Select all

int RA_PWM::getLuminanceValue(byte Percentage) {
  int PwmMax = 4095, Steps = 100;
  int value;
  float Lum, Pwm;
  Lum = ((float) Percentage / (Steps - 1)) * 100.0;

  if (Lum < 8.0) {
    Pwm = Lum / 903.3;
  }
  else {
    Pwm = pow(((Lum + 16) / 116), 3);
  }

  value = (int) round (Pwm * PwmMax);
  return value;
}

Re: Meanwell LDD drivers

Posted: Sun Jun 02, 2013 7:23 am
by KRavEN
KRavEN wrote:
Here's code that take 0 to 100 percent and converts to 12bit PWM corrected luminance value. If you're using 8 bit change PwmMax to 255.

Code: Select all

int RA_PWM::getLuminanceValue(byte Percentage) {
  int PwmMax = 4095, Steps = 100;
  int value;
  float Lum, Pwm;
  Lum = ((float) Percentage / (Steps - 1)) * 100.0;

  if (Lum < 8.0) {
    Pwm = Lum / 903.3;
  }
  else {
    Pwm = pow(((Lum + 16) / 116), 3);
  }

  value = (int) round (Pwm * PwmMax);
  return value;
}
Actually if you're looping 0 to 100 the Steps should be 101 because 0 is a step. So for 8 bit it would be:
int PwmMax = 255, Steps = 101;

And 12bit:
int PwmMax = 4095, Steps = 101;