npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dc-battery-testing

v1.1.1

Published

Calculations for Battery Testing

Readme

DC-Battery-Testing

Calculations package for DC battery electricians.

npm install --save dc-battery-testing

API

to place in code use the following require statement:

  var DCTesting = require('dc-battery-testing');

for ES6 modules:

  import DCTesting from 'dc-battery-testing';

Time-Adjustment Method

  import { timeAdjust } from 'dc-battery-testing';

Returns the Corrected Capacity as a percentage.

timeAdjust([actual discharge time],[rated disharge time],temperature)

actual discharge time:

Type: Array or Number.

If Number, the value passed in will be the amount of hours. Minutes and seconds will default to 0.

  timeAdjust(2); //2 hours for actual discharge time

If Array, three elements can be passed in (hours,minutes,seconds). Hour defaults to 1; Minutes and Seconds default to 0.

  timeAdjust([1,15,30]) //1 hours, 15 minutes, and 30 seconds

rated discharge time:

Type: Array or Number

If Number, the value passed in will be the amount of hours. Minutes and seconds will default to 0.

  timeAdjust(1,2); //2 hours for rated discharge time

If Array, three elements can be passed in (hours,minutes,seconds). Hour defaults to 1; Minutes and Seconds default to 0.

  timeAdjust(1,[1,12,20]) //1 hours, 12 minutes, and 20 seconds

temperature:

Type: Number

Average Electrolyte Temperature. Defaults to 77.

  timeAdjust(1,1,57) //57°F

Load Correction

  import { loadCorrection } from 'dc-battery-testing';

Returns the Corrected Load Capacity in Amps DC.

loadCorrection([standard temperature],[published discharge current],temperature)

standard temperature:

Type: Number

Selects correction factor chart based off battery manufacturer. Only takes 68 and 77 as viable arguments. Defaults to 77.

  loadCorrection(68); //uses the 68 KT(correction factor) chart

published discharge current:

Type: Number

Current published by manufacturer in amperes. Defaults to 250.

  loadCorrection(77,255); //255 amps

temperature:

Type: Number

Average Electrolyte Temperature. Defaults to 77.

  loadCorrection(77,255,96); //96°F

Float Voltage

  import { floatVoltage } from 'dc-battery-testing';

Returns the Temperature Corrected Float Voltage in Volts DC(VDC).

floatVoltage([recommended cell voltage],cells,temperature)

recommended cell voltage:

Type: Number

Recommended Cell Voltage published by battery manufacturer at 77°F. Required.

  floatVoltage(2.25,/*cells*/,/*temperature*/); //2.25 volts per cell

cells:

Type: Number

number of cells in series. Required.

  floatVoltage(/*rec cell voltage*/,230,/*temperature*/); //230 cells

temperature:

Type: Number

Average observed electrolyte or negative post temperature. Required.

  floatVoltage(/*rec cell voltage*/,/*cells*/,70); //70°F