summaryrefslogtreecommitdiff
path: root/2102/CH3/EX3.11/exa_3_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH3/EX3.11/exa_3_11.sce')
-rwxr-xr-x2102/CH3/EX3.11/exa_3_11.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2102/CH3/EX3.11/exa_3_11.sce b/2102/CH3/EX3.11/exa_3_11.sce
new file mode 100755
index 000000000..66ebff08b
--- /dev/null
+++ b/2102/CH3/EX3.11/exa_3_11.sce
@@ -0,0 +1,15 @@
+// Exa 3.11
+clc;
+clear;
+close;
+// Given data
+I_F= 70;// in mA
+V_F= 26;// in mV
+delta_I_F= 60;// in mA
+delta_I_F=delta_I_F*10^-3;// in A
+delta_V_F= 0.025;// in V
+r_d= delta_V_F/delta_I_F;// in ohm
+disp(r_d,"Dynamic resistance in ohm is : ")
+// and the stimated value of the dynamic resistance is
+r_d= V_F/I_F;// in ohm
+disp(r_d,"The stimated value of the Dynamic resistance in ohm is : ")