diff options
Diffstat (limited to '3630/CH3/EX3.15/Ex3_15.sce')
-rw-r--r-- | 3630/CH3/EX3.15/Ex3_15.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3630/CH3/EX3.15/Ex3_15.sce b/3630/CH3/EX3.15/Ex3_15.sce new file mode 100644 index 000000000..b790f9ddd --- /dev/null +++ b/3630/CH3/EX3.15/Ex3_15.sce @@ -0,0 +1,9 @@ +clc;
+//ex3.15
+IL=0.02; //Ampere
+t=[0.0167 0.00833]; //seceond
+c=0.0005; // Farad
+Vr1=(IL*t(1,1))/c; //peakvolt
+Vr2=(IL*t(1,2))/c; //peakvolt
+disp('mVpp',Vr1*1000,"Vr1=");
+disp('mVpp',Vr2*1000,"Vr2="); ////The answers vary due to round off error
|