|
Last change
on this file since 5864 was
5112,
checked in by abarral, 16 months ago
|
|
Rename modules in phy_common from *_mod > lmdz_*
|
|
File size:
685 bytes
|
| Line | |
|---|
| 1 | ! $Id$ |
|---|
| 2 | MODULE inifis_mod |
|---|
| 3 | |
|---|
| 4 | CONTAINS |
|---|
| 5 | |
|---|
| 6 | SUBROUTINE inifis(prad, pg, pr, pcpp) |
|---|
| 7 | ! Initialize some physical constants and settings |
|---|
| 8 | USE lmdz_init_print_control, 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 | |
|---|
| 28 | END MODULE inifis_mod |
|---|
Note: See
TracBrowser
for help on using the repository browser.