source: LMDZ6/trunk/libf/phylmdiso/dyn1d/lmdz1d.F90 @ 3927

Last change on this file since 3927 was 3927, checked in by Laurent Fairhead, 3 years ago

Initial import of the physics wih isotopes from Camille Risi
CR

File size: 514 bytes
Line 
1!
2! $Id: lmdz1d.F90 3541 2019-07-03 12:40:01Z fhourdin $
3!
4!#ifdef CPP_1D
5!#include "../dyn3d/mod_const_mpi.F90"
6!#include "../dyn3d_common/control_mod.F90"
7!#include "../dyn3d_common/infotrac.F90"
8!#include "../dyn3d_common/disvert.F90"
9
10
11   PROGRAM lmdz1d
12
13   USE ioipsl, only: getin
14
15   INTEGER forcing_type
16
17   CALL getin('forcing_type',forcing_type)
18
19   IF (forcing_type==1000) THEN
20           CALL scm
21   ELSE
22           CALL old_lmdz1d
23   ENDIF
24
25   END
26
27
28#include "1DUTILS.h"
29#include "1Dconv.h"
30
31!#endif
32
33
Note: See TracBrowser for help on using the repository browser.