美文网首页
激光武器

激光武器

作者: C_G__ | 来源:发表于2024-04-22 09:10 被阅读0次
计算公式.png
        var s = ''
        for (var i=70; i>0; i=i-10) {
            s += test(i)
        }
        console.log(s)
        function test(i) {
            var m = 3
            var h = i
            var x = Math.pow(6378140, 2)
            var hh = 6378140 + h
            var xx = Math.pow(hh, 2)
            var xxx = xx - x
            var s = Math.sqrt(xxx)
            return m + '(马赫), 武器平台高' + h + '(m): 视距:' + (s/1000).toFixed(3) + '(km), 反应时间:' + (s/(340 * m)).toFixed(3) +'(s)\r\n'
        }

激光武器

战斧巡航导弹 (Tomahawk BGM-109 Cruise missile)

0.8(马赫), 武器平台高70(m): 视距:29.882(km), 反应时间:109.861(s)
0.8(马赫), 武器平台高60(m): 视距:27.666(km), 反应时间:101.711(s)
0.8(马赫), 武器平台高50(m): 视距:25.255(km), 反应时间:92.849(s)
0.8(马赫), 武器平台高40(m): 视距:22.589(km), 反应时间:83.047(s)
0.8(马赫), 武器平台高30(m): 视距:19.562(km), 反应时间:71.921(s)
0.8(马赫), 武器平台高20(m): 视距:15.973(km), 反应时间:58.723(s)
0.8(马赫), 武器平台高10(m): 视距:11.294(km), 反应时间:41.523(s)

鹰击18

3(马赫), 武器平台高70(m): 视距:29.882(km), 反应时间:29.296(s)
3(马赫), 武器平台高60(m): 视距:27.666(km), 反应时间:27.123(s)
3(马赫), 武器平台高50(m): 视距:25.255(km), 反应时间:24.760(s)
3(马赫), 武器平台高40(m): 视距:22.589(km), 反应时间:22.146(s)
3(马赫), 武器平台高30(m): 视距:19.562(km), 反应时间:19.179(s)
3(马赫), 武器平台高20(m): 视距:15.973(km), 反应时间:15.659(s)
3(马赫), 武器平台高10(m): 视距:11.294(km), 反应时间:11.073(s)

相关文章

网友评论

      本文标题:激光武器

      本文链接:https://www.haomeiwen.com/subject/wxxbxjtx.html