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