Last change
on this file since 2045 was
1907,
checked in by lguez, 11 years ago
|
Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:
$ svn propget copyright libf/phylmd/physiq.F90
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory
Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
796 bytes
|
Rev | Line | |
---|
[775] | 1 | ! |
---|
| 2 | !$Header$ |
---|
| 3 | ! |
---|
[1146] | 4 | SUBROUTINE Init_Phys_lmdz(iim,jjp1,llm,nb_proc,distrib) |
---|
[775] | 5 | USE mod_phys_lmdz_para |
---|
| 6 | USE mod_grid_phy_lmdz |
---|
| 7 | USE dimphy, ONLY : Init_dimphy |
---|
[1565] | 8 | USE infotrac, ONLY : type_trac |
---|
| 9 | #ifdef REPROBUS |
---|
| 10 | USE CHEM_REP, ONLY : Init_chem_rep_phys |
---|
| 11 | #endif |
---|
| 12 | |
---|
[775] | 13 | IMPLICIT NONE |
---|
| 14 | |
---|
| 15 | INTEGER,INTENT(in) :: iim |
---|
| 16 | INTEGER,INTENT(in) :: jjp1 |
---|
| 17 | INTEGER,INTENT(in) :: llm |
---|
| 18 | INTEGER,INTENT(in) :: nb_proc |
---|
| 19 | INTEGER,INTENT(in) :: distrib(0:nb_proc-1) |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | CALL Init_grid_phy_lmdz(iim,jjp1,llm) |
---|
| 23 | CALL Init_phys_lmdz_para(iim,jjp1,nb_proc,distrib) |
---|
| 24 | !$OMP PARALLEL |
---|
[1146] | 25 | CALL Init_dimphy(klon_omp,nbp_lev) |
---|
[1565] | 26 | |
---|
| 27 | ! Initialization of Reprobus |
---|
| 28 | IF (type_trac == 'repr') THEN |
---|
| 29 | #ifdef REPROBUS |
---|
| 30 | CALL Init_chem_rep_phys(klon_omp,nbp_lev) |
---|
| 31 | #endif |
---|
| 32 | END IF |
---|
| 33 | |
---|
[775] | 34 | !$OMP END PARALLEL |
---|
| 35 | |
---|
| 36 | END SUBROUTINE Init_Phys_lmdz |
---|
Note: See
TracBrowser
for help on using the repository browser.