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 /3281/CH9/EX9.13 | |
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 '3281/CH9/EX9.13')
-rwxr-xr-x | 3281/CH9/EX9.13/ex9_13.jpg | bin | 0 -> 7901 bytes | |||
-rwxr-xr-x | 3281/CH9/EX9.13/ex9_13.sce | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3281/CH9/EX9.13/ex9_13.jpg b/3281/CH9/EX9.13/ex9_13.jpg Binary files differnew file mode 100755 index 000000000..2614f2778 --- /dev/null +++ b/3281/CH9/EX9.13/ex9_13.jpg diff --git a/3281/CH9/EX9.13/ex9_13.sce b/3281/CH9/EX9.13/ex9_13.sce new file mode 100755 index 000000000..9d288f2df --- /dev/null +++ b/3281/CH9/EX9.13/ex9_13.sce @@ -0,0 +1,14 @@ +//Page Number: 487
+//Example 9.13
+clc;
+//Given
+e=1.6D-19;
+n1=1D+16; //m-3
+mu1=8000D-4; //m2/Vs
+nu=1D+14; //m-3
+muu=180D-4; //m2/Vs
+
+///Conductivity
+C=e*((n1*mu1)+(nu*muu));
+disp('m mho',C*1000,'Conductivity:');
+
|