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 |
---|
3 | c======================================================================= |
---|
4 | c |
---|
5 | c creation des calottes pour l'etat initial |
---|
6 | c |
---|
7 | c======================================================================= |
---|
8 | c----------------------------------------------------------------------- |
---|
9 | c Declarations: |
---|
10 | c ------------- |
---|
11 | #include "dimensions.h" |
---|
12 | #include "dimphys.h" |
---|
13 | #include "surfdat.h" |
---|
14 | #include "callkeys.h" |
---|
15 | #include "tracer.h" |
---|
16 | c |
---|
17 | INTEGER ngrid,ig |
---|
18 | REAL psolaralb(ngrid) |
---|
19 | |
---|
20 | EXTERNAL ISMIN,ISMAX |
---|
21 | INTEGER ISMIN,ISMAX |
---|
22 | c |
---|
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.