diff options
Diffstat (limited to '1970/CH4/EX4.1/Ch04Exa1.sce')
-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 |