Last change
on this file since 1662 was
1594,
checked in by emillour, 8 years ago
|
Mars and Generic "old" dynamics: to further harmonize with LMDZ.COMMON, replace "idissip" with "dissip_period".
EM
|
File size:
1.2 KB
|
Rev | Line | |
---|
[38] | 1 | SUBROUTINE iniconst |
---|
| 2 | |
---|
[1594] | 3 | use control_mod, only: iphysiq, dissip_period |
---|
[1422] | 4 | USE comconst_mod, ONLY: im,jm,lllm,imp1,jmp1,lllmm1,lllmp1, |
---|
| 5 | . dtdiss,dtvr,dtphys,unsim,r,cpp,kappa,pi |
---|
[38] | 6 | IMPLICIT NONE |
---|
| 7 | c |
---|
| 8 | c P. Le Van |
---|
| 9 | c |
---|
| 10 | c----------------------------------------------------------------------- |
---|
| 11 | c Declarations: |
---|
| 12 | c ------------- |
---|
| 13 | c |
---|
| 14 | #include "dimensions.h" |
---|
| 15 | #include "paramet.h" |
---|
[1130] | 16 | !#include "control.h" |
---|
[38] | 17 | |
---|
| 18 | |
---|
| 19 | INTEGER :: l |
---|
| 20 | c |
---|
| 21 | c |
---|
| 22 | EXTERNAL disvert |
---|
| 23 | c |
---|
| 24 | c----------------------------------------------------------------------- |
---|
| 25 | c dimension des boucles: |
---|
| 26 | c ---------------------- |
---|
| 27 | |
---|
| 28 | im = iim |
---|
| 29 | jm = jjm |
---|
| 30 | lllm = llm |
---|
| 31 | imp1 = iim |
---|
| 32 | jmp1 = jjm + 1 |
---|
| 33 | lllmm1 = llm - 1 |
---|
| 34 | lllmp1 = llm + 1 |
---|
| 35 | |
---|
| 36 | c----------------------------------------------------------------------- |
---|
| 37 | |
---|
[1594] | 38 | dtdiss = dissip_period * dtvr |
---|
[38] | 39 | dtphys = iphysiq * dtvr |
---|
| 40 | unsim = 1./iim |
---|
| 41 | pi = 2.*ASIN( 1. ) |
---|
| 42 | |
---|
| 43 | c----------------------------------------------------------------------- |
---|
| 44 | c |
---|
| 45 | |
---|
| 46 | r = cpp * kappa |
---|
| 47 | |
---|
| 48 | PRINT*,' R CPP Kappa ', r , cpp, kappa |
---|
| 49 | c |
---|
| 50 | c----------------------------------------------------------------------- |
---|
| 51 | CALL disvert |
---|
| 52 | c |
---|
| 53 | c |
---|
| 54 | RETURN |
---|
| 55 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.