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 /2045/CH13/EX13.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 '2045/CH13/EX13.1')
-rwxr-xr-x | 2045/CH13/EX13.1/Ex13_1.pdf | bin | 0 -> 10391 bytes | |||
-rwxr-xr-x | 2045/CH13/EX13.1/Ex13_1.sce | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/2045/CH13/EX13.1/Ex13_1.pdf b/2045/CH13/EX13.1/Ex13_1.pdf Binary files differnew file mode 100755 index 000000000..0954d9de4 --- /dev/null +++ b/2045/CH13/EX13.1/Ex13_1.pdf diff --git a/2045/CH13/EX13.1/Ex13_1.sce b/2045/CH13/EX13.1/Ex13_1.sce new file mode 100755 index 000000000..09628761a --- /dev/null +++ b/2045/CH13/EX13.1/Ex13_1.sce @@ -0,0 +1,11 @@ +//pagenumber 578 example 1
+clear
+quanti=3*10^17;
+voltag=10*10^3;//volt
+distan=40*10^-3;//metre per minute
+w=quanti*1.6*10^-19*voltag
+w=w/60;//per second
+
+
+disp("power to electrons = "+string((w))+"watts");
+
|