diff options
Diffstat (limited to '3850/CH46/EX46.7')
-rw-r--r-- | 3850/CH46/EX46.7/Ex46_7.sce | 23 | ||||
-rw-r--r-- | 3850/CH46/EX46.7/Ex46_7.txt | 3 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3850/CH46/EX46.7/Ex46_7.sce b/3850/CH46/EX46.7/Ex46_7.sce new file mode 100644 index 000000000..271556adb --- /dev/null +++ b/3850/CH46/EX46.7/Ex46_7.sce @@ -0,0 +1,23 @@ + +//To Calculate the Temperature of Deutrons for a specific Average Kinetic Energy
+//Example 46.7
+
+clear;
+
+clc;
+
+e=1.6*10^-19;//Charge on an electron in Coloumbs
+
+E=9*10^9;//Value of Constant (1/(4*%pi*e0)) in N-m^2/C^2
+
+d=2*10^-15;//Closest Seperation between 2 deutrons in metres
+
+K=e^2*E/(2*d);//Initial Kinetic Energy of each deuteron
+
+printf("Kinetic Energy of each deuteron so that the closest seprations between them becomes 2 fm = %.1f*10^-14 J",K*10^14);
+
+k=1.38*10^-23;//Boltzmann Constant
+
+T=K/(k*1.5);//Temperature needed for the deutrons to have the Average Kinetic Energy
+
+printf("\n Temperature needed for the deutrons to have the Average Kinetic Energy = %.1f*10^9 K",T*10^-9);
diff --git a/3850/CH46/EX46.7/Ex46_7.txt b/3850/CH46/EX46.7/Ex46_7.txt new file mode 100644 index 000000000..5b296fa7b --- /dev/null +++ b/3850/CH46/EX46.7/Ex46_7.txt @@ -0,0 +1,3 @@ + + Kinetic Energy of each deuteron so that the closest seprations between them becomes 2 fm = 5.8*10^-14 J
+ Temperature needed for the deutrons to have the Average Kinetic Energy = 2.8*10^9 K
\ No newline at end of file |