| 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 | ! print *, '** Mars ** Not supported ...' |
|---|
| 41 | ! stop |
|---|
| 42 | ! |
|---|
| 43 | END SELECT |
|---|
| 44 | |
|---|
| 45 | |
|---|