Last change
on this file since 3224 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
|
File size:
891 bytes
|
Rev | Line | |
---|
[1632] | 1 | MODULE dissip_mod |
---|
| 2 | |
---|
| 3 | |
---|
| 4 | |
---|
| 5 | CONTAINS |
---|
| 6 | |
---|
| 7 | SUBROUTINE dissip_allocate |
---|
| 8 | USE bands |
---|
[1810] | 9 | USE allocate_field_mod |
---|
[1823] | 10 | USE parallel_lmdz |
---|
[1810] | 11 | USE dimensions_mod |
---|
[1632] | 12 | USE gradiv2_mod, ONLY : gradiv2_allocate |
---|
| 13 | USE nxgraro2_mod, ONLY : nxgraro2_allocate |
---|
| 14 | USE divgrad2_mod, ONLY : divgrad2_allocate |
---|
| 15 | IMPLICIT NONE |
---|
| 16 | |
---|
| 17 | CALL gradiv2_allocate |
---|
| 18 | CALL nxgraro2_allocate |
---|
| 19 | CALL divgrad2_allocate |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | END SUBROUTINE dissip_allocate |
---|
| 23 | |
---|
| 24 | SUBROUTINE dissip_switch_dissip(dist) |
---|
[1810] | 25 | USE allocate_field_mod |
---|
[1632] | 26 | USE bands |
---|
[1823] | 27 | USE parallel_lmdz |
---|
[1632] | 28 | USE gradiv2_mod,ONLY : gradiv2_switch_dissip |
---|
| 29 | USE nxgraro2_mod,ONLY : nxgraro2_switch_dissip |
---|
| 30 | USE divgrad2_mod,ONLY : divgrad2_switch_dissip |
---|
| 31 | IMPLICIT NONE |
---|
| 32 | TYPE(distrib),INTENT(IN) :: dist |
---|
| 33 | |
---|
| 34 | CALL gradiv2_switch_dissip(dist) |
---|
| 35 | CALL nxgraro2_switch_dissip(dist) |
---|
| 36 | CALL divgrad2_switch_dissip(dist) |
---|
| 37 | |
---|
| 38 | END SUBROUTINE dissip_switch_dissip |
---|
| 39 | |
---|
| 40 | END MODULE dissip_mod |
---|
Note: See
TracBrowser
for help on using the repository browser.