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,wday_ini,pday,ptime,ptimestep, & |
---|
12 | pplev,pplay,pphi,pu, pv, pt, pq, pw, & |
---|
13 | #ifdef NEWPHYS |
---|
14 | wtnom, & |
---|
15 | #endif |
---|
16 | pdu, pdv, pdt, pdq, pdpsrf, tracerdyn, & |
---|
17 | wtsurf,wtsoil,wemis,wq2,wqsurf,wco2ice, & |
---|
18 | #ifdef NEWPHYS |
---|
19 | wisoil, wdsoil, & |
---|
20 | #endif |
---|
21 | wecri_phys_sec, & |
---|
22 | output_tab2d, output_tab3d, flag_LES) |
---|
23 | |
---|
24 | CASE(2) |
---|
25 | CALL d2_meso_physiq (ngrid,nlayer,nq, & |
---|
26 | firstcall,lastcall,wday_ini,pday,ptime,ptimestep, & |
---|
27 | pplev,pplay,pphi,pu, pv, pt, pq, pw, & |
---|
28 | #ifdef NEWPHYS |
---|
29 | wtnom, & |
---|
30 | #endif |
---|
31 | pdu, pdv, pdt, pdq, pdpsrf, tracerdyn, & |
---|
32 | wtsurf,wtsoil,wemis,wq2,wqsurf,wco2ice, & |
---|
33 | #ifdef NEWPHYS |
---|
34 | wisoil, wdsoil, & |
---|
35 | #endif |
---|
36 | wecri_phys_sec, & |
---|
37 | output_tab2d, output_tab3d, flag_LES) |
---|
38 | |
---|
39 | CASE(3) |
---|
40 | CALL d3_meso_physiq (ngrid,nlayer,nq, & |
---|
41 | firstcall,lastcall,wday_ini,pday,ptime,ptimestep, & |
---|
42 | pplev,pplay,pphi,pu, pv, pt, pq, pw, & |
---|
43 | #ifdef NEWPHYS |
---|
44 | wtnom, & |
---|
45 | #endif |
---|
46 | pdu, pdv, pdt, pdq, pdpsrf, tracerdyn, & |
---|
47 | wtsurf,wtsoil,wemis,wq2,wqsurf,wco2ice, & |
---|
48 | #ifdef NEWPHYS |
---|
49 | wisoil, wdsoil, & |
---|
50 | #endif |
---|
51 | wecri_phys_sec, & |
---|
52 | output_tab2d, output_tab3d, flag_LES) |
---|
53 | |
---|
54 | |
---|
55 | ! CASE(3:) |
---|
56 | ! print *, '** Mars ** Not supported ...' |
---|
57 | ! stop |
---|
58 | ! |
---|
59 | END SELECT |
---|
60 | |
---|
61 | |
---|