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/CH10/EX10.15/example10_15.sce | |
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/CH10/EX10.15/example10_15.sce')
-rwxr-xr-x | 1271/CH10/EX10.15/example10_15.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1271/CH10/EX10.15/example10_15.sce b/1271/CH10/EX10.15/example10_15.sce new file mode 100755 index 000000000..f24bc2fa8 --- /dev/null +++ b/1271/CH10/EX10.15/example10_15.sce @@ -0,0 +1,11 @@ +clc +// Given that +n = 2000 // flux lines enter in given volume in Vm +n_ = 4000 // flux lines diverge from given volume in Vm +e0 = 8.85e-12 // permittivity of space +// Sample Problem 15 on page no. 10.42 +printf("\n # PROBLEM 15 # \n") +fi = n_ - n +q = e0 * fi +printf("Standard formula used \n fi = q/e_") +disp(q,' The total charge within volume(in C) = ') |