diff options
Diffstat (limited to '2231/CH1/EX1.5/Ex_1_5.sce')
-rwxr-xr-x | 2231/CH1/EX1.5/Ex_1_5.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2231/CH1/EX1.5/Ex_1_5.sce b/2231/CH1/EX1.5/Ex_1_5.sce new file mode 100755 index 000000000..4b3415dca --- /dev/null +++ b/2231/CH1/EX1.5/Ex_1_5.sce @@ -0,0 +1,12 @@ +//Example 1_5
+clc;
+clear;close;
+
+//Given data
+Vdc=100;//V
+L=10;//H
+i=80*10^-3;//A
+
+//Solution :
+t=i*L/Vdc;//s
+disp("Width of pulse should be more than "+string(t*1000)+" milli-seconds.");
|