source: trunk/ICOSA_LMDZ/src/wrapper.f90 @ 3484

Last change on this file since 3484 was 1696, checked in by emillour, 8 years ago

Introducing an interface between Dynamico and LMDZ.COMMON physics packages:
directory ICOSA_LMDZ (and related ARCH directory). Compiling with Dynamico
requires having directories ICOSAGCM (dynamico dynamical core) and
IOIPSL alongside ICOSA_LMDZ.
Still quite experimental (and so far only tested on Ada with phystd physics)
EM

File size: 332 bytes
Line 
1SUBROUTINE initialize_external_physics
2  USE interface_icosa_lmdz_mod, ONLY: initialize_physics
3  IMPLICIT NONE
4 
5    CALL initialize_physics 
6
7END SUBROUTINE initialize_external_physics
8
9
10SUBROUTINE external_physics
11  USE interface_icosa_lmdz_mod, ONLY: physics
12  IMPLICIT NONE
13 
14  CALL physics
15
16END SUBROUTINE external_physics
Note: See TracBrowser for help on using the repository browser.