[879] | 1 | SUBROUTINE cv3_cine(nloc,ncum,nd,icb,inb |
---|
| 2 | : ,pbase,plcl,p,ph,tv,tvp |
---|
| 3 | : ,cina,cinb) |
---|
| 4 | |
---|
| 5 | *************************************************************** |
---|
| 6 | * * |
---|
| 7 | * CV3_CINE * |
---|
| 8 | * * |
---|
| 9 | * * |
---|
| 10 | * written by : Frederique Cheruy * |
---|
| 11 | * vectorization: Jean-Yves Grandpeix, 19/06/2003, 11.54.43 * |
---|
| 12 | * modified by : * |
---|
| 13 | *************************************************************** |
---|
| 14 | * |
---|
| 15 | implicit none |
---|
| 16 | c |
---|
| 17 | #include "YOMCST.h" |
---|
| 18 | #include "cvthermo.h" |
---|
| 19 | #include "cv3param.h" |
---|
| 20 | c input: |
---|
| 21 | integer ncum, nd, nloc |
---|
| 22 | integer icb(nloc), inb(nloc) |
---|
| 23 | real pbase(nloc),plcl(nloc) |
---|
| 24 | real p(nloc,nd), ph(nloc,nd+1) |
---|
| 25 | real tv(nloc,nd),tvp(nloc,nd) |
---|
| 26 | c |
---|
| 27 | c output |
---|
| 28 | real cina(nloc),cinb(nloc) |
---|
| 29 | c |
---|
| 30 | c local variables |
---|
| 31 | integer il,i,j,k |
---|
| 32 | integer itop(nloc),ineg(nloc),ilow(nloc) |
---|
| 33 | integer ifst(nloc),isublcl(nloc) |
---|
| 34 | logical lswitch(nloc),lswitch1(nloc),lswitch2(nloc) |
---|
[1127] | 35 | logical exist_lfc(nloc) |
---|
| 36 | real plfc(nloc) |
---|
[879] | 37 | real dpmax |
---|
| 38 | real deltap,dcin |
---|
| 39 | real buoylcl(nloc),tvplcl(nloc),tvlcl(nloc) |
---|
[1127] | 40 | real p0(nloc) |
---|
[879] | 41 | real buoyz(nloc), buoy(nloc,nd) |
---|
| 42 | c |
---|
| 43 | c------------------------------------------------------------- |
---|
| 44 | c Initialization |
---|
| 45 | c------------------------------------------------------------- |
---|
| 46 | do il = 1,ncum |
---|
| 47 | cina(il) = 0. |
---|
| 48 | cinb(il) = 0. |
---|
| 49 | enddo |
---|
| 50 | c |
---|
| 51 | c-------------------------------------------------------------- |
---|
| 52 | c Recompute buoyancies |
---|
| 53 | c-------------------------------------------------------------- |
---|
[1127] | 54 | DO k = 1,nd |
---|
[879] | 55 | DO il = 1,ncum |
---|
[1127] | 56 | ! print*,'tvp tv=',tvp(il,k),tv(il,k) |
---|
[879] | 57 | buoy(il,k) = tvp(il,k) - tv(il,k) |
---|
| 58 | ENDDO |
---|
| 59 | ENDDO |
---|
| 60 | c--------------------------------------------------------------- |
---|
| 61 | c |
---|
| 62 | c calcul de la flottabilite a LCL (Buoylcl) |
---|
| 63 | c ifst = first P-level above lcl |
---|
| 64 | c isublcl = highest P-level below lcl. |
---|
| 65 | c--------------------------------------------------------------- |
---|
| 66 | c |
---|
| 67 | do il = 1,ncum |
---|
| 68 | TVPlcl(il) = TVP(il,1)*(Plcl(il)/P(il,1))**(2./7.) !For dry air, R/Cp=2/7 |
---|
| 69 | enddo |
---|
| 70 | c |
---|
| 71 | do il = 1,ncum |
---|
| 72 | IF (Plcl(il) .GT. P(il,icb(il))) THEN |
---|
| 73 | ifst(il) = icb(il) |
---|
| 74 | isublcl(il) = icb(il)-1 |
---|
| 75 | ELSE |
---|
| 76 | ifst(il) = icb(il)+1 |
---|
| 77 | isublcl(il) = icb(il) |
---|
| 78 | ENDIF |
---|
| 79 | enddo |
---|
| 80 | c |
---|
| 81 | do il = 1,ncum |
---|
| 82 | TVlcl(il)=TV(il,ifst(il)-1)+(TV(il,ifst(il))-TV(il,ifst(il)-1)) |
---|
| 83 | $ *(Plcl(il)-P(il,ifst(il)-1))/(P(il,ifst(il))-P(il,ifst(il)-1)) |
---|
| 84 | enddo |
---|
| 85 | c |
---|
| 86 | do il = 1,ncum |
---|
| 87 | BUOYlcl(il) = TVPlcl(il)-TVlcl(il) |
---|
| 88 | enddo |
---|
| 89 | c |
---|
| 90 | c--------------------------------------------------------------- |
---|
[1127] | 91 | c premiere couche contenant un niveau de flotabilite positive |
---|
| 92 | c et premiere couche contenant un niveau de flotabilite negative |
---|
| 93 | c au dessus du niveau de condensation |
---|
| 94 | c--------------------------------------------------------------- |
---|
| 95 | do il = 1,ncum |
---|
| 96 | itop(il) =nl-1 |
---|
| 97 | ineg(il) = nl-1 |
---|
| 98 | exist_lfc(il) = .FALSE. |
---|
| 99 | enddo |
---|
| 100 | do 100 k=nl-1,1,-1 |
---|
| 101 | do 110 il=1,ncum |
---|
| 102 | if (k .ge. ifst(il)) then |
---|
| 103 | if (buoy(il,k) .gt. 0.) then |
---|
| 104 | itop(il)=k |
---|
| 105 | exist_lfc(il) = .TRUE. |
---|
| 106 | else |
---|
| 107 | ineg(il)=k |
---|
| 108 | endif |
---|
| 109 | endif |
---|
| 110 | 110 continue |
---|
| 111 | 100 continue |
---|
| 112 | c |
---|
| 113 | c--------------------------------------------------------------- |
---|
| 114 | c When there is no positive buoyancy level, set Plfc, Cina and Cinb |
---|
| 115 | c to arbitrary extreme values. |
---|
| 116 | c--------------------------------------------------------------- |
---|
| 117 | DO il = 1,ncum |
---|
| 118 | IF (.NOT.exist_lfc(il)) THEN |
---|
| 119 | Plfc(il) = 1.111 |
---|
| 120 | Cinb(il) = -1111. |
---|
| 121 | Cina(il) = -1112. |
---|
| 122 | ENDIF |
---|
| 123 | ENDDO |
---|
| 124 | c |
---|
| 125 | c |
---|
| 126 | c--------------------------------------------------------------- |
---|
[879] | 127 | c -- Two cases : BUOYlcl >= 0 and BUOYlcl < 0. |
---|
| 128 | c--------------------------------------------------------------- |
---|
| 129 | C |
---|
| 130 | C-------------------- |
---|
| 131 | C -- 1.0 BUOYlcl >=0. |
---|
| 132 | C-------------------- |
---|
| 133 | c |
---|
| 134 | DPMAX = 50. |
---|
| 135 | DO il = 1,ncum |
---|
[1127] | 136 | lswitch1(il)=BUOYlcl(il) .GE. 0. .AND. exist_lfc(il) |
---|
[879] | 137 | lswitch(il) = lswitch1(il) |
---|
| 138 | ENDDO |
---|
| 139 | c |
---|
| 140 | c 1.1 No inhibition case |
---|
| 141 | c ---------------------- |
---|
| 142 | C If buoyancy is positive at LCL and stays positive over a large enough |
---|
| 143 | C pressure interval (=DPMAX), inhibition is set to zero, |
---|
| 144 | C |
---|
| 145 | DO il = 1,ncum |
---|
| 146 | IF (lswitch(il)) THEN |
---|
| 147 | IF (P(il,ineg(il)) .LT. P(il,icb(il))-DPmax) THEN |
---|
| 148 | PLFC(il) = Plcl(il) |
---|
| 149 | Cina(il) = 0. |
---|
| 150 | Cinb(il) = 0. |
---|
| 151 | ENDIF |
---|
| 152 | ENDIF |
---|
| 153 | ENDDO |
---|
| 154 | c |
---|
| 155 | c 1.2 Upper inhibition only case |
---|
| 156 | c ------------------------------ |
---|
| 157 | DO il = 1,ncum |
---|
| 158 | lswitch2(il)= P(il,ineg(il)) .GE. P(il,icb(il))-DPmax |
---|
| 159 | lswitch(il) = lswitch1(il) .AND. lswitch2(il) |
---|
| 160 | ENDDO |
---|
| 161 | c |
---|
| 162 | DO il = 1,ncum |
---|
| 163 | IF (lswitch(il)) THEN |
---|
| 164 | Cinb(il) = 0. |
---|
| 165 | c |
---|
| 166 | c 1.2.1 Calcul de la pression du niveau de flot. nulle juste au-dessus de LCL |
---|
| 167 | c --------------------------------------------------------------------------- |
---|
| 168 | IF (ineg(il) .GT. isublcl(il)+1) THEN |
---|
| 169 | C In order to get P0, one may interpolate linearly buoyancies |
---|
| 170 | C between P(ineg) and P(ineg-1). |
---|
| 171 | P0(il)=(buoy(il,ineg(il))*P(il,ineg(il)-1) |
---|
| 172 | $ -buoy(il,ineg(il)-1)*P(il,ineg(il))) |
---|
| 173 | : / (buoy(il,ineg(il))-buoy(il,ineg(il)-1)) |
---|
| 174 | ELSE |
---|
| 175 | C In order to get P0, one has to interpolate between P(ineg) and Plcl. |
---|
| 176 | P0(il) = (BUOY(il,ineg(il))*Plcl(il)-BUOYlcl(il)*P(il,ineg(il))) |
---|
| 177 | $ /(BUOY(il,ineg(il)) -BUOYlcl(il)) |
---|
| 178 | ENDIF |
---|
| 179 | ENDIF |
---|
| 180 | ENDDO |
---|
| 181 | c |
---|
| 182 | c 1.2.2 Recompute itop (=1st layer with positive buoyancy above ineg) |
---|
| 183 | c ------------------------------------------------------------------- |
---|
| 184 | do il = 1,ncum |
---|
| 185 | IF (lswitch(il)) THEN |
---|
| 186 | itop(il) =nl-1 |
---|
| 187 | ENDIF |
---|
| 188 | enddo |
---|
| 189 | c |
---|
| 190 | do k=nl,1,-1 |
---|
| 191 | do il=1,ncum |
---|
| 192 | IF (lswitch(il)) THEN |
---|
| 193 | if (k .ge. ineg(il) .and. buoy(il,k) .gt. 0) then |
---|
| 194 | itop(il)=k |
---|
| 195 | endif |
---|
| 196 | ENDIF |
---|
| 197 | enddo |
---|
| 198 | enddo |
---|
| 199 | c |
---|
| 200 | c 1.2.3 Computation of PLFC |
---|
| 201 | c ------------------------- |
---|
| 202 | DO il = 1,ncum |
---|
| 203 | IF (lswitch(il)) THEN |
---|
| 204 | PLFC(il)=(buoy(il,itop(il))*P(il,itop(il)-1) |
---|
| 205 | $ -buoy(il,itop(il)-1)*P(il,itop(il))) |
---|
| 206 | $ / (buoy(il,itop(il))-buoy(il,itop(il)-1)) |
---|
| 207 | ENDIF |
---|
| 208 | ENDDO |
---|
| 209 | c |
---|
| 210 | c 1.2.4 Computation of CINA |
---|
| 211 | c ------------------------- |
---|
| 212 | c |
---|
| 213 | C Upper part of CINA : integral from P(itop-1) to Plfc |
---|
| 214 | DO il = 1,ncum |
---|
| 215 | IF (lswitch(il)) THEN |
---|
| 216 | deltap = P(il,itop(il)-1)-Plfc(il) |
---|
| 217 | dcin = RD*BUOY(il,itop(il)-1)*deltap |
---|
| 218 | $ / (P(il,itop(il)-1)+Plfc(il)) |
---|
| 219 | CINA(il) = min(0.,dcin) |
---|
| 220 | ENDIF |
---|
| 221 | ENDDO |
---|
| 222 | c |
---|
| 223 | C Middle part of CINA : integral from P(ineg) to P(itop-1) |
---|
| 224 | DO k = 1,nl |
---|
| 225 | DO il = 1,ncum |
---|
| 226 | IF (lswitch(il)) THEN |
---|
| 227 | IF (k .GE. ineg(il) .AND. k .LE. itop(il)-2) THEN |
---|
| 228 | deltap = P(il,k)-P(il,k+1) |
---|
| 229 | dcin = 0.5*RD*(BUOY(il,k)+BUOY(il,k+1))*deltap/PH(il,k+1) |
---|
| 230 | CINA(il) = CINA(il) + min(0.,dcin) |
---|
| 231 | ENDIF |
---|
| 232 | ENDIF |
---|
| 233 | ENDDO |
---|
| 234 | ENDDO |
---|
| 235 | c |
---|
| 236 | C Lower part of CINA : integral from P0 to P(ineg) |
---|
| 237 | DO il = 1,ncum |
---|
| 238 | IF (lswitch(il)) THEN |
---|
| 239 | deltap = P0(il)-P(il,ineg(il)) |
---|
| 240 | dcin = RD*BUOY(il,ineg(il))*deltap/(P(il,ineg(il))+P0(il)) |
---|
| 241 | CINA(il) = CINA(il) + min(0.,dcin) |
---|
| 242 | ENDIF |
---|
| 243 | ENDDO |
---|
| 244 | c |
---|
| 245 | C |
---|
| 246 | C ------------------ |
---|
| 247 | C -- 2.0 BUOYlcl <0. |
---|
| 248 | C ------------------ |
---|
| 249 | C |
---|
| 250 | DO il = 1,ncum |
---|
[1127] | 251 | lswitch1(il)=BUOYlcl(il) .LT. 0. .AND. exist_lfc(il) |
---|
[879] | 252 | lswitch(il) = lswitch1(il) |
---|
| 253 | ENDDO |
---|
| 254 | c |
---|
| 255 | c 2.0.1 Premiere couche ou la flotabilite est negative au dessus du sol |
---|
| 256 | c ---------------------------------------------------- |
---|
[1127] | 257 | c au cas ou elle existe sinon ilow=1 (nk apres) |
---|
[879] | 258 | c on suppose que la parcelle part de la premiere couche |
---|
| 259 | c |
---|
| 260 | DO il = 1,ncum |
---|
| 261 | IF (lswitch(il)) THEN |
---|
| 262 | ilow(il)=1 |
---|
| 263 | ENDIF |
---|
| 264 | ENDDO |
---|
| 265 | c |
---|
[1127] | 266 | do 200 k=nl,1,-1 |
---|
[879] | 267 | DO il = 1,ncum |
---|
| 268 | IF (lswitch(il) .AND. k .LE.icb(il)-1) THEN |
---|
| 269 | if(buoy(il,k).lt. 0.) then |
---|
| 270 | ilow(il) = k |
---|
| 271 | endif |
---|
| 272 | ENDIF |
---|
| 273 | ENDDO |
---|
| 274 | 200 continue |
---|
| 275 | |
---|
| 276 | c 2.0.2 Calcul de la pression du niveau de flot. nulle sous le nuage |
---|
| 277 | c ---------------------------------------------------- |
---|
| 278 | DO il = 1,ncum |
---|
| 279 | IF (lswitch(il)) THEN |
---|
| 280 | if(ilow(il).gt. 1) then |
---|
| 281 | P0(il)=(buoy(il,ilow(il))*P(il,ilow(il)-1) |
---|
| 282 | $ -buoy(il,ilow(il)-1)*P(il,ilow(il))) |
---|
| 283 | : / (buoy(il,ilow(il))-buoy(il,ilow(il)-1)) |
---|
| 284 | BUOYz(il) = 0. |
---|
| 285 | else |
---|
| 286 | P0(il) = P(il,1) |
---|
| 287 | BUOYz(il) = BUOY(il,1) |
---|
| 288 | endif |
---|
| 289 | ENDIF |
---|
| 290 | ENDDO |
---|
| 291 | c |
---|
| 292 | C 2.1. Computation of CINB |
---|
| 293 | C ----------------------- |
---|
| 294 | c |
---|
| 295 | DO il = 1,ncum |
---|
| 296 | lswitch2(il)= (isublcl(il) .EQ. 1 .AND. ilow(il) .EQ. 1) |
---|
| 297 | $ .OR.(isublcl(il) .EQ. ilow(il)-1) |
---|
| 298 | lswitch(il) = lswitch1(il) .AND. lswitch2(il) |
---|
| 299 | ENDDO |
---|
| 300 | cc IF ( (isublcl .EQ. 1 .AND. ilow .EQ. 1) |
---|
| 301 | cc $ .OR.(isublcl .EQ. ilow-1)) THEN |
---|
| 302 | c |
---|
| 303 | c 2.1.1 First case : Plcl just above P0 |
---|
| 304 | c ------------------------------------- |
---|
| 305 | DO il = 1,ncum |
---|
| 306 | IF (lswitch(il)) THEN |
---|
| 307 | deltap = P0(il)-Plcl(il) |
---|
| 308 | dcin = RD*(BUOYz(il)+BUOYlcl(il))*deltap/(P0(il)+Plcl(il)) |
---|
| 309 | CINB(il) = min(0.,dcin) |
---|
| 310 | ENDIF |
---|
| 311 | ENDDO |
---|
| 312 | c |
---|
| 313 | DO il = 1,ncum |
---|
| 314 | lswitch(il) = lswitch1(il) .AND. .NOT. lswitch2(il) |
---|
| 315 | ENDDO |
---|
| 316 | cc ELSE |
---|
| 317 | c |
---|
| 318 | c 2.1.2 Second case : there is at least one P-level between P0 and Plcl |
---|
| 319 | c --------------------------------------------------------------------- |
---|
| 320 | c |
---|
| 321 | C Lower part of CINB : integral from P0 to P(ilow) |
---|
| 322 | DO il = 1,ncum |
---|
| 323 | IF (lswitch(il)) THEN |
---|
| 324 | deltap = P0(il)-P(il,ilow(il)) |
---|
| 325 | dcin = RD*(BUOYz(il)+BUOY(il,ilow(il)))*deltap |
---|
| 326 | $ /(P0(il)+P(il,ilow(il))) |
---|
| 327 | CINB(il) = min(0.,dcin) |
---|
| 328 | ENDIF |
---|
| 329 | ENDDO |
---|
| 330 | c |
---|
| 331 | c |
---|
| 332 | C Middle part of CINB : integral from P(ilow) to P(isublcl) |
---|
| 333 | cc DO k = ilow,isublcl-1 |
---|
| 334 | DO k = 1,nl |
---|
| 335 | DO il = 1,ncum |
---|
| 336 | IF (lswitch(il) |
---|
| 337 | $ .AND. k .GE. ilow(il) .AND. k .LE. isublcl(il)-1) THEN |
---|
| 338 | deltap = P(il,k)-P(il,k+1) |
---|
| 339 | dcin = 0.5*RD*(BUOY(il,k)+BUOY(il,k+1))*deltap/PH(il,k+1) |
---|
| 340 | CINB(il) = CINB(il) + min(0.,dcin) |
---|
| 341 | ENDIF |
---|
| 342 | ENDDO |
---|
| 343 | ENDDO |
---|
| 344 | c |
---|
| 345 | C Upper part of CINB : integral from P(isublcl) to Plcl |
---|
| 346 | DO il = 1,ncum |
---|
| 347 | IF (lswitch(il)) THEN |
---|
| 348 | deltap = P(il,isublcl(il)) - Plcl(il) |
---|
| 349 | dcin = RD*(BUOY(il,isublcl(il))+BUOYlcl(il))*deltap |
---|
| 350 | $ /(P(il,isublcl(il))+Plcl(il)) |
---|
| 351 | CINB(il) = CINB(il)+min(0.,dcin) |
---|
| 352 | ENDIF |
---|
| 353 | ENDDO |
---|
| 354 | C |
---|
| 355 | c |
---|
| 356 | cc ENDIF |
---|
| 357 | c |
---|
| 358 | C 2.2 Computation of CINA |
---|
| 359 | c --------------------- |
---|
| 360 | c |
---|
| 361 | DO il = 1,ncum |
---|
| 362 | lswitch2(il)= Plcl(il) .GT. P(il,itop(il)-1) |
---|
| 363 | lswitch(il) = lswitch1(il) .AND. lswitch2(il) |
---|
| 364 | ENDDO |
---|
| 365 | c |
---|
| 366 | c 2.2.1 FIrst case : Plcl > P(itop-1) |
---|
| 367 | C --------------------------------- |
---|
| 368 | C In order to get Plfc, one may interpolate linearly buoyancies |
---|
| 369 | C between P(itop) and P(itop-1). |
---|
| 370 | DO il = 1,ncum |
---|
| 371 | IF (lswitch(il)) THEN |
---|
| 372 | PLFC(il)=(buoy(il,itop(il))*P(il,itop(il)-1) |
---|
| 373 | $ -buoy(il,itop(il)-1)*P(il,itop(il))) |
---|
| 374 | $ / (buoy(il,itop(il))-buoy(il,itop(il)-1)) |
---|
| 375 | ENDIF |
---|
| 376 | ENDDO |
---|
| 377 | c |
---|
| 378 | C Upper part of CINA : integral from P(itop-1) to Plfc |
---|
| 379 | DO il = 1,ncum |
---|
| 380 | IF (lswitch(il)) THEN |
---|
| 381 | deltap = P(il,itop(il)-1)-Plfc(il) |
---|
| 382 | dcin = RD*BUOY(il,itop(il)-1)*deltap |
---|
| 383 | $ /(P(il,itop(il)-1)+Plfc(il)) |
---|
| 384 | CINA(il) = min(0.,dcin) |
---|
| 385 | ENDIF |
---|
| 386 | ENDDO |
---|
| 387 | c |
---|
| 388 | C Middle part of CINA : integral from P(icb+1) to P(itop-1) |
---|
| 389 | DO k = 1,nl |
---|
| 390 | DO il = 1,ncum |
---|
| 391 | IF (lswitch(il) |
---|
| 392 | $ .AND. k .GE. icb(il)+1 .AND. k .LE. itop(il)-2) THEN |
---|
| 393 | deltap = P(il,k)-P(il,k+1) |
---|
| 394 | dcin = 0.5*RD*(BUOY(il,k)+BUOY(il,k+1))*deltap/PH(il,k+1) |
---|
| 395 | CINA(il) = CINA(il) + min(0.,dcin) |
---|
| 396 | ENDIF |
---|
| 397 | ENDDO |
---|
| 398 | ENDDO |
---|
| 399 | c |
---|
| 400 | C Lower part of CINA : integral from Plcl to P(icb+1) |
---|
| 401 | DO il = 1,ncum |
---|
| 402 | IF (lswitch(il)) THEN |
---|
| 403 | IF (Plcl(il) .GT. P(il,icb(il))) THEN |
---|
| 404 | IF (icb(il) .LT. itop(il)-1) THEN |
---|
| 405 | deltap = P(il,icb(il))-P(il,icb(il)+1) |
---|
| 406 | dcin = 0.5*RD*(BUOY(il,icb(il))+BUOY(il,icb(il)+1)) |
---|
| 407 | $ *deltap/PH(il,icb(il)+1) |
---|
| 408 | CINA(il) = CINA(il)+min(0.,dcin) |
---|
| 409 | ENDIF |
---|
| 410 | c |
---|
| 411 | deltap = Plcl(il)-P(il,icb(il)) |
---|
| 412 | dcin = RD*(BUOYlcl(il)+BUOY(il,icb(il))) |
---|
| 413 | $ *deltap/(Plcl(il)+P(il,icb(il))) |
---|
| 414 | CINA(il) = CINA(il)+min(0.,dcin) |
---|
| 415 | ELSE |
---|
| 416 | deltap = Plcl(il)-P(il,icb(il)+1) |
---|
| 417 | dcin = RD*(BUOYlcl(il)+BUOY(il,icb(il)+1)) |
---|
| 418 | $ *deltap/(Plcl(il)+P(il,icb(il)+1)) |
---|
| 419 | CINA(il) = CINA(il)+min(0.,dcin) |
---|
| 420 | ENDIF |
---|
| 421 | ENDIF |
---|
| 422 | ENDDO |
---|
| 423 | c |
---|
| 424 | DO il = 1,ncum |
---|
| 425 | lswitch(il) = lswitch1(il) .AND. .NOT. lswitch2(il) |
---|
| 426 | ENDDO |
---|
| 427 | cc ELSE |
---|
| 428 | c |
---|
| 429 | c 2.2.2 Second case : Plcl lies between P(itop-1) and P(itop); |
---|
| 430 | C ---------------------------------------------------------- |
---|
| 431 | C In order to get Plfc, one has to interpolate between P(itop) and Plcl. |
---|
| 432 | DO il = 1,ncum |
---|
| 433 | IF (lswitch(il)) THEN |
---|
| 434 | PLFC(il) = |
---|
| 435 | $ (BUOY(il,itop(il))*Plcl(il)-BUOYlcl(il)*P(il,itop(il))) |
---|
| 436 | $ /(BUOY(il,itop(il)) -BUOYlcl(il)) |
---|
| 437 | ENDIF |
---|
| 438 | ENDDO |
---|
| 439 | c |
---|
| 440 | DO il = 1,ncum |
---|
| 441 | IF (lswitch(il)) THEN |
---|
| 442 | deltap = Plcl(il)-Plfc(il) |
---|
| 443 | dcin = RD*BUOYlcl(il)*deltap/(Plcl(il)+Plfc(il)) |
---|
| 444 | CINA(il) = min(0.,dcin) |
---|
| 445 | ENDIF |
---|
| 446 | ENDDO |
---|
| 447 | cc ENDIF |
---|
| 448 | c |
---|
| 449 | |
---|
| 450 | |
---|
| 451 | RETURN |
---|
| 452 | END |
---|