0
<!DOCTYPE html>
<html>
<body>

<p>AO-1s</p>

<form>
  <input type="radio" name="O_1s" value="0">1s<sup>1</sup><br>
  <input type="radio" name="O_1s" value="0.3">1s<sup>2</sup><br>
  <br>
 
</form>

<br/>
Điền vào số Z:

<form>
<input id="solieu" type="text" name="n" size="30" maxlength="3" value=""> <br>
 <input type="reset" value="Reset" onclick="n.focus()">
</form>

Nhấn để xem kết quả:

<button onclick="myFunction2()">Tính năng lượng AO E(1s)</button>
<p id="order"></p>
<p id="demo"></p>

<p id="demo2"></p>
<script>
function myFunction2() {
    var x = document.getElementById("solieu").value;
        z=x;
// lặp lại câu lệnh  
 var O_1s= document.forms[0];
    var txt = "";
    var i;
    for (i = 0; i < O_1s.length; i++) {
        if (O_1s[i].checked) {
           
            txt = txt + O_1s[i].value + " ";
            AO_1s=O_1s[i].value;
          thu_tu=i+1;
        }
    }

// tính toán
if (z>=thu_tu)
{
        Z_hd = z-AO_1s;
        n1=1;
        n2=2;
        n3=3;
        n4=3.7;
        n5=4;
        n6=4.2;
    var  E_AO_1s= -13.6*(Z_hd*Z_hd)/(1*1) ;
     // In ra màn hình
       document.getElementById("order").innerHTML = "Hằng số chắn của AO-1s: "+"σ(1s)=" + txt + "giá trị i là:"+thu_tu;
       document.getElementById("demo").innerHTML ="Giá trị năng lượng AO 1s là: "+ E_AO_1s+"eV";
     
}
else {document.getElementById("demo").innerHTML ="Số nhập z phải lớn hơn 2, vì ko thể có cấu hình 1s"+ "2".sup()+ "khi Z=1";}
}
</script>
</body>
</html>

Đăng nhận xét

 
Top