From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3830/CH1/EX1.23/Ex1_23.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3830/CH1/EX1.23/Ex1_23.sce (limited to '3830/CH1/EX1.23') diff --git a/3830/CH1/EX1.23/Ex1_23.sce b/3830/CH1/EX1.23/Ex1_23.sce new file mode 100644 index 000000000..13ee92511 --- /dev/null +++ b/3830/CH1/EX1.23/Ex1_23.sce @@ -0,0 +1,23 @@ +// Exa 1.23 + +clc; +clear; + +// Given + +// Dual slope integrating-type DVM +C = 0.1*10^-6; // Capacitor in Farads +R = 10*10^3; // Resistance in Ohms +Vr = 2; // Reference Voltage(Volts) +Vmax = 10; // maximum output of circuit(Volts) + +// Solution + +Tc = C*R; // Integrator Time Constant +Vo = Vr/Tc ; // Integrator output in Volt/sec + +Ti = Vmax/Vo; //in sec + +printf(' The period of integration of dual slope integrating-type DVM = %d m sec \n',Ti*1000); + +//The answer provided in the textbook is wrong -- cgit