summaryrefslogtreecommitdiff
path: root/1760/CH2/EX2.112/EX2_112.sce
diff options
context:
space:
mode:
Diffstat (limited to '1760/CH2/EX2.112/EX2_112.sce')
-rwxr-xr-x1760/CH2/EX2.112/EX2_112.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1760/CH2/EX2.112/EX2_112.sce b/1760/CH2/EX2.112/EX2_112.sce
new file mode 100755
index 000000000..8cbbe25a4
--- /dev/null
+++ b/1760/CH2/EX2.112/EX2_112.sce
@@ -0,0 +1,13 @@
+ //EXAMPLE 2-112 PG NO-148
+I=5;
+R=25;
+Z=50;
+Z1=40;
+R1=[Z^2-R^2-1600]/50;
+disp('i) RESISTANCE (R1) is = '+string (R1) +' ohm ')
+X1=[1600-R1^2]^0.5;
+disp('ii) INDUCTANCE (X1) is = '+string (X1) +' ohm ')
+Pc=I*I*R1;
+disp('iii) Power (Pc) is = '+string (Pc) +' W ');
+P=I*I*(R+R1);
+disp('iv) Power (P) is = '+string (P) +' W ');