units.h 1.82 KB
Newer Older
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
/*
 * units.h - some conversion definitions
 *
 * Copyright (C) 1992-2011 jean-pierre.charras
 * Copyright (C) 1992-2011 Kicad Developers, see change_log.txt for contributors.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this package; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#ifndef __UNITS_H
#define __UNITS_H

27
#include <config.h>
28
#include <cmath>
29
#include <units_scales.h>
30

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#ifndef HAVE_CMATH_ASINH
inline double asinh( double x )
{
    if( x==0.0 ) return sqrt( -1.0 );

    return log( x+sqrt(x*x+1) );
}
#endif

#ifndef HAVE_CMATH_ACOSH
inline double acosh( double x )
{
    // must be x>=1, if not return Nan (Not a Number)
    if( !(x>=1.0) ) return sqrt( -1.0 );

    // return only the positive result (as sqrt does).
    return log( x+sqrt(x*x-1.0) );
}
49 50
#endif

51 52 53 54 55 56 57 58 59 60
#ifndef HAVE_CMATH_ATANH
inline double atanh( double x )
{
    // must be x>-1, x<1, if not return Nan (Not a Number)
    if( !(x>-1.0 && x<1.0) ) return sqrt( -1.0 );

    return log( (1.0+x)/(1.0-x) ) / 2.0;
}
#endif

61 62 63 64 65
#define MU0  12.566370614e-7          // magnetic constant
#define C0   299792458.0              // speed of light in vacuum
#define ZF0  376.73031346958504364963 // wave resistance in vacuum

#endif /* __UNITS_H */