我創建了一個字典,對速度,溫度和海拔高度值:功能使用字典作爲參數
mach_dict = dict(velocity=[], altitude=[], temperature=[])
我使用存儲值在爬升,巡航和降落段飛平原。
mach_dict = {'velocity': [0, 300, 495, 500, 300], 'altitude': [288.15, 288.15, 288.15, 288.15, 288.15], 'temperature': [0, 0, 50, 50, 50]}
我需要創建一個函數(DEF)返回存儲每一個段馬赫數的字典。
估計Mach
我使用的公式:
Mach = velocity/sqrt(1.4 * 286 * (Temperature - altitude * 0.05))
任何人可以對幫助嗎?
你能澄清輸出應該是什麼喜歡? – Mureinik
你的意思是你需要計算每個索引到3列表馬赫? –
sqrt在某些情況下爲負數!溫度= 0 => sqrt(負)=>錯誤。 –