summaryrefslogtreecommitdiff
path: root/3888/CH7
diff options
context:
space:
mode:
Diffstat (limited to '3888/CH7')
-rw-r--r--3888/CH7/EX7.1/Ex7_1.JPGbin0 -> 13788 bytes
-rw-r--r--3888/CH7/EX7.1/Ex7_1.sce20
-rw-r--r--3888/CH7/EX7.2/Ex7_2.JPGbin0 -> 15388 bytes
-rw-r--r--3888/CH7/EX7.2/Ex7_2.sce21
-rw-r--r--3888/CH7/EX7.3/Ex7_3.JPGbin0 -> 16234 bytes
-rw-r--r--3888/CH7/EX7.3/Ex7_3.sce20
6 files changed, 61 insertions, 0 deletions
diff --git a/3888/CH7/EX7.1/Ex7_1.JPG b/3888/CH7/EX7.1/Ex7_1.JPG
new file mode 100644
index 000000000..cf83e9936
--- /dev/null
+++ b/3888/CH7/EX7.1/Ex7_1.JPG
Binary files differ
diff --git a/3888/CH7/EX7.1/Ex7_1.sce b/3888/CH7/EX7.1/Ex7_1.sce
new file mode 100644
index 000000000..034427721
--- /dev/null
+++ b/3888/CH7/EX7.1/Ex7_1.sce
@@ -0,0 +1,20 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 7.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+helium_atomic_mass=4.002603; //Atomic mass of Helium in amu
+mp=1.007277; //Atomic mass of Proton in amu
+mn=1.008665; //Atomic mass of Neutron in amu
+me=0.00055; //Atomic mass of Electron in amu
+del_m=2*mp+2*me+2*mn-helium_atomic_mass; //Mass Defect in amu
+Be=del_m*931; //Helium Binding Energy in MeV
+Be_molecule=Be/4; //Helium Binding Energy per Nucleon in MeV
+
+
+printf("\nBinding energy per nucleon is %.3f MeV",Be_molecule);
diff --git a/3888/CH7/EX7.2/Ex7_2.JPG b/3888/CH7/EX7.2/Ex7_2.JPG
new file mode 100644
index 000000000..351b03f60
--- /dev/null
+++ b/3888/CH7/EX7.2/Ex7_2.JPG
Binary files differ
diff --git a/3888/CH7/EX7.2/Ex7_2.sce b/3888/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..3ee5aadc0
--- /dev/null
+++ b/3888/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,21 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 7.2
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+rad_atomic_mass=226.095; //Atomic Mass of Radium in amu
+rad_decay_const=1.3566*10^-11; //Decay Constant of Radium in 1/s
+Half_life=0.6931/rad_decay_const; //Radium Half Life in sec
+Half_life_yr=Half_life/(365*24*60*60); //Radium Half Life in year
+N=6.023*10^23/rad_atomic_mass; //Number of atoms per gram of Radium
+Activity=rad_decay_const*N; //Activity of Radium in disintegration/second
+Activity_curi=Activity/(3.7*10^10); //Activity of Radium in Ci
+
+
+printf("\nHalf life is %e sec or %.2f yr",Half_life,Half_life_yr);
+printf("\nThe initial activity is %.3f Ci",Activity_curi);
diff --git a/3888/CH7/EX7.3/Ex7_3.JPG b/3888/CH7/EX7.3/Ex7_3.JPG
new file mode 100644
index 000000000..41080b4c7
--- /dev/null
+++ b/3888/CH7/EX7.3/Ex7_3.JPG
Binary files differ
diff --git a/3888/CH7/EX7.3/Ex7_3.sce b/3888/CH7/EX7.3/Ex7_3.sce
new file mode 100644
index 000000000..095c506b2
--- /dev/null
+++ b/3888/CH7/EX7.3/Ex7_3.sce
@@ -0,0 +1,20 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 7.3
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+neu_absor=0.80; //Absorbed Neutrons of Uranium_235 in percentage
+P=100; //Power of Uranium_235 in kW
+use_energy=190; //Useful Energy of Uranium_235 in MeV
+energy=use_energy*10^6*1.60*10^-19; //Fission Energy of Uranium_235 in J
+fission_energy=1/energy; //Number of Fission to Produced One Joule of Energy
+nuclei_power=fission_energy*3600*10^6/neu_absor; //Number of Nuclei Burnt during 1 hour per MW of Power
+Mass=nuclei_power*235/(6.023*10^23); //Mass of Uranium_235 to produce required Power in g/hr
+
+
+printf("\nFuel consumption of U-235 to produce 100 MW will be %.4f g/hr",Mass*100);