search for: batt_volt_high

Displaying 4 results from an estimated 4 matches for "batt_volt_high".

2014 Feb 19
3
Logic problem in NUT with upscode2 driver
Hi All, I have what is probably a 12 year old (or older) Compaq R3000 UPS plugged into a FreeBSD 8 system running NUT version 2.6.5 This UPS contains a total of 16 batteries in 2 banks of 8, each battery is 6 volts and the bank produces 50 volts. The UPS monitors battery voltage and the battery charger in the UPS works like this. For about 2 days it will apply a charge/float/topping
2014 Nov 03
0
RFC: new variable battery.status (was: [PATCH] upscode2: Report ABM Status)
...y charge, but they usually aren't */ + * applicable to battery charge, but they usually aren't, cause high is a UPS internal and/or battery + * ABSOLUTE MAXIMUM RATING, not reported as "nominal" value, the upscode2 spec maybe wrong. */ else if (batt_volt_low > 0 && batt_volt_high > 0 && batt_volt > 0) { - if (batt_volt > batt_volt_high) { + if (batt_volt > batt_volt_rs) { chg=100; } else if (batt_volt < batt_volt_low) { @@ -1399,7 +1401,7 @@ } else { chg = (batt_volt - batt_volt_low) / - (batt_volt_high - batt_volt_low);...
2012 Feb 13
3
RFC: new variable battery.status (was: [PATCH] upscode2: Report ABM Status)
2012/2/6 thomas schorpp <thomas.schorpp at googlemail.com>: > Hi, Hi Thomas, > I want the driver report the battery status from ABM charging controllers > -patch attached- : thanks for your patch. since it introduces a new variable (battery.status.abm), I prefer to step back and think to something useful more widely. thus, I'm thinking about a generic
2014 Nov 04
2
RFC: new variable battery.status
...sually aren't */ > + * applicable to battery charge, but they usually aren't, cause high is > a UPS internal and/or battery > + * ABSOLUTE MAXIMUM RATING, not reported as "nominal" value, the > upscode2 spec maybe wrong. */ > else if (batt_volt_low > 0 && batt_volt_high > 0 && batt_volt > 0) { > - if (batt_volt > batt_volt_high) { > + if (batt_volt > batt_volt_rs) { > chg=100; > } > else if (batt_volt < batt_volt_low) { > @@ -1399,7 +1401,7 @@ > } > else { > chg = (batt_volt - batt_volt_low) / > - (batt_volt_hig...