diff options
Diffstat (limited to '3523/CH12/EX12.17.3/Ex12_3.sce')
-rw-r--r-- | 3523/CH12/EX12.17.3/Ex12_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3523/CH12/EX12.17.3/Ex12_3.sce b/3523/CH12/EX12.17.3/Ex12_3.sce new file mode 100644 index 000000000..b3d58c135 --- /dev/null +++ b/3523/CH12/EX12.17.3/Ex12_3.sce @@ -0,0 +1,12 @@ +//Example 3// Ch 12
+clc;
+clear;
+close;
+// given data
+l=10*10^3;//core cable length in m
+Res=0.5;//insulation resistance in Mohms
+R=1.5;//core diameter in cm
+R1=3;//sheath diameter in cm
+resistivity=Res*2*%pi*l/log(R1/R);
+printf("resistivity of the material %e Mohms.m",resistivity )
+
|