diff options
Diffstat (limited to '1730/CH2/EX2.38/Exa2_38.sce')
-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 |