-
Notifications
You must be signed in to change notification settings - Fork 1
/
pcmin.m
383 lines (381 loc) · 9.67 KB
/
pcmin.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
function [PMIN,VMAX,TO,IFL]= pcmin(SST,PSL,P,T,R)
%
% Revised on 9/24/2005 to fix convergence problems at high pressure
% Converted to MATLAB 5/17/2008.
%
% Revised again 1/7/2017 by Luke Davis to fix and improper definition of
% JMIN, which should be the lowest profile level at or above the parcel
% level in the calculation of CAPE. I am grateful to Luke and to Tim
% Merlis for pointing out this error. In practice, the error was
% usually less than 1 hPa in central pressure.
%
% *** This function calculates the maximum wind speed ***
% *** and mimimum central pressure ***
% *** achievable in tropical cyclones, given a sounding ***
% *** and a sea surface temperature. ***
%
% INPUT: SST: Sea surface temperature in %
%
% PSL: Sea level pressure (mb)
%
% P,T,R: One-dimensional arrays
% containing pressure (mb), temperature (C),
% and mixing ratio (g/kg). The arrays MUST be
% arranged so that the lowest index corresponds
% to the lowest model level, with increasing index
% corresponding to decreasing pressure. The temperature
% sounding should extend to at least the tropopause and
% preferably to the lower stratosphere, however the
% mixing ratios are not important above the boundary
% layer. Missing mixing ratios can be replaced by zeros.
%
%
% OUTPUT: PMIN is the minimum central pressure, in mb
%
% VMAX is the maximum surface wind speed, in m/s
% (reduced to reflect surface drag)
%
% TO is the outflow temperature (K)
%
% IFL is a flag: A value of 1 means OK; a value of 0
% indicates no convergence (hypercane); a value of 2
% means that the CAPE routine failed.
%
%-----------------------------------------------------------------------------
%
% *** Adjustable constant: Ratio of C_k to C_D ***
%
CKCD=0.9;
%
% *** Adjustable constant for buoyancy of displaced parcels: ***
% *** 0=Reversible ascent; 1=Pseudo-adiabatic ascent ***
%
SIG=0.0;
%
% *** Adjustable switch: if IDISS = 0, no dissipative heating is ***
% *** allowed; otherwise, it is ***
%
IDISS=1;
%
% *** Exponent, b, in assumed profile of azimuthal velocity in eye, ***
% *** V=V_m(r/r_m)^b. Used only in calculation of central pressure ***
%
b=2.0;
%
% *** Set level from which parcels lifted ***
%
NK=1;
%
% *** Factor to reduce gradient wind to 10 m wind ***
%
VREDUC=0.8;
%
%--------------------------------------------------------------------------
%
SSTK=SST+273.15;
%
% Defualt values
%
TO=230.0;
VMAX=0.0;
PMIN=0.0;
IFL=0;
%
if SST <= 5.0
return
end
%
ES0=6.112.*exp(17.67.*SST./(243.5+SST));
%
R=R.*0.001;
T=T+273.15;
%
if min(T) <= 100.0
return
end
%
% *** Default value ***
%
IFL=1;
%
NP=0;
PM=970.0;
PMOLD=PM;
PNEW=0.0;
%
% *** Find environmental CAPE ***
%
TP=T(NK);
RP=R(NK);
PP=P(NK);
[CAPEA, ~, IFLAG]= cape(TP,RP,PP,T,R,P,SIG);
if IFLAG ~= 1
IFL=2;
end
%
% *** Begin iteration to find mimimum pressure ***
%
while (abs(PNEW-PMOLD)) > 0.2
%
% *** Find CAPE at radius of maximum winds ***
%
TP=T(NK);
PP=min(PM,1000.0);
RP=0.622.*R(NK).*PSL./(PP.*(0.622+R(NK))-R(NK).*PSL);
[CAPEM, ~, IFLAG]=cape(TP,RP,PP,T,R,P,SIG);
if IFLAG ~= 1
IFL=2;
end
%
% *** Find saturation CAPE at radius of maximum winds ***
%
TP=SSTK;
PP=min(PM,1000.0);
RP=0.622.*ES0./(PP-ES0);
[CAPEMS, TOMS, IFLAG]=cape(TP,RP,PP,T,R,P,SIG);
TO=TOMS;
if IFLAG ~= 1
IFL=2;
end
RAT=SSTK/TOMS;
if IDISS == 0
RAT=1.0;
end
%
% *** Initial estimate of minimum pressure ***
%
RS0=RP;
TV1=T(1).*(1.+R(1)/0.622)./(1.+R(1));
TVAV=0.5.*(TV1+SSTK.*(1.+RS0./0.622)/(1.+RS0));
CAT=CAPEM-CAPEA+0.5.*CKCD.*RAT.*(CAPEMS-CAPEM);
CAT=max(CAT,0.0);
PNEW=PSL.*exp(-CAT./(287.04.*TVAV));
%
% *** Test for convergence ***
%
PMOLD=PM;
PM=PNEW;
NP=NP+1;
if NP > 200 || PM < 400
PMIN=PSL;
VMAX=0;
IFL=0;
return
end
%
end
%
CATFAC=0.5.*(1.+1./b);
CAT=CAPEM-CAPEA+CKCD.*RAT.*CATFAC.*(CAPEMS-CAPEM);
CAT=max(CAT,0.0);
PMIN=PSL.*exp(-CAT./(287.04.*TVAV));
%
FAC=max(0.0,(CAPEMS-CAPEM));
VMAX=VREDUC.*sqrt(CKCD.*RAT.*FAC);
%
%
function [CAPED,TOB,IFLAG]= cape(TP,RP,PP,T,R,P,SIG)
%
% This function calculates the CAPE of a parcel with pressure PP (mb),
% temperature TP (K) and mixing ratio RP (gm/gm) given a sounding
% of temperature (T in K) and mixing ratio (R in gm/gm) as a function
% of pressure (P in mb). CAPED is
% the calculated value of CAPE and TOB is the temperature at the
% level of neutral buoyancy. IFLAG is a flag
% integer. If IFLAG = 1, routine is successful; if it is 0, routine did
% not run owing to improper sounding (e.g.no water vapor at parcel level).
% IFLAG=2 indicates that routine did not converge.
%-------------------------------------------------------------------------
ptop=59; % Pressure below which sounding is ignored
%------------------------------------------------------------------------
Nold=max(size(P));
N=1;
for i=Nold:-1:1,
if P(i) > ptop
N=max(N,i);
break
end
end
if N < Nold
P(N+1:Nold)=[];
T(N+1:Nold)=[];
R(N+1:Nold)=[];
end
TVRDIF=zeros(1,N);
%
% *** Get minimum sounding level at or above PP ***
%
for i=1:N
if P(i)<=PP
JMIN=i;
break
end
end
%
% *** Default values ***
%
CAPED=0.0;
TOB=T(1);
IFLAG=1;
%
% *** Check that sounding is suitable ***
%
if RP < 1e-6 || TP < 200
IFLAG=0;
return
end
%
% *** Assign values of thermodynamic constants ***
%
CPD=1005.7;
CPV=1870.0;
% CL=4190.0;
CL=2500.0;
CPVMCL=CPV-CL;
RV=461.5;
RD=287.04;
EPS=RD./RV;
ALV0=2.501e6;
%
% *** Define various parcel quantities, including reversible ***
% *** entropy, S. ***
%
TPC=TP-273.15;
ESP=6.112*exp(17.67.*TPC/(243.5+TPC));
EVP=RP*PP/(EPS+RP);
RH=EVP/ESP;
RH=min(RH,1.0);
ALV=ALV0+CPVMCL*TPC;
S=(CPD+RP*CL)*log(TP)-RD*log(PP-EVP)+...
ALV*RP./TP-RP*RV*log(RH);
%
% *** Find lifted condensation pressure, PLCL ***
%
CHI=TP/(1669.0-122.0*RH-TP);
PLCL=PP*(RH^CHI);
%
% *** Begin updraft loop ***
%
NCMAX=0;
%
for J=JMIN:N,
%
% *** Parcel quantities below lifted condensation level ***
%
if P(J) >= PLCL
TG=TP*(P(J)./PP)^(RD/CPD);
RG=RP;
%
% *** Calculate buoyancy ***
%
TLVR=TG*(1.+RG/EPS)./(1.+RG);
TVRDIF(J)=TLVR-T(J).*(1.+R(J)/EPS)/(1+R(J));
else
%
% *** Parcel quantities above lifted condensation level ***
%
TGNEW=T(J);
TJC=T(J)-273.15;
ES=6.112*exp(17.67*TJC/(243.5+TJC));
RG=EPS*ES/(P(J)-ES);
%
% *** Iteratively calculate lifted parcel temperature and mixing ***
% *** ratio for reversible ascent ***
%
NC=0;
TG=0.0;
%
while (abs(TGNEW-TG)) > 0.001
%
TG=TGNEW;
TC=TG-273.15;
ENEW=6.112*exp(17.67*TC./(243.5+TC));
RG=EPS*ENEW/(P(J)-ENEW);
%
NC=NC+1;
%
% *** Calculate estimates of the rates of change of the entropy ***
% *** with temperature at constant pressure ***
%
ALV=ALV0+CPVMCL*(TG-273.15);
SL=(CPD+RP*CL+ALV*ALV*RG./(RV*TG*TG))/TG;
EM=RG*P(J)/(EPS+RG);
SG=(CPD+RP*CL)*log(TG)-RD*log(P(J)-EM)+ ...
ALV*RG/TG;
if NC < 3
AP=0.3;
else
AP=1.0;
end
TGNEW=TG+AP*(S-SG)/SL;
%
% *** Bail out if things get out of hand ***
%
if NC > 500 || ENEW > (P(J)-1)
IFLAG=2;
return
end
%
end
%
NCMAX=max(NC,NCMAX);
%
% *** Calculate buoyancy ***
%
RMEAN=SIG*RG+(1-SIG)*RP;
TLVR=TG*(1.+RG/EPS)/(1.+RMEAN);
TVRDIF(J)=TLVR-T(J)*(1.+R(J)/EPS)/(1.+R(J));
end
end
%
% *** Begin loop to find NA, PA, and CAPE from reversible ascent ***
%
NA=0.0;
PA=0.0;
%
% *** Find maximum level of positive buoyancy, INB ***
%
INB=1;
for J=N:-1:JMIN;
if TVRDIF(J) > 0
INB=max(INB,J);
end
end
if INB == JMIN
return
end
%
% *** Find positive and negative areas and CAPE ***
%
if INB > 1
for J=(JMIN+1):INB
PFAC=RD*(TVRDIF(J)+TVRDIF(J-1))*(P(J-1)-P(J))/(P(J)+P(J-1));
PA=PA+max(PFAC,0.0);
NA=NA-min(PFAC,0.0);
end
% *** Find area between parcel pressure and first level above it ***
%
PMA=(PP+P(JMIN)) ;
PFAC=RD*(PP-P(JMIN))/PMA;
PA=PA+PFAC*max(TVRDIF(JMIN),0.0);
NA=NA-PFAC*min(TVRDIF(JMIN),0.0);
%
% *** Find residual positive area above INB and TO ***
%
PAT=0.0;
TOB=T(INB);
if INB < N
PINB=(P(INB+1)*TVRDIF(INB)-P(INB)*TVRDIF(INB+1))/ ...
(TVRDIF(INB)-TVRDIF(INB+1));
PAT=RD*TVRDIF(INB)*(P(INB)-PINB)/(P(INB)+PINB);
TOB=(T(INB)*(PINB-P(INB+1))+T(INB+1)*(P(INB)-PINB))/ ...
(P(INB)-P(INB+1));
end
%
% *** Find CAPE ***
%
CAPED=PA+PAT-NA;
CAPED=max(CAPED,0.0);
end
%
return