1.0.0-alpha.2 • Published 5 months ago

ts-ballistics v1.0.0-alpha.2

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

BallisticCalculator

ISC library for small arms ballistic calculations (JavaScript ES6+)

NPM version License

Table of contents

Installation

npm i js-ballistics@latest

Usage

Link to your HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your HTML Page</title>
</head>
<body>

<script type="module">

    // Link via CDN you want to use unpkg or jsdelivr
    import * as JSBallisics from 'https://unpkg.com/js-ballistics@latest/src/index.js';
    // import * as JSBallisics from 'https://cdn.jsdelivr.net/npm/js-ballistics@latest/src/index.js';

    // Make all exports available globally
    Object.assign(window, JSBallisics);

    // Create a Measure object (example)
    const exampleMeasure = window.UNew.Meter(10);
    const exampleMeasureFoot = exampleMeasure.to(Unit.Foot);
    const exampleValueFoot = exampleMeasure.In(Unit.Foot);

    // Log the Measure object to the console
    console.log('Example Measure in meter:', `${exampleMeasure}`);
    console.log('Example Conversion meter to foot:', `${exampleMeasureFoot}`);
    console.log('Example Conversion meter to number in foot:', `${exampleValueFoot}`);

</script>

</body>
</html>

About project

The library provides trajectory calculation for projectiles including for various applications, including air rifles, bows, firearms, artillery and so on.

3DF model that is used in this calculator is rooted in old C sources of version 2 of the public version of JBM calculator, ported to C#, optimized, fixed and extended with elements described in Litz's "Applied Ballistics" book and from the friendly project of Alexandre Trofimov and then ported to Go.

Now it's also ported to python3 and expanded to support calculation trajectory by multiple ballistics coefficients and using custom drag data (such as Doppler radar data ©Lapua, etc.)

Next stage is porting it to JavaScript

The online version of Go documentation is located here

C# version of the package is located here

The online version of C# API documentation is located here

The online version of Python module is located here

Go documentation can be obtained using godoc tool.

The current status of the project is ALPHA version.

RISK NOTICE

The library performs very limited simulation of a complex physical process and so it performs a lot of approximations. Therefore, the calculation results MUST NOT be considered as completely and reliably reflecting actual behavior or characteristics of projectiles. While these results may be used for educational purpose, they must NOT be considered as reliable for the areas where incorrect calculation may cause making a wrong decision, financial harm, or can put a human life at risk.

THE CODE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.

1.0.0-alpha.3

5 months ago

1.0.0-alpha.2

5 months ago

1.0.0-alpha.1

5 months ago

1.0.0-alpha.0

5 months ago