summaryrefslogtreecommitdiff
path: root/767/CH7/EX7.6.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /767/CH7/EX7.6.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '767/CH7/EX7.6.2')
-rwxr-xr-x767/CH7/EX7.6.2/Ch07Exa7_6_2.sci79
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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+