Last change
on this file since 3265 was
793,
checked in by Laurent Fairhead, 17 years ago
|
Modifications suite a la transformation des fichiers include pour
qu'ils soient compatibles a la fois au format fixe et au format libre
Un bon nombre de fichiers *.inc du coup disparaissent
LF
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
736 bytes
|
Rev | Line | |
---|
[776] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
[765] | 4 | MODULE write_field_phy |
---|
| 5 | |
---|
| 6 | CONTAINS |
---|
| 7 | |
---|
| 8 | SUBROUTINE WriteField_phy(name,Field,ll) |
---|
| 9 | USE dimphy |
---|
[776] | 10 | USE mod_phys_lmdz_para |
---|
| 11 | USE mod_grid_phy_lmdz |
---|
[765] | 12 | USE Write_Field |
---|
[776] | 13 | |
---|
[765] | 14 | IMPLICIT NONE |
---|
[793] | 15 | include 'dimensions.h' |
---|
| 16 | include 'paramet.h' |
---|
[765] | 17 | |
---|
| 18 | character(len=*) :: name |
---|
| 19 | INTEGER :: ll |
---|
| 20 | real, dimension(klon_omp,ll) :: Field |
---|
| 21 | real,save,allocatable :: Field_tmp(:,:) |
---|
[776] | 22 | real, dimension(klon_glo,ll):: New_Field |
---|
[765] | 23 | real, dimension(iim,jjp1,ll):: Field_2d |
---|
| 24 | |
---|
[776] | 25 | CALL Gather(Field,New_Field) |
---|
| 26 | !$OMP MASTER |
---|
| 27 | IF (is_mpi_root) THEN |
---|
| 28 | CALL Grid1Dto2D_glo(New_Field,Field_2D) |
---|
[765] | 29 | CALL WriteField(name,Field_2d) |
---|
| 30 | ENDIF |
---|
[776] | 31 | !$OMP END MASTER |
---|
| 32 | |
---|
[765] | 33 | |
---|
| 34 | END SUBROUTINE WriteField_phy |
---|
| 35 | |
---|
| 36 | END MODULE write_field_phy |
---|
Note: See
TracBrowser
for help on using the repository browser.