diff options
Diffstat (limited to '2498/CH3/EX3.3')
-rwxr-xr-x | 2498/CH3/EX3.3/ex3_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2498/CH3/EX3.3/ex3_3.sce b/2498/CH3/EX3.3/ex3_3.sce new file mode 100755 index 000000000..53cdaaf9c --- /dev/null +++ b/2498/CH3/EX3.3/ex3_3.sce @@ -0,0 +1,13 @@ +// Exa 3.3
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+P_ZM = 500;// in mW
+P_ZM = P_ZM * 10^-3;// in W
+V_Z = 6.8;// in V
+// The value of I_ZM
+I_ZM = P_ZM/V_Z;// in A
+I_ZM = I_ZM * 10^3;// in mA
+disp(I_ZM,"The value of I_ZM in mA is");
|