summaryrefslogtreecommitdiff
path: root/3630/CH3/EX3.7/Ex3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH3/EX3.7/Ex3_7.sce')
-rw-r--r--3630/CH3/EX3.7/Ex3_7.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3630/CH3/EX3.7/Ex3_7.sce b/3630/CH3/EX3.7/Ex3_7.sce
new file mode 100644
index 000000000..1a978b21e
--- /dev/null
+++ b/3630/CH3/EX3.7/Ex3_7.sce
@@ -0,0 +1,13 @@
+clc;
+//ex3.7;
+Vac=24;//volt
+Vspk=Vac/0.707; //volt
+Vlpk=Vspk-0.7; //volt
+RL=20000; //Ohm
+Ilpk=Vlpk/RL; //Ampere
+Iave=Ilpk/3.14; //Ampere
+disp('V',Vspk,"Vspk="); //The answers vary due to round off error
+disp('V',Vlpk,"Vlpk="); //The answers vary due to round off error
+disp('mili Amperes',Ilpk*1000,"Ilpk="); //The answers vary due to round off error
+disp('Micro Amperes',Iave*1000000,"Ilpk="); //The answers vary due to round off error
+