diff options
Diffstat (limited to '1760/CH4/EX4.46/EX4_46.sci')
-rwxr-xr-x | 1760/CH4/EX4.46/EX4_46.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1760/CH4/EX4.46/EX4_46.sci b/1760/CH4/EX4.46/EX4_46.sci new file mode 100755 index 000000000..bf30e1cbb --- /dev/null +++ b/1760/CH4/EX4.46/EX4_46.sci @@ -0,0 +1,12 @@ + //EXAMPLE 4-46 PG NO-258-259
+X1=[10 -104-%i*200;0 205+%i*150];
+X2=[200+%i*200 -104-%i*200;-104-%i*200 205+%i*150];
+I1=det(X1/X2);
+disp(' Current is in polar form= '+string(I1)+' A');
+X3=[200+%i*200 10;-104-%i*200 0];
+X4=[200+%i*200 -104-%i*200;-104-%i*200 205+%i*150];
+I2=det(X3/X4);
+disp(' Current is in polar form = '+string(I2)+' A');
+V=10; //VOLTAGE
+P=V*5.1*10^-2; //POWERE
+disp(' POWER is = '+string(P)+' W');
|