Converts altitude in meters to pressure in msw : double « Data Type « Java






Converts altitude in meters to pressure in msw

        
/*
 *   PressureConverter.java
 *
 *   Used to convert between Pressure and altitude in meters.
 *
 *   @author Guy Wittig
 *   @version 18-Jun-2006
 *
 *   This program is part of MV-Plan
 *   Copywrite 2006 Guy Wittig
 *
 *   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.
 *
 *   The GNU General Public License can be read at http://www.gnu.org/licenses/licenses.html
 */

//package mvplan.util;

/**
 * 
 * @author Guy Wittig
 */
public class PressureConverter {

  /** Creates a new instance of pressureConverter */
  public PressureConverter() {
  }

  /**
   * Converts altitude in meters to pressure in msw
   * 
   * @return Pressure in msw or 0.0 if out of bounds.
   * @param altitude
   *            Altitude in meters
   */
  public static double altitudeToPressure(double altitude) {
    if (altitude == 0.0)
      return 10.0;
    else if (altitude > 0.0)
      return Math.pow(((44330.8 - altitude) / 4946.54), 5.25588) / 10131.0;
    else
      return 0.0;
  }
}

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Double class creates primitives that wrap themselves around data items of the double data type
2.Min and Max values of data type double
3.Java double: double is 64 bit double precision type and used when fractional precision calculation is required.
4.Use toString method of Double class to convert Double into String.
5.Use Double constructor to convert double primitive type to a Double object.
6.Convert java Double to numeric primitive data types
7.Convert Java String to Double
8.Java Double compare example
9.Create a Double object using one of the below given constructors
10.Java Double isInfinite
11.Java Double isNaN method
12.Compare Two Java double Arrays
13.Convert from double to String
14.Convert from String to double
15.Converting a String to a double type Number
16.Ternary operator on double value
17.Binary search
18.Linear Searching double Arrays
19.The Circle Area Calculator
20.A Program That Uses the Mathematical Methods of the Math Class
21.A Program That Uses the Rounding Methods of the Math Class
22. Get Double Number
23.Compute the value of 2/3 of 5Compute the value of 2/3 of 5
24.Show INFINITY and NaN
25.Double Array
26.Obtaining the integer and fractional parts
27.Get the next machine representable number after a number, moving in the direction of another number.
28.Returns the sign for double precision x
29.Gets the maximum of three double values.
30.Gets the minimum of three double values.
31.Compare two double values with Double.doubleToLongBits