Last change
on this file since 4190 was
3605,
checked in by lguez, 5 years ago
|
Merge revisions 3427:3600 of trunk into branch Ocean_skin
|
-
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
|
File size:
863 bytes
|
Rev | Line | |
---|
[1632] | 1 | MODULE integrd_mod |
---|
| 2 | |
---|
| 3 | REAL,POINTER,SAVE :: p(:,:) |
---|
| 4 | REAL,POINTER,SAVE :: deltap(:,:) |
---|
| 5 | REAL,POINTER,SAVE :: ps(:) |
---|
| 6 | |
---|
| 7 | |
---|
| 8 | |
---|
| 9 | CONTAINS |
---|
| 10 | |
---|
| 11 | SUBROUTINE integrd_allocate |
---|
| 12 | USE bands |
---|
[1810] | 13 | USE allocate_field_mod |
---|
[1823] | 14 | USE parallel_lmdz |
---|
[1810] | 15 | USE dimensions_mod |
---|
[1632] | 16 | USE advect_new_mod,ONLY : advect_new_allocate |
---|
| 17 | IMPLICIT NONE |
---|
| 18 | TYPE(distrib),POINTER :: d |
---|
| 19 | |
---|
| 20 | |
---|
| 21 | d=>distrib_caldyn |
---|
| 22 | CALL allocate_u(p,llmp1,d) |
---|
| 23 | CALL allocate_u(deltap,llm,d) |
---|
| 24 | CALL allocate_u(ps,d) |
---|
[3605] | 25 | ps(:)=0 |
---|
[1632] | 26 | |
---|
| 27 | |
---|
| 28 | END SUBROUTINE integrd_allocate |
---|
| 29 | |
---|
| 30 | SUBROUTINE integrd_switch_caldyn(dist) |
---|
[1810] | 31 | USE allocate_field_mod |
---|
[1632] | 32 | USE bands |
---|
[1823] | 33 | USE parallel_lmdz |
---|
[1632] | 34 | IMPLICIT NONE |
---|
| 35 | TYPE(distrib),INTENT(IN) :: dist |
---|
| 36 | |
---|
| 37 | CALL switch_u(p,distrib_caldyn,dist) |
---|
| 38 | CALL switch_u(deltap,distrib_caldyn,dist) |
---|
| 39 | CALL switch_u(ps,distrib_caldyn,dist) |
---|
| 40 | |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | END SUBROUTINE integrd_switch_caldyn |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | |
---|
| 47 | END MODULE integrd_mod |
---|
Note: See
TracBrowser
for help on using the repository browser.