Remove unnecessary parens
This commit is contained in:
parent
25540d0ef7
commit
bb9b2e2dbf
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ class SoundingParameters():
|
||||||
if gph_last is not None:
|
if gph_last is not None:
|
||||||
gph_delta = gph - gph_last
|
gph_delta = gph - gph_last
|
||||||
|
|
||||||
cape += (((t_parcel) - (t_env)) / (t_env)) * gph_delta
|
cape += ((t_parcel - t_env) / t_env) * gph_delta
|
||||||
|
|
||||||
gph_last = gph
|
gph_last = gph
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue