summaryrefslogtreecommitdiff
path: root/3775/CH7/EX7.2/Ex7_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3775/CH7/EX7.2/Ex7_2.sce')
-rw-r--r--3775/CH7/EX7.2/Ex7_2.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3775/CH7/EX7.2/Ex7_2.sce b/3775/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..87f099dd3
--- /dev/null
+++ b/3775/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,13 @@
+//Ex 7.2 page 260
+
+clc;
+clear;
+close;
+
+N1=1100;// rpm
+Va1=220;// V
+N2=900;// rpm
+
+Va2=Va1*N2/N1;// V
+delta=Va2/Va1;// duty ratio
+printf('\n duty ratio = %.2f',delta)