summaryrefslogtreecommitdiff
path: root/1271/CH10/EX10.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH10/EX10.15
downloadScilab-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')
-rwxr-xr-x1271/CH10/EX10.15/15.txt4
-rwxr-xr-x1271/CH10/EX10.15/example10_15.sce11
2 files changed, 15 insertions, 0 deletions
diff --git a/1271/CH10/EX10.15/15.txt b/1271/CH10/EX10.15/15.txt
new file mode 100755
index 000000000..c21f65e4e
--- /dev/null
+++ b/1271/CH10/EX10.15/15.txt
@@ -0,0 +1,4 @@
+ The total charge within volume(in C) =
+
+ 1.770D-08
+
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) = ')