[963] | 1 | SUBROUTINE cv3_inicp() |
---|
[879] | 2 | * |
---|
| 3 | *************************************************************** |
---|
| 4 | * * |
---|
| 5 | * CV3_INIP Lecture des choix de lois de probabilité de mélange* |
---|
| 6 | * et calcul de leurs coefficients normalisés. * |
---|
| 7 | * * |
---|
| 8 | * written by : Jean-Yves Grandpeix, 06/06/2006, 19.39.27 * |
---|
| 9 | * modified by : * |
---|
| 10 | *************************************************************** |
---|
| 11 | * |
---|
| 12 | #include "YOMCST2.h" |
---|
| 13 | c |
---|
[966] | 14 | INTEGER iflag_clos |
---|
[879] | 15 | c |
---|
| 16 | c -- Mixing probability distribution functions |
---|
| 17 | c |
---|
| 18 | real Qcoef1,Qcoef2,QFF,QFFF,Qmix,Rmix,Qmix1,Rmix1,Qmix2,Rmix2,F |
---|
| 19 | Qcoef1(F) = tanh(F/gammas) |
---|
| 20 | Qcoef2(F) = ( tanh(F/gammas) + gammas * |
---|
| 21 | $ log(cosh((1.- F)/gammas)/cosh(F/gammas))) |
---|
| 22 | QFF(F) = Max(Min(F,1.),0.) |
---|
| 23 | QFFF(F) = Min(QFF(F),scut) |
---|
| 24 | Qmix1(F) = ( tanh((QFF(F) - Fmax)/gammas)+Qcoef1max )/ |
---|
| 25 | $ Qcoef2max |
---|
| 26 | Rmix1(F) = ( gammas*log(cosh((QFF(F)-Fmax)/gammas)) |
---|
| 27 | 1 +QFF(F)*Qcoef1max ) / Qcoef2max |
---|
| 28 | Qmix2(F) = -Log(1.-QFFF(F))/scut |
---|
| 29 | Rmix2(F) = (QFFF(F)+(1.-QFF(F))*Log(1.-QFFF(F)))/scut |
---|
| 30 | Qmix(F) = qqa1*Qmix1(F) + qqa2*Qmix2(F) |
---|
| 31 | Rmix(F) = qqa1*Rmix1(F) + qqa2*Rmix2(F) |
---|
| 32 | C |
---|
| 33 | ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc |
---|
| 34 | c |
---|
| 35 | C |
---|
| 36 | C=========================================================================== |
---|
| 37 | C READ IN PARAMETERS FOR THE MIXING DISTRIBUTION |
---|
| 38 | C AND PASS THESE THROUGH A COMMON BLOCK TO SUBROUTINE CONVECT etc. |
---|
| 39 | C (Written by V.T.J. Phillips, 20-30/Jan/99) |
---|
| 40 | C=========================================================================== |
---|
| 41 | C |
---|
| 42 | C line 1: a flag (0 or 1) to decide whether P(F) = 1 or the general P(F) is to be |
---|
| 43 | C used, followed by SCUT, which is the cut-off value of F in CONVECT |
---|
| 44 | C line 2: blank |
---|
| 45 | C line 3: the coefficients for the linear combination of P(F)s to |
---|
| 46 | C make the general P(F) |
---|
| 47 | C line 4: blank |
---|
| 48 | C line 5: gammas, Fmax for the cosh^2 component of P(F) |
---|
| 49 | C line 6: blank |
---|
| 50 | C line 7: alphas for the 1st irrational P(F) |
---|
| 51 | C line 8: blank |
---|
| 52 | C line 9: betas for the 2nd irrational P(F) |
---|
| 53 | C |
---|
| 54 | |
---|
[966] | 55 | c open(57,file='parameter_mix.data') |
---|
[879] | 56 | |
---|
[966] | 57 | c read(57,*) iflag_clos |
---|
| 58 | c read(57,*) iflag_mix, scut |
---|
| 59 | c read(57,*) |
---|
| 60 | c if(iflag_mix .gt. 0) then |
---|
| 61 | c read(57,*) qqa1, qqa2 |
---|
| 62 | c read(57,*) |
---|
| 63 | c read(57,*) gammas, Fmax |
---|
| 64 | c read(57,*) |
---|
| 65 | c read(57,*) alphas |
---|
| 66 | c endif |
---|
| 67 | c close(57) |
---|
[879] | 68 | c |
---|
| 69 | if(iflag_mix .gt. 0) then |
---|
| 70 | c |
---|
| 71 | c-- Normalize Pdf weights |
---|
| 72 | c |
---|
| 73 | sumcoef=qqa1+qqa2 |
---|
| 74 | qqa1=qqa1/sumcoef |
---|
| 75 | qqa2=qqa2/sumcoef |
---|
| 76 | c |
---|
| 77 | Qcoef1max = Qcoef1(Fmax) |
---|
| 78 | Qcoef2max = Qcoef2(Fmax) |
---|
| 79 | c |
---|
| 80 | sigma = 0. |
---|
| 81 | aire=0.0 |
---|
| 82 | pdf=0.0 |
---|
| 83 | mu=0.0 |
---|
| 84 | df = 0.0001 |
---|
| 85 | c |
---|
| 86 | c do ff = 0.0 + df, 1.0 - 2.*df, df |
---|
| 87 | ff=df |
---|
| 88 | dowhile ( ff .le. 1.0 - 2.*df ) |
---|
| 89 | pdf = (Qmix(ff+df) - Qmix(ff)) * (1.-ff) / df |
---|
| 90 | aire=aire+(Qmix(ff+df) - Qmix(ff)) * (1.-ff) |
---|
| 91 | mu = mu + pdf * ff * df |
---|
| 92 | cc write(*,*) pdf, Qmix(ff), aire, ff |
---|
| 93 | ff=ff+df |
---|
| 94 | enddo |
---|
| 95 | c |
---|
| 96 | c do ff=0.0+df,1.0 - 2.*df,df |
---|
| 97 | ff=df |
---|
| 98 | dowhile ( ff .le. 1.0 - 2.*df ) |
---|
| 99 | pdf = (Qmix(ff+df)- Qmix(ff)) * (1.-ff) / df |
---|
| 100 | sigma = sigma+pdf*(ff - mu)*(ff - mu)*df |
---|
| 101 | ff=ff+df |
---|
| 102 | enddo |
---|
| 103 | sigma = sqrt(sigma) |
---|
| 104 | c |
---|
| 105 | if (abs(aire-1.0) .gt. 0.02) then |
---|
| 106 | print *,'WARNING:: AREA OF MIXING PDF IS::', aire |
---|
| 107 | stop |
---|
| 108 | else |
---|
| 109 | print *,'Area, mean & std deviation are ::', aire,mu,sigma |
---|
| 110 | endif |
---|
| 111 | endif ! (iflag_mix .gt. 0) |
---|
| 112 | |
---|
| 113 | RETURN |
---|
| 114 | END |
---|