From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 863/CH2/EX2.12/Ex2_12.sce | 15 +++++++++++++++ 863/CH2/EX2.12/Ex2_12.txt | 15 +++++++++++++++ 863/CH2/EX2.12/Result2_12.txt | 8 ++++++++ 3 files changed, 38 insertions(+) create mode 100644 863/CH2/EX2.12/Ex2_12.sce create mode 100644 863/CH2/EX2.12/Ex2_12.txt create mode 100644 863/CH2/EX2.12/Result2_12.txt (limited to '863/CH2/EX2.12') diff --git a/863/CH2/EX2.12/Ex2_12.sce b/863/CH2/EX2.12/Ex2_12.sce new file mode 100644 index 000000000..1150f0aae --- /dev/null +++ b/863/CH2/EX2.12/Ex2_12.sce @@ -0,0 +1,15 @@ +//Caption:Calculate amplitude of output waveform for (a)Rise time (b)Fall time +//Ex2.12 +clc; +clear; +close; +r=1//Resistance(in kilo ohm) +c=100//Capacitance(in pf) +tr=1//Rise time(in micro sec) +tf=3//Fall time(in micro sec) +e1=8//Change in voltage for rise time(in volts) +e2=-8//Change in voltage for fall time(in volts) +eo1=r*c*0.001*e1/tr +disp(eo1,'Amplitude of output waveform for (a)Rise time(in volts)=') +eo2=r*c*0.001*e2/tf +disp(eo2,'Amplitude of output waveform for (b)Fall time(in volts)=') \ No newline at end of file diff --git a/863/CH2/EX2.12/Ex2_12.txt b/863/CH2/EX2.12/Ex2_12.txt new file mode 100644 index 000000000..1150f0aae --- /dev/null +++ b/863/CH2/EX2.12/Ex2_12.txt @@ -0,0 +1,15 @@ +//Caption:Calculate amplitude of output waveform for (a)Rise time (b)Fall time +//Ex2.12 +clc; +clear; +close; +r=1//Resistance(in kilo ohm) +c=100//Capacitance(in pf) +tr=1//Rise time(in micro sec) +tf=3//Fall time(in micro sec) +e1=8//Change in voltage for rise time(in volts) +e2=-8//Change in voltage for fall time(in volts) +eo1=r*c*0.001*e1/tr +disp(eo1,'Amplitude of output waveform for (a)Rise time(in volts)=') +eo2=r*c*0.001*e2/tf +disp(eo2,'Amplitude of output waveform for (b)Fall time(in volts)=') \ No newline at end of file diff --git a/863/CH2/EX2.12/Result2_12.txt b/863/CH2/EX2.12/Result2_12.txt new file mode 100644 index 000000000..71233fcd8 --- /dev/null +++ b/863/CH2/EX2.12/Result2_12.txt @@ -0,0 +1,8 @@ + Amplitude of output waveform for (a)Rise time(in volts)= + + 0.8 + + Amplitude of output waveform for (b)Fall time(in volts)= + + - 0.2666667 + \ No newline at end of file -- cgit