1 | ! |
---|
2 | ! part of the module_lmd_driver program |
---|
3 | ! that is (number of domains)-dependent |
---|
4 | ! |
---|
5 | |
---|
6 | |
---|
7 | SELECT CASE (id) |
---|
8 | |
---|
9 | CASE(1) |
---|
10 | CALL meso_physiq (ngrid,nlayer,nq, & |
---|
11 | firstcall,lastcall,pday,ptime,ptimestep, & |
---|
12 | pplev,pplay,pphi,pu, pv, pt, pq, pw, & |
---|
13 | pdu, pdv, pdt, pdq, pdpsrf, tracerdyn, & |
---|
14 | wtsurf,wtsoil,wemis,wq2,wqsurf,wco2ice, & |
---|
15 | #ifdef NEWPHYS |
---|
16 | wtnom, wisoil, wdsoil, & |
---|
17 | #endif |
---|
18 | wday_ini, & |
---|
19 | output_tab2d, output_tab3d, flag_LES) |
---|
20 | |
---|
21 | CASE(2) |
---|
22 | CALL d2_meso_physiq (ngrid,nlayer,nq, & |
---|
23 | firstcall,lastcall,pday,ptime,ptimestep, & |
---|
24 | pplev,pplay,pphi,pu, pv, pt, pq, pw, & |
---|
25 | pdu, pdv, pdt, pdq, pdpsrf, tracerdyn, & |
---|
26 | wtsurf,wtsoil,wemis,wq2,wqsurf,wco2ice, & |
---|
27 | #ifdef NEWPHYS |
---|
28 | wtnom, wisoil, wdsoil, & |
---|
29 | #endif |
---|
30 | wday_ini, & |
---|
31 | output_tab2d, output_tab3d, flag_LES) |
---|
32 | |
---|
33 | CASE(3) |
---|
34 | CALL meso_physiq (ngrid,nlayer,nq, & |
---|
35 | firstcall,lastcall,pday,ptime,ptimestep, & |
---|
36 | pplev,pplay,pphi,pu, pv, pt, pq, pw, & |
---|
37 | pdu, pdv, pdt, pdq, pdpsrf, tracerdyn, & |
---|
38 | wtsurf,wtsoil,wemis,wq2,wqsurf,wco2ice, & |
---|
39 | #ifdef NEWPHYS |
---|
40 | wtnom, wisoil, wdsoil, & |
---|
41 | #endif |
---|
42 | wday_ini, & |
---|
43 | output_tab2d, output_tab3d, flag_LES) |
---|
44 | |
---|
45 | ! CASE(3:) |
---|
46 | ! print *, '** Mars ** Not supported ...' |
---|
47 | ! stop |
---|
48 | ! |
---|
49 | END SELECT |
---|
50 | |
---|
51 | |
---|