summaryrefslogtreecommitdiff
path: root/275/CH5/EX5.5.62/Ch5_5_62.sce
diff options
context:
space:
mode:
Diffstat (limited to '275/CH5/EX5.5.62/Ch5_5_62.sce')
-rwxr-xr-x275/CH5/EX5.5.62/Ch5_5_62.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/275/CH5/EX5.5.62/Ch5_5_62.sce b/275/CH5/EX5.5.62/Ch5_5_62.sce
new file mode 100755
index 000000000..6765c9b06
--- /dev/null
+++ b/275/CH5/EX5.5.62/Ch5_5_62.sce
@@ -0,0 +1,15 @@
+clc
+disp("Example 5.62")
+printf("\n")
+disp("calculate the value of R & c for Wein-Bridge oscillator")
+printf("Given\n")
+//frequency of oscillation
+f=1000
+//find RC
+RC=1/(2*%pi*f)
+//select C<10^-6F
+C=0.1*10^-6
+//the value of R
+R=1/(2*%pi*f*C)
+printf("the value of c \n%f farad\n",C)
+printf("the value of R \n%f ohm\n",R)