Last change
on this file since 5225 was
5104,
checked in by abarral, 4 months ago
|
Replace 1DUTILS.h by module lmdz_1dutils.f90
Replace 1DConv.h by module lmdz_old_1dconv.f90 (it's only used by old_* files)
Convert *.F in DUST to *.f90
|
-
Property svn:keywords set to
Id
|
File size:
286 bytes
|
Line | |
---|
1 | ! $Id: lmdz1d.F90 5104 2024-07-23 15:57:06Z abarral $ |
---|
2 | |
---|
3 | PROGRAM lmdz1d |
---|
4 | USE ioipsl, ONLY: getin |
---|
5 | USE lmdz_scm, ONLY: scm |
---|
6 | USE lmdz_old_lmdz1d, ONLY: old_lmdz1d |
---|
7 | IMPLICIT NONE |
---|
8 | |
---|
9 | INTEGER forcing_type |
---|
10 | |
---|
11 | CALL getin('forcing_type', forcing_type) |
---|
12 | |
---|
13 | IF (forcing_type==1000) THEN |
---|
14 | CALL scm |
---|
15 | ELSE |
---|
16 | CALL old_lmdz1d |
---|
17 | ENDIF |
---|
18 | END |
---|
19 | |
---|
20 | |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.