1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/**
* @license Apache-2.0
*
* Copyright (c) 2019 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* ## Notice
*
* The original Julia code and copyright notice are from the [Julia library]{@link https://github.com/JuliaMath/SpecialFunctions.jl/blob/master/src/ellip.jl}. The implementation has been modified for JavaScript.
*
* ```text
* The MIT License (MIT)
*
* Copyright (c) 2017 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and others:
*
* https://github.com/JuliaMath/SpecialFunctions.jl/graphs/contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE 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 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
* ```
*/
'use strict';
// MODULES //
var sqrt = require( './../../../../base/special/sqrt' );
var HALF_PI = require( '@stdlib/constants/float64/half-pi' );
var ellipk = require( './../../../../base/special/ellipk' );
var poly1 = require( './poly_p1.js' );
var poly2 = require( './poly_p2.js' );
var poly3 = require( './poly_p3.js' );
var poly4 = require( './poly_p4.js' );
var poly5 = require( './poly_p5.js' );
var poly6 = require( './poly_p6.js' );
var poly7 = require( './poly_p7.js' );
var poly8 = require( './poly_p8.js' );
var poly9 = require( './poly_p9.js' );
var poly10 = require( './poly_p10.js' );
var poly11 = require( './poly_p11.js' );
var poly12 = require( './poly_p12.js' );
// MAIN //
/**
* Computes the complete elliptic integral of the second kind.
*
* ## Method
*
* - The function computes the complete elliptic integral of the second kind in terms of parameter \\( m \\), instead of the elliptic modulus \\( k \\).
*
* ```tex
* E(m) = \int_0^{\pi/2} \sqrt{1 - m (\sin\theta)^2} d\theta
* ```
*
* - The function uses a piecewise approximation polynomial as given in Fukushima (2009).
*
* - For \\( m < 0 \\), the implementation follows Fukushima (2015).
*
* ## References
*
* - Fukushima, Toshio. 2009. "Fast computation of complete elliptic integrals and Jacobian elliptic functions." _Celestial Mechanics and Dynamical Astronomy_ 105 (4): 305. doi:[10.1007/s10569-009-9228-z](https://doi.org/10.1007/s10569-009-9228-z).
* - Fukushima, Toshio. 2015. "Precise and fast computation of complete elliptic integrals by piecewise minimax rational function approximation." _Journal of Computational and Applied Mathematics_ 282 (July): 71–76. doi:[10.1016/j.cam.2014.12.038](https://doi.org/10.1016/j.cam.2014.12.038).
*
* @param {number} m - input value
* @returns {number} evaluated elliptic integral
*
* @example
* var v = ellipe( 0.5 );
* // returns ~1.351
*
* v = ellipe( -1.0 );
* // returns ~1.910
*
* v = ellipe( 2.0 );
* // returns NaN
*
* v = ellipe( Infinity );
* // returns NaN
*
* v = ellipe( -Infinity );
* // returns NaN
*
* v = ellipe( NaN );
* // returns NaN
*/
function ellipe( m ) {
var FLG;
var kdm;
var edm;
var td;
var km;
var t;
var x;
x = m;
if ( m < 0.0 ) {
x = m / ( m - 1.0 );
FLG = true;
}
if ( x === 0.0 ) {
return HALF_PI;
}
if ( x === 1.0 ) {
return 1.0;
}
if ( x > 1.0 ) {
return NaN;
}
if ( x < 0.1 ) {
t = poly1( x - 0.05 );
} else if ( x < 0.2 ) {
t = poly2( x - 0.15 );
} else if ( x < 0.3 ) {
t = poly3( x - 0.25 );
} else if ( x < 0.4 ) {
t = poly4( x - 0.35 );
} else if ( x < 0.5 ) {
t = poly5( x - 0.45 );
} else if ( x < 0.6 ) {
t = poly6( x - 0.55 );
} else if ( x < 0.7 ) {
t = poly7( x - 0.65 );
} else if ( x < 0.8 ) {
t = poly8( x - 0.75 );
} else if ( x < 0.85 ) {
t = poly9( x - 0.825 );
} else if ( x < 0.9 ) {
t = poly10( x - 0.875 );
} else {
td = 0.95 - x;
kdm = poly11(td);
edm = poly12(td);
km = ellipk( x );
// To avoid precision loss near 1, we use Eq. 33 from Fukushima (2009):
t = ( HALF_PI + ( km * (kdm - edm) ) ) / kdm;
}
if ( FLG ) {
// Complete the transformation mentioned above for m < 0:
return t * sqrt( 1.0 - m );
}
return t;
}
// EXPORTS //
module.exports = ellipe;
|