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 /3014/CH7/EX7.9/Ex7_9.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 '3014/CH7/EX7.9/Ex7_9.sce')
-rwxr-xr-x | 3014/CH7/EX7.9/Ex7_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3014/CH7/EX7.9/Ex7_9.sce b/3014/CH7/EX7.9/Ex7_9.sce new file mode 100755 index 000000000..04c29812e --- /dev/null +++ b/3014/CH7/EX7.9/Ex7_9.sce @@ -0,0 +1,12 @@ +
+
+clc
+//Given that
+mu_0 = 4*%pi*1e-7 // Permeability of free space
+mu = mu_0 //Permeability of silver
+sigma = 3e7 // conductivity in mhos/m
+f = 1e10 // frequency in Hz
+printf("Example 7.9")
+delta = sqrt(1/(%pi*sigma*f*mu)) // Calculation of skin depth penetration
+printf("\n Skin depth penetration is %f micrometre. \n\n\n",delta*1e6)
+// Answer in book is 0.93 micrometer
|