diff options
Diffstat (limited to '605/CH5/EX5.1/5_1.sce')
-rwxr-xr-x | 605/CH5/EX5.1/5_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/605/CH5/EX5.1/5_1.sce b/605/CH5/EX5.1/5_1.sce new file mode 100755 index 000000000..3f9476553 --- /dev/null +++ b/605/CH5/EX5.1/5_1.sce @@ -0,0 +1,16 @@ +
+//data
+f2=9 //MHz
+f1=11 //MHz
+R=50 //ohm
+W1=2*%pi*11*10^6 //rad/s
+W2=2*%pi*9*10^6 //rad/s
+//formula and result
+printf("\nresult:-")
+Wo=sqrt(W1*W2)
+fo=sqrt(f1*f2)
+printf("\nWo=sqrt(W1*W2)\nfo=sqrt(f1*f2)=%.6f MHz",fo)
+L=R/(W1-W2)
+printf("\nQ=Wo*L/R=Wo/(W1-W2)\nL=R/(W1-W2)=%.6e H",L)
+C=1/(L*Wo^2)
+printf("\nWo=1/sqrt(L*C)\nC=1/(L*Wo^2)=%.6e F",C)
\ No newline at end of file |