00001 00006 /* LICENSE BEGIN 00007 00008 Copyright Cerfacs (Christian Page) (2015) 00009 00010 christian.page@cerfacs.fr 00011 00012 This software is a computer program whose purpose is to downscale climate 00013 scenarios using a statistical methodology based on weather regimes. 00014 00015 This software is governed by the CeCILL license under French law and 00016 abiding by the rules of distribution of free software. You can use, 00017 modify and/ or redistribute the software under the terms of the CeCILL 00018 license as circulated by CEA, CNRS and INRIA at the following URL 00019 "http://www.cecill.info". 00020 00021 As a counterpart to the access to the source code and rights to copy, 00022 modify and redistribute granted by the license, users are provided only 00023 with a limited warranty and the software's author, the holder of the 00024 economic rights, and the successive licensors have only limited 00025 liability. 00026 00027 In this respect, the user's attention is drawn to the risks associated 00028 with loading, using, modifying and/or developing or reproducing the 00029 software by the user in light of its specific status of free software, 00030 that may mean that it is complicated to manipulate, and that also 00031 therefore means that it is reserved for developers and experienced 00032 professionals having in-depth computer knowledge. Users are therefore 00033 encouraged to load and test the software's suitability as regards their 00034 requirements in conditions enabling the security of their systems and/or 00035 data to be ensured and, more generally, to use and operate it in the 00036 same conditions as regards security. 00037 00038 The fact that you are presently reading this means that you have had 00039 knowledge of the CeCILL license and that you accept its terms. 00040 00041 LICENSE END */ 00042 00043 00044 00045 00046 00047 00048 #ifndef CONSTANTS_H 00049 #define CONSTANTS_H 00050 00052 #define K_TKELVIN 273.15 00053 00054 #define K_EPSILON 0.622 00055 00056 #define K_MW 18.0160 00057 00058 #define K_MD 28.9660 00059 00060 #define K_GRAVITY 9.80665 00061 00062 #define K_RD 287.053 00063 00064 #define K_GMR K_GRAVITY/K_RD 00065 00066 #endif