// ----- MEMBERSHIP LEVEL + AMOUNT (robust) ----- function getMembershipLevel(){ var form = document.querySelector('form[class*="swpm"], form[id*="swpm"]') || document.querySelector('form'); if(!form) return null; // 1) Hidden input var hidden = form.querySelector('input[name="membership_level"], input[name="level"], input[name="swpm_level"]'); if (hidden && hidden.value && hidden.value.trim() !== '') { var n = parseInt(hidden.value.trim(), 10); if (!isNaN(n)) return n; } // 2) Radio group var radios = form.querySelectorAll('input[type="radio"][name="membership_level"], input[type="radio"][name="level"], input[type="radio"][name="swpm_level"]'); if (radios && radios.length) { for (var i=0;i amount (supports both numeric IDs and string plan IDs if you add them) function amountForLevel(lvl){ // If your site uses plan IDs instead of 3/4/5, map them here too: // e.g. if "Standard Plan" is ID 7 and should be ₹400: if (lvl === 7) return 400; if (lvl === 3) return 400; if (lvl === 4) return 300; if (lvl === 5) return 200; return null; } // Always format amount as 2 decimals for UPI function formatAmount(am){ if (am == null) return null; var n = Number(am); if (!isNaN(n)) return n.toFixed(2); // "400.00" return null; } // Build UPI link with forced amount + tn=username function upiLink(username){ var lvl = getMembershipLevel(); var am = amountForLevel(lvl); var amStr = formatAmount(am); var tn = (username || '').trim(); var link = 'upi://pay?pa='+encodeURIComponent(payeeVPA) + '&pn='+encodeURIComponent(payeeName) + '&cu=INR' + (amStr ? '&am='+encodeURIComponent(amStr) : '') + (tn ? '&tn='+encodeURIComponent(tn) : ''); return link; } // Re-render (unchanged call sites) function render(){ var uname = (userInput.value || '').trim(); var link = upiLink(uname); if (qr.clear) qr.clear(); qr.makeCode(link); var open = document.getElementById('swpm-upi-open'); if(open) open.href = link; } India Successfully Test-Fires Agni-5 Missile - Bharat Pulse News
Science Space & Astronomy

India Successfully Test-Fires Agni-5 Missile

India has successfully carried out the test launch of its Agni-5 intermediate-range ballistic missile from the Integrated Test Range at Chandipur in Odisha. The launch was overseen by the Strategic Forces Command, with support from the Defence Research and Development Organisation (DRDO). Officials confirmed that the missile met all technical and operational parameters during the test.

Capabilities of Agni-5

The Agni-5 is the most advanced missile in India’s Agni series and has a strike range of over 5,000 kilometres. It is nuclear capable and designed to enhance India’s deterrence posture against long-range threats. Equipped with a maneuverable re-entry vehicle and advanced navigation systems, the missile is built for accuracy and survivability against missile defense systems.

Strategic Significance

Defence experts note that the successful test reaffirms India’s policy of maintaining a credible minimum deterrent. The missile extends India’s reach across Asia, covering potential strategic adversaries. Its canister-based design ensures quick mobility and launch readiness, making it a flexible weapon in India’s arsenal.

Previous Advancements

India has been steadily improving its long-range missile capability. In March 2024, under Mission Divyastra, India demonstrated the Multiple Independently Targetable Re-entry Vehicle (MIRV) technology with the Agni-5, allowing a single missile to carry and deliver multiple warheads. The latest test, however, focused on validating operational reliability under standard launch conditions rather than testing new enhancements.

Outlook for India’s Missile Program

The Agni-5 test signals India’s continued commitment to strengthening its strategic deterrence. With advancements in MIRV, canisterization, and precision guidance, India is consolidating its position as a key military power in the region. Defence analysts believe such developments provide India with the ability to respond effectively to evolving security challenges.

Related Posts