[630] | 1 | ! |
---|
[1403] | 2 | ! $Id: iniconst.F 1520 2011-05-23 11:37:09Z jghattas $ |
---|
[630] | 3 | ! |
---|
| 4 | SUBROUTINE iniconst |
---|
| 5 | |
---|
[1403] | 6 | USE control_mod |
---|
[1520] | 7 | #ifdef CPP_IOIPSL |
---|
| 8 | use IOIPSL |
---|
| 9 | #else |
---|
| 10 | ! if not using IOIPSL, we still need to use (a local version of) getin |
---|
| 11 | use ioipsl_getincom |
---|
| 12 | #endif |
---|
[1403] | 13 | |
---|
[630] | 14 | IMPLICIT NONE |
---|
| 15 | c |
---|
| 16 | c P. Le Van |
---|
| 17 | c |
---|
| 18 | c----------------------------------------------------------------------- |
---|
| 19 | c Declarations: |
---|
| 20 | c ------------- |
---|
| 21 | c |
---|
| 22 | #include "dimensions.h" |
---|
| 23 | #include "paramet.h" |
---|
| 24 | #include "comconst.h" |
---|
| 25 | #include "temps.h" |
---|
| 26 | #include "comvert.h" |
---|
[1403] | 27 | #include "iniprint.h" |
---|
[630] | 28 | |
---|
[1520] | 29 | character(len=*),parameter :: modname="iniconst" |
---|
| 30 | character(len=80) :: abort_message |
---|
[630] | 31 | c |
---|
| 32 | c |
---|
| 33 | c |
---|
| 34 | c----------------------------------------------------------------------- |
---|
| 35 | c dimension des boucles: |
---|
| 36 | c ---------------------- |
---|
| 37 | |
---|
| 38 | im = iim |
---|
| 39 | jm = jjm |
---|
| 40 | lllm = llm |
---|
| 41 | imp1 = iim |
---|
| 42 | jmp1 = jjm + 1 |
---|
| 43 | lllmm1 = llm - 1 |
---|
| 44 | lllmp1 = llm + 1 |
---|
| 45 | |
---|
| 46 | c----------------------------------------------------------------------- |
---|
| 47 | |
---|
| 48 | dtphys = iphysiq * dtvr |
---|
| 49 | unsim = 1./iim |
---|
| 50 | pi = 2.*ASIN( 1. ) |
---|
| 51 | |
---|
| 52 | c----------------------------------------------------------------------- |
---|
| 53 | c |
---|
| 54 | |
---|
| 55 | r = cpp * kappa |
---|
| 56 | |
---|
[1520] | 57 | write(lunout,*) trim(modname),': R CP Kappa ',r,cpp,kappa |
---|
[630] | 58 | c |
---|
| 59 | c----------------------------------------------------------------------- |
---|
| 60 | |
---|
[1520] | 61 | ! vertical discretization: default behavior depends on planet_type flag |
---|
| 62 | if (planet_type=="earth") then |
---|
| 63 | disvert_type=1 |
---|
| 64 | else |
---|
| 65 | disvert_type=2 |
---|
| 66 | endif |
---|
| 67 | ! but user can also specify using one or the other in run.def: |
---|
| 68 | call getin('disvert_type',disvert_type) |
---|
| 69 | write(lunout,*) trim(modname),': disvert_type=',disvert_type |
---|
| 70 | |
---|
| 71 | if (disvert_type==1) then |
---|
| 72 | ! standard case for Earth (automatic generation of levels) |
---|
| 73 | call disvert(pa,preff,ap,bp,dpres,presnivs,nivsigs,nivsig, |
---|
| 74 | & scaleheight) |
---|
| 75 | else if (disvert_type==2) then |
---|
| 76 | ! standard case for planets (levels generated using z2sig.def file) |
---|
| 77 | call disvert_noterre |
---|
| 78 | else |
---|
| 79 | write(abort_message,*) "Wrong value for disvert_type: ", |
---|
| 80 | & disvert_type |
---|
| 81 | call abort_gcm(modname,abort_message,0) |
---|
| 82 | endif |
---|
| 83 | |
---|
| 84 | END |
---|