summaryrefslogtreecommitdiff
path: root/3681/CH6/EX6.8
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH6/EX6.8
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3681/CH6/EX6.8')
-rw-r--r--3681/CH6/EX6.8/Ans6_8.PNGbin0 -> 8519 bytes
-rw-r--r--3681/CH6/EX6.8/Ex6_8.sce23
2 files changed, 23 insertions, 0 deletions
diff --git a/3681/CH6/EX6.8/Ans6_8.PNG b/3681/CH6/EX6.8/Ans6_8.PNG
new file mode 100644
index 000000000..609ec5582
--- /dev/null
+++ b/3681/CH6/EX6.8/Ans6_8.PNG
Binary files differ
diff --git a/3681/CH6/EX6.8/Ex6_8.sce b/3681/CH6/EX6.8/Ex6_8.sce
new file mode 100644
index 000000000..640a265ef
--- /dev/null
+++ b/3681/CH6/EX6.8/Ex6_8.sce
@@ -0,0 +1,23 @@
+// Calculating the maximum permissible specific electric loading
+clc;
+disp('Example 6.8, Page No. = 6.13')
+// Given Data
+p_20 = 1.734*10^(-8);// Resistivity of copper at 20 degree celsius (in ohm*meter)
+alpha = 0.00393;// Resistance temperature co-efficient of copper at 20 degree celsius (in per degree celsius)
+s = 3.5;// Current density (in A per mm square)
+c = 0.03;// Cooling co-efficient
+Tm_ambient = 40;// Maximum ambient temperature (in degree celsius)
+Tm_rise_A = 50;// Maximum temperature rise for Class A insulation (in degree celsius)
+Tm_rise_E = 65;// Maximum temperature rise for Class E insulation (in degree celsius)
+// Calculation of the maximum permissible specific electric loading
+//for Class A insulation
+T_A = Tm_ambient+Tm_rise_A;// Operating temperature of copper conductors (in degree celsius)
+p = p_20*(1+alpha*(T_A-20));// Resistivity at operating temperature (in ohm*meter)
+ac = Tm_rise_A/(p*s*10^(6)*c);// Maximum permissible specific electric loading
+disp(ac,'Maximum allowable specific electric loading (ampere conductors per meter)=');
+T_E = Tm_ambient+Tm_rise_E;// Operating temperature of copper conductors (in degree celsius)
+//for Class E insulation
+p = p_20*(1+alpha*(T_E-20));// Resistivity at operating temperature (in ohm*meter)
+ac = Tm_rise_E/(p*s*10^(6)*c);// Maximum permissible specific electric loading
+disp(ac,'Maximum allowable specific electric loading (ampere conductors per meter)=');
+//in book answers are 21600 (ampere conductors per meter) and 26700 (ampere conductors per meter) respectively. The answers vary due to round off error