diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1970/CH4/EX4.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1970/CH4/EX4.1')
-rwxr-xr-x | 1970/CH4/EX4.1/Ch04Exa1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1970/CH4/EX4.1/Ch04Exa1.sce b/1970/CH4/EX4.1/Ch04Exa1.sce new file mode 100755 index 000000000..ec089f85c --- /dev/null +++ b/1970/CH4/EX4.1/Ch04Exa1.sce @@ -0,0 +1,11 @@ +// Scilab code Exa4.1 : : Page 178 (2011)
+clc; clear;
+N = 200e+006/35; // Total number of ion-pairs
+e = 1.60218e-019; // Charge of an ion, coulomb
+Q = N*e; // Total charge produced in the chamber, coulomb
+C = 25e-012; // Capacity of the collector, farad
+V = Q/C; // Resultant pulse height, volt
+printf("\nThe resultant pulse height recorded in the fission chamber = %4.2e volt", V);
+
+// Result
+// The resultant pulse height recorded in the fission chamber = 3.66e-002 volt
\ No newline at end of file |