source: LMDZ5/branches/testing/libf/phydev/inifis_mod.F90 @ 2408

Last change on this file since 2408 was 2408, checked in by Laurent Fairhead, 9 years ago

Merged trunk changes r2298:2396 into testing branch

File size: 681 bytes
Line 
1! $Id: $
2MODULE inifis_mod
3
4CONTAINS
5
6  SUBROUTINE inifis(prad, pg, pr, pcpp)
7  ! Initialize some physical constants and settings
8  USE print_control_mod, ONLY: init_print_control
9  USE comcstphy, ONLY: rradius, & ! planet radius (m)
10                       rr, & ! recuced gas constant: R/molar mass of atm
11                       rg, & ! gravity
12                       rcpp  ! specific heat of the atmosphere
13  IMPLICIT NONE
14
15  REAL,INTENT(IN) :: prad, pg, pr, pcpp
16
17  ! Initialize flags lunout, prt_level, debug
18  CALL init_print_control
19
20  ! copy some fundamental parameters to physics
21  rradius=prad
22  rg=pg
23  rr=pr
24  rcpp=pcpp
25
26  END SUBROUTINE inifis
27 
28END MODULE inifis_mod
Note: See TracBrowser for help on using the repository browser.