If anyone has a burning desire to make one of these do something, the commands (at least over the serial port) seem to be the same as the Ametek / Amrel PLA series:
http://www.programmablepower.com/electronic-load/PLA/downloads/M470038-03_PROG_Manual_PLA_PLW.pdf*IDN? - get identity ("AMREL EL-1132,2.96020040")
CURR? - get current
CURR? MAX - get maximum current
CURR? MIN - get minimum current
CURR x.y / - set current
VOLT? / VOLT? MAX / VOLT? MIN / VOLT x.y - same for voltage
RES? / RES? MAX / RES? MIN / RES x.y
INP 0 / INP 1 - input off/on
INP:SHOR 0 / INP:SHOR 1 - input short off/on
MEAS:POW? / MEAS:VOLT? / MEAS:CURR? - measure power, voltage or current
MODE? - get current mode (CC = constant current)
MODE:CURR / MODE:VOLT / MODE:RES - set current/voltage/resistance mode
TRAN 0 / TRAN 1 - transient generator off/on
This should get you started

Sadly the load doesn't have constant-power mode, though constant-resistance should work as a stand-in:
15W load, 5V supply.
I = P / V = 15W / 5V = 3A
R = V / I = 5V / 3A = 1.667 Ohms
Or the shorter way:
R = V^2 / P = 5V^2 / 15W = 1.667 Ohms
And a quick check with Wolfram Alpha:
http://www.wolframalpha.com/input/?i=%285V%29+^+2+%2F+%2815W%29 
Enjoy!
-Phil