diff options
Diffstat (limited to '2231/CH4/EX4.19/Ex_4_19.sce')
-rwxr-xr-x | 2231/CH4/EX4.19/Ex_4_19.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2231/CH4/EX4.19/Ex_4_19.sce b/2231/CH4/EX4.19/Ex_4_19.sce new file mode 100755 index 000000000..b332433fd --- /dev/null +++ b/2231/CH4/EX4.19/Ex_4_19.sce @@ -0,0 +1,13 @@ +//Example 4_19
+clc;
+clear;close;
+
+//Given data:
+V=200;//V
+Vav=250;//V
+Toff=0.6*10^-3;//s
+
+//Solution :
+T=Vav/V*Toff;//s
+Ton=T-Toff;//s
+disp(Ton,"Period of conduction(seconds)");
|