We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7631564 + 0e650d6 commit 015eb8fCopy full SHA for 015eb8f
aeolis/threshold.py
@@ -238,22 +238,6 @@ def compute_moisture(s, p):
238
239
return s
240
241
-def dry_layer(s, p):
242
-
243
- Tdry_top = 12. * 3600.
244
- zdry_max = 0.05
245
246
- s['dzdry'] = (zdry_max - s['zdry']) * (p['dt_opt'] * p['accfac']) / Tdry_top + s['dzb']
247
- s['zdry'] += s['dzdry']
248
- s['zdry'] = np.minimum(np.maximum(s['zdry'], 0), zdry_max)
249
250
- ix = (s['zdry'] == 0.)
251
252
- s['uth'][ix] = np.inf
253
254
255
- return s
256
257
258
#REMOVE?? CH
259
# def compute_humidity(s, p):
0 commit comments