summaryrefslogtreecommitdiff
path: root/1376/CH6
diff options
context:
space:
mode:
Diffstat (limited to '1376/CH6')
-rwxr-xr-x1376/CH6/EX6.1/6_1.sci7
-rwxr-xr-x1376/CH6/EX6.2/6_2.sci8
-rwxr-xr-x1376/CH6/EX6.3/6_3.sci8
-rwxr-xr-x1376/CH6/EX6.4/6_4.sci7
-rwxr-xr-x1376/CH6/EX6.5/6_5.sci10
5 files changed, 40 insertions, 0 deletions
diff --git a/1376/CH6/EX6.1/6_1.sci b/1376/CH6/EX6.1/6_1.sci
new file mode 100755
index 000000000..ddbdad247
--- /dev/null
+++ b/1376/CH6/EX6.1/6_1.sci
@@ -0,0 +1,7 @@
+//6.1
+clc;
+r=250;
+s=1000;
+l=1000;
+x=r*l/s;
+printf("Position of the fault=%.1fm",x) \ No newline at end of file
diff --git a/1376/CH6/EX6.2/6_2.sci b/1376/CH6/EX6.2/6_2.sci
new file mode 100755
index 000000000..d37609a54
--- /dev/null
+++ b/1376/CH6/EX6.2/6_2.sci
@@ -0,0 +1,8 @@
+//6.2
+clc;
+r=600;
+s=1000;
+El=500*30/50;
+l=450+El;
+x=r*l/s;
+printf("Position of the fault=%.1f m",x) \ No newline at end of file
diff --git a/1376/CH6/EX6.3/6_3.sci b/1376/CH6/EX6.3/6_3.sci
new file mode 100755
index 000000000..b0493e5c1
--- /dev/null
+++ b/1376/CH6/EX6.3/6_3.sci
@@ -0,0 +1,8 @@
+//6.3
+clc;
+R_armature=0.256/16;
+printf("Armature Resistance=%.2f ohm",R_armature)
+R_armature_true=0.256/(16-(0.256/10));
+Error=R_armature-R_armature_true;
+Error_percentage=Error*100/R_armature_true;
+printf("\nPercentage Error=%.2f",Error_percentage) \ No newline at end of file
diff --git a/1376/CH6/EX6.4/6_4.sci b/1376/CH6/EX6.4/6_4.sci
new file mode 100755
index 000000000..4fd3a7a1d
--- /dev/null
+++ b/1376/CH6/EX6.4/6_4.sci
@@ -0,0 +1,7 @@
+//6.4
+clc;
+R1=45;
+R2=100-R1;
+l=500;
+x=2*l*R1/(R1+R2);
+printf("Position of the fault from the test end=%.1f m",x) \ No newline at end of file
diff --git a/1376/CH6/EX6.5/6_5.sci b/1376/CH6/EX6.5/6_5.sci
new file mode 100755
index 000000000..9afbf6c33
--- /dev/null
+++ b/1376/CH6/EX6.5/6_5.sci
@@ -0,0 +1,10 @@
+clc;
+//5.6
+r3=300;
+r2=1500;
+r1=15;
+R=(r3/r2)*r1;
+l=4000;
+r3=180;
+d=(2*l/R)*(R*r2-r3*r1)/(r1+r2);
+printf("Distance of the fault=%.2fm",d) \ No newline at end of file