summaryrefslogtreecommitdiff
path: root/3630/CH3/EX3.10/Ex3_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH3/EX3.10/Ex3_10.sce')
-rw-r--r--3630/CH3/EX3.10/Ex3_10.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3630/CH3/EX3.10/Ex3_10.sce b/3630/CH3/EX3.10/Ex3_10.sce
new file mode 100644
index 000000000..3486f0998
--- /dev/null
+++ b/3630/CH3/EX3.10/Ex3_10.sce
@@ -0,0 +1,9 @@
+ clc;
+//ex3.10
+Vlpk=20.5; //volt
+RL=5100; //ohm
+Ilpk=Vlpk/RL; //Ampere// from v=r*i
+Vave=13.1; //volt//from v=r*i
+Iave=Vave/RL; //Ampere
+disp('mA',Ilpk*1000,"Ilpk="); //The answers vary due to round off error
+disp('mA',Iave*1000,"Iave="); //The answers vary due to round off error