diff options
Diffstat (limited to '767/CH7/EX7.6.2')
-rwxr-xr-x | 767/CH7/EX7.6.2/Ch07Exa7_6_2.sci | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/767/CH7/EX7.6.2/Ch07Exa7_6_2.sci b/767/CH7/EX7.6.2/Ch07Exa7_6_2.sci new file mode 100755 index 000000000..44c5b8bda --- /dev/null +++ b/767/CH7/EX7.6.2/Ch07Exa7_6_2.sci @@ -0,0 +1,79 @@ +// Scilab code Exa7.6.2 : To calculate the amplitude of output voltage pulse for NaI(Tl) :P.no. 314 (2011)
+e = 1.6e-019; // Charge of an electron, C
+n = 4.2e+08; // Number of photoelectrons
+C = 200e-012; // Capacitance, F
+A = n*e/C; // Amplitude of output voltage pulse, V
+printf("\n Amplitude of output voltage pulse : %4.2f V ",A)
+// Result
+// Amplitude of output voltage pulse : 0.34 V
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|