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 /1730/CH2/EX2.38 | |
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 '1730/CH2/EX2.38')
-rwxr-xr-x | 1730/CH2/EX2.38/Exa2_38.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1730/CH2/EX2.38/Exa2_38.sce b/1730/CH2/EX2.38/Exa2_38.sce new file mode 100755 index 000000000..2bdbe4808 --- /dev/null +++ b/1730/CH2/EX2.38/Exa2_38.sce @@ -0,0 +1,19 @@ +//Exa2.38
+clc;
+clear;
+close;
+format('v',7)
+//given data
+l=60;// in cm
+l=l*10^-2;//in meter
+d=20;// in cm
+d=d*10^-2;//in meter
+D=35;// in cm;
+D=D*10^-2;//in meter
+r1=d/2;
+r2=D/2;
+rho=8000;// in ohm-cm
+rho=80;// in ohm-m
+// Let Insulation resistance of the liquid resistor = Ir
+Ir=[rho/(2*%pi*l)]*log(r2/r1);
+disp(" Insulation resistance of the liquid resistor is : "+string(Ir)+" ohm")
\ No newline at end of file |