summaryrefslogtreecommitdiff
path: root/3637/CH5/EX5.3/Ex5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3637/CH5/EX5.3/Ex5_3.sce')
-rw-r--r--3637/CH5/EX5.3/Ex5_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3637/CH5/EX5.3/Ex5_3.sce b/3637/CH5/EX5.3/Ex5_3.sce
new file mode 100644
index 000000000..eb7f2b010
--- /dev/null
+++ b/3637/CH5/EX5.3/Ex5_3.sce
@@ -0,0 +1,15 @@
+//problem 3 pagenumber 5.96
+//given
+freq1=2e3;//hz
+w=0.75;format(6);
+c1=0.1e-6;//farad
+//determine ra rb
+//for 0.75 dutycycle rb=0.5*ra
+ra=1.44/freq1*(1/(c1*2));
+rb=0.5*ra;
+disp('Ra = '+string(ra)+' ohm');
+disp('Rb = '+string(rb)+' ohm');
+disp('C1 = '+string(c1*1e6)+' μfarad');
+
+
+