diff options
Diffstat (limited to '3673/CH8/EX8.a.15/Example_a_8_15.sce')
-rw-r--r-- | 3673/CH8/EX8.a.15/Example_a_8_15.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3673/CH8/EX8.a.15/Example_a_8_15.sce b/3673/CH8/EX8.a.15/Example_a_8_15.sce new file mode 100644 index 000000000..4bcef3437 --- /dev/null +++ b/3673/CH8/EX8.a.15/Example_a_8_15.sce @@ -0,0 +1,13 @@ +//Example_a_8_15 page no:335
+clc;
+V=220;
+f=50;
+Vr=550;
+Ir=1;
+R=V/Ir;
+C=1/(Vr*2*%pi*f);
+C=C*10^6;
+L=1/((C*10^-6)*(100*%pi)^2);
+disp(R,"the resistance is (in ohm)");
+disp(L,"the inducatance is (in H)");
+disp(C,"the capacitance is (in microFarad)");
|