diff options
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)");
|