diff options
Diffstat (limited to '3630/CH3/EX3.20/Ex3_20.sce')
-rw-r--r-- | 3630/CH3/EX3.20/Ex3_20.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3630/CH3/EX3.20/Ex3_20.sce b/3630/CH3/EX3.20/Ex3_20.sce new file mode 100644 index 000000000..65efc5556 --- /dev/null +++ b/3630/CH3/EX3.20/Ex3_20.sce @@ -0,0 +1,10 @@ +clc;
+//ex3.20
+Vin=20; //volt
+Vz=3.3; //volt
+Rs=1000; //ohm
+I=(Vin-Vz)/Rs; //Ampere
+IZK=0.003 //Ampere
+Ilmax=I-IZK; //Ampere
+RLmin=Vz/Ilmax; //ohm
+disp('ohm',RLmin,"RLmin="); //The answers vary due to round off error
|