diff options
Diffstat (limited to '2102/CH4/EX4.10/exa_4_10.sce')
-rwxr-xr-x | 2102/CH4/EX4.10/exa_4_10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2102/CH4/EX4.10/exa_4_10.sce b/2102/CH4/EX4.10/exa_4_10.sce new file mode 100755 index 000000000..2e1dfd3f1 --- /dev/null +++ b/2102/CH4/EX4.10/exa_4_10.sce @@ -0,0 +1,13 @@ +// Exa 4.10
+clc;
+clear;
+close;
+// Given data
+V_Dmin= 1.5;// in V
+V_Dmax= 2.3;// in V
+Vs= 10;// in V
+R1= 470;// in Ω
+Imax= (Vs-V_Dmin)/R1;// in A
+Imin= (Vs-V_Dmax)/R1;// in A
+disp(Imax*10^3,"The maximum value of current in mA is : ")
+disp(Imin*10^3,"The minimum value of current in mA is : ")
|