diff options
Diffstat (limited to '3369/CH12/EX12.3')
-rwxr-xr-x | 3369/CH12/EX12.3/Ex12_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3369/CH12/EX12.3/Ex12_3.sce b/3369/CH12/EX12.3/Ex12_3.sce new file mode 100755 index 000000000..0ad841adb --- /dev/null +++ b/3369/CH12/EX12.3/Ex12_3.sce @@ -0,0 +1,11 @@ +//Chapter 12, Exmaple 3, page 406 +//Calculate resistivity +clear +clc +l = 10^4 // cable length in m +Rr = 3/1.5 // R/r ratio +ins = 0.5*10**6 // insulation in ohms +p = 2*%pi*l*ins/log(Rr) +printf("\n Resistivity of insulation material = %e ohm/m ",p) + +// Answers may vary due to round off error |