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 /1271/CH20/EX20.9 | |
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 '1271/CH20/EX20.9')
-rwxr-xr-x | 1271/CH20/EX20.9/9.txt | 5 | ||||
-rwxr-xr-x | 1271/CH20/EX20.9/example20_9.sce | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1271/CH20/EX20.9/9.txt b/1271/CH20/EX20.9/9.txt new file mode 100755 index 000000000..5a9e25170 --- /dev/null +++ b/1271/CH20/EX20.9/9.txt @@ -0,0 +1,5 @@ + # PROBLEM 9 #
+Standard formula used
+ I = ne
+
+ Number of electrons striking the anode per sec is 6.250000e+15.
diff --git a/1271/CH20/EX20.9/example20_9.sce b/1271/CH20/EX20.9/example20_9.sce new file mode 100755 index 000000000..d1c57b88e --- /dev/null +++ b/1271/CH20/EX20.9/example20_9.sce @@ -0,0 +1,11 @@ +clc +// Given that +V = 50e3 // voltage in V +i = 1e-3 // current in amp +e = 1.6e-19 // charge on an electron in C +// Sample Problem 9 on page no. 20.9 +printf("\n # PROBLEM 9 # \n") +printf("Standard formula used \n ") +printf("I = ne \n") +n = i / e +printf("\n Number of electrons striking the anode per sec is %e.",n) |