/[lmdze]/trunk/libf/phylmd/conf_interface.f90
ViewVC logotype

Contents of /trunk/libf/phylmd/conf_interface.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30 - (show annotations)
Thu Apr 1 09:07:28 2010 UTC (14 years, 1 month ago) by guez
File size: 692 byte(s)
Imported Source files of the external library "IOIPSL_Lionel" into
"libf/IOIPSL".

Split "cray.f90" into "scopy.f90" and "ssum.f90".

Rewrote "leapfrog" in order to have a clearer algorithmic structure.

1 subroutine conf_interface(tau_calv)
2
3 ! From phylmd/conf_phys.F90,v 1.7 2005/07/05 07:21:23
4
5 use getincom
6 implicit none
7
8 ! Configuration de l'interace atm/surf
9 !
10 ! tau_calv: temps de relaxation pour la fonte des glaciers
11
12 REAL :: tau_calv
13
14 ! Local
15 integer :: numout = 6
16 !
17 !Config Key = tau_calv
18 !Config Desc = temps de relaxation pour fonte des glaciers en jours
19 !Config Def = 1 an
20 !Config Help =
21 !
22 tau_calv = 360.*10.
23 call getin('tau_calv',tau_calv)
24
25 write(numout,*)' *********'
26 WRITE(numout,*)' Configuration de l''interface atm/surfaces : '
27 WRITE(numout,*)' tau_calv = ',tau_calv
28 return
29
30 end subroutine conf_interface

  ViewVC Help
Powered by ViewVC 1.1.21