diff options
Diffstat (limited to '196/CH2/EX2.3')
-rwxr-xr-x | 196/CH2/EX2.3/example_2_3.sce | 12 | ||||
-rwxr-xr-x | 196/CH2/EX2.3/result_2_3.txt | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/196/CH2/EX2.3/example_2_3.sce b/196/CH2/EX2.3/example_2_3.sce new file mode 100755 index 000000000..dae12b6d2 --- /dev/null +++ b/196/CH2/EX2.3/example_2_3.sce @@ -0,0 +1,12 @@ +//Chapter 2
+//Example 2-3
+//ProbOnHighTime
+//Page 34,35,figure 2-16(d)
+clear;clc;
+//Given
+Vtemp=4;//in volts
+Ecm=5;//maximum peak voltage of a sawtooth carrier wave
+T=0.01;//in seconds
+//calculate
+Th=T*(1-(Vtemp/Ecm));//High Time
+printf("\n\n High Time = %.4f s \n\n",Th)
diff --git a/196/CH2/EX2.3/result_2_3.txt b/196/CH2/EX2.3/result_2_3.txt new file mode 100755 index 000000000..9e1188deb --- /dev/null +++ b/196/CH2/EX2.3/result_2_3.txt @@ -0,0 +1 @@ + High Time = 0.0020 s
\ No newline at end of file |