diff options
Diffstat (limited to '3673/CH5/EX5.a.6')
-rw-r--r-- | 3673/CH5/EX5.a.6/Example_a_5_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3673/CH5/EX5.a.6/Example_a_5_6.sce b/3673/CH5/EX5.a.6/Example_a_5_6.sce new file mode 100644 index 000000000..3c3f53cb7 --- /dev/null +++ b/3673/CH5/EX5.a.6/Example_a_5_6.sce @@ -0,0 +1,15 @@ +//Example_a_5_6 page no:206
+clc;
+V=100;
+f=50;
+R=50;
+C=100*10^-6;
+Xc=1/(2*%pi*f*C);
+Bc=1/Xc;
+G=1/R;
+Y=sqrt(G^2+Bc^2);
+Z=1/Y;
+theta=atand(R/Xc);
+disp(Z,"the impedence in the circuit is (in ohm)");
+disp(theta,"the phase angle in the circuit is (in degree)");
+//the impedence value varies slightly with text book due to round off values in text book, hence both answers are same
|