diff options
Diffstat (limited to '3673/CH17/EX17.a.10/Example_a_17_10.sce')
-rw-r--r-- | 3673/CH17/EX17.a.10/Example_a_17_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3673/CH17/EX17.a.10/Example_a_17_10.sce b/3673/CH17/EX17.a.10/Example_a_17_10.sce new file mode 100644 index 000000000..b72f69fce --- /dev/null +++ b/3673/CH17/EX17.a.10/Example_a_17_10.sce @@ -0,0 +1,12 @@ +//Example_a_17_10 page no:869
+clc;
+Ro=600;
+atten_const=10;
+f=600;
+D=10;
+N=10^(D/10);
+L1=(Ro*sqrt(N-1))/(2*%pi*f);
+C1=sqrt(N-1)/(2*%pi*Ro*f);
+C1=C1*10^6;
+disp(L1,"the inductance is (in H)");
+disp(C1,"the capacitance is (in microFarad)");
|