|
Last change
on this file since 4201 was
4176,
checked in by dubos, 6 years ago
|
|
simple_physics : copy code from FH
|
|
File size:
520 bytes
|
| Line | |
|---|
| 1 | module constlim |
|---|
| 2 | REAL,ALLOCATABLE,SAVE :: dgcdrag(:),cdzconst(:) |
|---|
| 3 | REAL :: ais1,ais2,cdzmin,ccdzh,cpgam,capsol |
|---|
| 4 | REAL :: cdrat,dtradia,lmixmin |
|---|
| 5 | !$OMP THREADPRIVATE(dgcdrag,cdzconst) |
|---|
| 6 | !$OMP THREADPRIVATE(ais1,ais2,cdzmin,ccdzh,cpgam,capsol) |
|---|
| 7 | !$OMP THREADPRIVATE(cdrat,dtradia,lmixmin) |
|---|
| 8 | contains |
|---|
| 9 | |
|---|
| 10 | subroutine InitConstlim |
|---|
| 11 | USE mod_phys_lmdz_para |
|---|
| 12 | USE dimphy, ONLY : klon,klev |
|---|
| 13 | implicit none |
|---|
| 14 | |
|---|
| 15 | allocate(dgcdrag(klon)) |
|---|
| 16 | allocate(cdzconst(klon)) |
|---|
| 17 | |
|---|
| 18 | end subroutine Initconstlim |
|---|
| 19 | |
|---|
| 20 | end module constlim |
|---|
Note: See
TracBrowser
for help on using the repository browser.