summaryrefslogtreecommitdiff
path: root/1970/CH4/EX4.13/Ch04Exa13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1970/CH4/EX4.13/Ch04Exa13.sce')
-rwxr-xr-x1970/CH4/EX4.13/Ch04Exa13.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1970/CH4/EX4.13/Ch04Exa13.sce b/1970/CH4/EX4.13/Ch04Exa13.sce
new file mode 100755
index 000000000..a067bc48a
--- /dev/null
+++ b/1970/CH4/EX4.13/Ch04Exa13.sce
@@ -0,0 +1,11 @@
+// Scilab code Exa4.13 : : Page 181 (2011)
+clc; clear;
+V = 2e-03; // Voltage impulse, volt
+C = 120e-012; // Capacitance of the capacitor, F
+e = 1.6e-019; // Charge of the electron, C
+n = C*V/(15*e); // No. of electons
+N = n^(1/10); // No. of electrons in the output
+printf("\nNo. of electrons in the output : %4.2f (approx)", N);
+
+// Result
+// No. of electrons in the output : 3.16 (approx) \ No newline at end of file