diff options
Diffstat (limited to '605/CH6/EX6.7/6_7.sce')
-rwxr-xr-x | 605/CH6/EX6.7/6_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/605/CH6/EX6.7/6_7.sce b/605/CH6/EX6.7/6_7.sce new file mode 100755 index 000000000..77b84a29f --- /dev/null +++ b/605/CH6/EX6.7/6_7.sce @@ -0,0 +1,13 @@ +
+Rp=600 //ohm
+Rs=173.2 //ohm
+Q=sqrt(Rp/Rs-1)
+Xs=Q*Rs
+Xp=Rp/Q
+printf("\nQ=%.4f\nXs=%.4f ohm\nXp=%.4f ohm\n",Q,Xs,Xp)
+Rp=173.2 //ohm
+Rs=50 //ohm
+Q=sqrt(Rp/Rs-1)
+Xs=Q*Rs
+Xp=Rp/Q
+printf("\nQ=%.4f\nXs=%.4f ohm\nXp=%.4f ohm\n",Q,Xs,Xp)
\ No newline at end of file |