Skip to content

Commit

Permalink
Merge pull request #3613 from kgoebber/fix_comples_sound_ex
Browse files Browse the repository at this point in the history
fix wrong input to function
  • Loading branch information
dopplershift authored Aug 28, 2024
2 parents 0f69d91 + b701093 commit 92cb09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Advanced_Sounding_With_Complex_Layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
# mixed layer parcel properties!
ml_t, ml_td = mpcalc.mixed_layer(p, T, Td, depth=50 * units.hPa)
ml_p, _, _ = mpcalc.mixed_parcel(p, T, Td, depth=50 * units.hPa)
mlcape, mlcin = mpcalc.mixed_layer_cape_cin(p, T, prof, depth=50 * units.hPa)
mlcape, mlcin = mpcalc.mixed_layer_cape_cin(p, T, Td, depth=50 * units.hPa)

# most unstable parcel properties!
mu_p, mu_t, mu_td, _ = mpcalc.most_unstable_parcel(p, T, Td, depth=50 * units.hPa)
Expand Down

0 comments on commit 92cb09c

Please sign in to comment.