source: LMDZ6/trunk/libf/phylmd/cosp/congvec.h @ 3981

Last change on this file since 3981 was 2428, checked in by idelkadi, 8 years ago

Mise a jour du simulateur COSP (passage de la version v3.2 a la version v1.4) :

  • mise a jour des sources pour ISCCP, CALIPSO et PARASOL
  • prise en compte des changements de phases pour les nuages (Calipso)
  • rajout de plusieurs diagnostiques (fraction nuageuse en fonction de la temperature, ...)

http://lmdz.lmd.jussieu.fr/Members/aidelkadi/cosp

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 2.5 KB
Line 
1
2! *****************************COPYRIGHT****************************
3! (c) British Crown Copyright 2009, the Met Office.
4! All rights reserved.
5! $Revision: 23 $, $Date: 2011-03-31 15:41:37 +0200 (jeu. 31 mars 2011) $
6! $URL: http://cfmip-obs-sim.googlecode.com/svn/stable/v1.4.0/icarus-scops-4.1-bsd/congvec.f $
7! 
8! Redistribution and use in source and binary forms, with or without
9! modification, are permitted provided that the
10! following conditions are met:
11! 
12!     * Redistributions of source code must retain the above
13!       copyright  notice, this list of conditions and the following
14!       disclaimer.
15!     * Redistributions in binary form must reproduce the above
16!       copyright notice, this list of conditions and the following
17!       disclaimer in the documentation and/or other materials
18!       provided with the distribution.
19!     * Neither the name of the Met Office nor the names of its
20!       contributors may be used to endorse or promote products
21!       derived from this software without specific prior written
22!       permission.
23! 
24! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25! "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26! LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27! A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28! OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
29! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30! LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
31! DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32! THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34! OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
35! 
36! *****************************COPYRIGHT*******************************
37! *****************************COPYRIGHT*******************************
38
39      do irand = 1, npoints
40          ! Marsaglia CONG algorithm
41          seed(irand)=69069*seed(irand)+1234567
42          ! mod 32 bit overflow
43          seed(irand)=mod(seed(irand),2**30)   
44          ran(irand)=seed(irand)*0.931322574615479E-09
45      enddo
46
47      ! convert to range 0-1 (32 bit only)
48      overflow_32=i2_16*i2_16
49      if ( overflow_32 .le. huge32 ) then
50          do irand = 1, npoints
51              ran(irand)=ran(irand)+1
52              ran(irand)=(ran(irand))-int(ran(irand))
53          enddo
54      endif
55
56
Note: See TracBrowser for help on using the repository browser.