source: trunk/LMDZ.PLUTO.old/libf/phypluto/surfini.F @ 3436

Last change on this file since 3436 was 3175, checked in by emillour, 11 months ago

Pluto PCM:
Add the old Pluto LMDZ for reference (required prior step to making
an LMDZ.PLUTO using the same framework as the other physics packages).
TB+EM

File size: 1.1 KB
Line 
1      SUBROUTINE surfini(ngrid,psolaralb)
2      IMPLICIT NONE
3c=======================================================================
4c
5c   creation des calottes pour l'etat initial
6c
7c=======================================================================
8c-----------------------------------------------------------------------
9c   Declarations:
10c   -------------
11#include "dimensions.h"
12#include "dimphys.h"
13#include "surfdat.h"
14#include "callkeys.h"
15#include "tracer.h"
16c
17      INTEGER ngrid,ig
18      REAL psolaralb(ngrid)
19
20      EXTERNAL ISMIN,ISMAX
21      INTEGER ISMIN,ISMAX
22c
23
24      DO ig=1,ngrid
25         psolaralb(ig)=albedodat(ig)
26      ENDDO
27
28
29
30      PRINT*,'surfini: minimum des donnees albedo',
31     s     albedodat(ISMIN(ngrid,albedodat,1))
32      PRINT*,'surfini: maximum des donnees albedo',
33     s     albedodat(ISMAX(ngrid,albedodat,1))
34
35      PRINT*,'surfini: minimum des donnees albedo',
36     s     psolaralb(ISMIN(ngrid,psolaralb,1))
37      PRINT*,'surfini: maximum des donnees albedo',
38     s     psolaralb(ISMAX(ngrid,psolaralb,1))
39
40      RETURN
41      END
Note: See TracBrowser for help on using the repository browser.