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