diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /196/CH2/EX2.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |