From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1757/CH12/EX12.5/EX12_5.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 1757/CH12/EX12.5/EX12_5.sce (limited to '1757/CH12/EX12.5') 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'); -- cgit