| 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 inifis(ngridmx,nlayer, & |
|---|
| 11 | wday_ini,wdaysec, & |
|---|
| 12 | wappel_phys, & |
|---|
| 13 | lat_vec,lon_vec,aire_vec,1/reradius,g,r_d,cp, & |
|---|
| 14 | nqmx,dt, & |
|---|
| 15 | womeg,wmugaz, & |
|---|
| 16 | wyear_day,wperiheli,waphelie,wperi_day,wobliquit, & |
|---|
| 17 | wz0,wemin_turb,wlmixmin, & |
|---|
| 18 | wemissiv,wemissiceN,wemissiceS,walbediceN,walbediceS, & |
|---|
| 19 | wiceradiusN,wiceradiusS,wdtemisiceN,wdtemisiceS, & |
|---|
| 20 | #ifdef NEWPHYS |
|---|
| 21 | walbedodat, wphisfi, wvolcapa, wz0tab, & |
|---|
| 22 | #else |
|---|
| 23 | walbedodat, winertiedat, wphisfi, & |
|---|
| 24 | #endif |
|---|
| 25 | wzmea,wzstd,wzsig,wzgam,wzthe, & |
|---|
| 26 | wtheta, wpsi) |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | CASE(2) |
|---|
| 30 | CALL d2_inifis(ngridmx,nlayer, & |
|---|
| 31 | wday_ini,wdaysec, & |
|---|
| 32 | wappel_phys, & |
|---|
| 33 | lat_vec,lon_vec,aire_vec,1/reradius,g,r_d,cp, & |
|---|
| 34 | nqmx,dt, & |
|---|
| 35 | womeg,wmugaz, & |
|---|
| 36 | wyear_day,wperiheli,waphelie,wperi_day,wobliquit, & |
|---|
| 37 | wz0,wemin_turb,wlmixmin, & |
|---|
| 38 | wemissiv,wemissiceN,wemissiceS,walbediceN,walbediceS, & |
|---|
| 39 | wiceradiusN,wiceradiusS,wdtemisiceN,wdtemisiceS, & |
|---|
| 40 | #ifdef NEWPHYS |
|---|
| 41 | walbedodat, wphisfi, wvolcapa, wz0tab, & |
|---|
| 42 | #else |
|---|
| 43 | walbedodat, winertiedat, wphisfi, & |
|---|
| 44 | #endif |
|---|
| 45 | wzmea,wzstd,wzsig,wzgam,wzthe, & |
|---|
| 46 | wtheta, wpsi) |
|---|
| 47 | |
|---|
| 48 | ! |
|---|
| 49 | ! CASE(3:) |
|---|
| 50 | ! print *, '** Mars ** Not supported ...' |
|---|
| 51 | ! stop |
|---|
| 52 | ! |
|---|
| 53 | END SELECT |
|---|