summaryrefslogtreecommitdiff
path: root/1757/CH12/EX12.5
diff options
context:
space:
mode:
Diffstat (limited to '1757/CH12/EX12.5')
-rwxr-xr-x1757/CH12/EX12.5/EX12_5.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1757/CH12/EX12.5/EX12_5.sce b/1757/CH12/EX12.5/EX12_5.sce
new file mode 100755
index 000000000..7d0041a6a
--- /dev/null
+++ b/1757/CH12/EX12.5/EX12_5.sce
@@ -0,0 +1,22 @@
+// Example12.5 // to determine the output time and duty cycle of V/T converter
+clc;
+clear;
+close;
+Vin = 5 ;
+C = 0.1*10^-6 ;
+R = 10*10^3 ;
+C1 = 100*10^-6 ;
+
+// The output time of a V/T converter is given as
+T = (7.5*C1)/(Vin) ;
+disp('The output time of a V/T converter is =' +string(T)+ ' sec');
+
+TH = 0.075 ;
+TL=TH ; // we consider
+// The duty cycle of V?T converter
+D = (TL+TH)/(TH) ;
+disp('The duty cycle of V?T converter is = '+string(D)+ ' ');
+
+// The output voltage of an integrator is define as
+Vio = -(Vin)/(R*C)*T ;
+disp('The output voltage of an integrator is is = '+string(Vio)+ ' V');