前言 常看探空斜溫圖的人,多少會熟悉右上角那些數據。 這篇主要提供舉升凝結高度(Lifting Condensation Level, L.C.L.) 的估算方法 LCL就不再多解釋,可參考底下兩圖。 來源1、來源2 ## 方法 [Romps, Exact expression for the lifting condensation level, JAS, 2017](https://www.romps.berkeley.edu/papers/pubs-2016-lcl.html "lifting condensation level") 使用其附的fortran code,輸入自訂測站氣壓、地表溫度、相對溼度,推算出LCL(exact expression)。 Romps, Accurate expressions for the dew point and frost point derived from the Rankine-Kirchhoff approximations, JAS, 2021 使用其附的fortran code,推算出露點溫度。 再將此露點溫度(Td)套入LCL半經驗公式(approximate expression): 124*(T-Td) 用於層狀雲 208*(T-Td) 用於對流雲 ## 程式 幾乎都是用現成module,只需要寫主程式不會太難。 更進一步可以套大量觀測資料、API 去算 最基本能用來輔助判斷雲底高度及對應雲屬,其他應用就看個人創意。 **程式碼:** https://github.com/109605510/L.C.L.-try 這裡面的.exe可不是Windows能執行的 要編譯執行的話可用WSL2 懶得弄就把code貼到隨便一個線上IDE跑