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 /2231/CH4/EX4.20/Ex_4_20.sce | |
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 '2231/CH4/EX4.20/Ex_4_20.sce')
-rwxr-xr-x | 2231/CH4/EX4.20/Ex_4_20.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2231/CH4/EX4.20/Ex_4_20.sce b/2231/CH4/EX4.20/Ex_4_20.sce new file mode 100755 index 000000000..ce5473bb0 --- /dev/null +++ b/2231/CH4/EX4.20/Ex_4_20.sce @@ -0,0 +1,13 @@ +//Example 4_20
+clc;
+clear;close;
+
+//Given data:
+V=150;//V
+Vav=250;//V
+Toff=1*10^-3;//s
+
+//Solution :
+T=Vav/V*Toff;//s
+Ton=T-Toff;//s
+disp(Ton,"Period of conduction(seconds)");
|