summaryrefslogtreecommitdiff
path: root/3769/CH9/EX9.37/Ex9_37.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH9/EX9.37/Ex9_37.sce')
-rw-r--r--3769/CH9/EX9.37/Ex9_37.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3769/CH9/EX9.37/Ex9_37.sce b/3769/CH9/EX9.37/Ex9_37.sce
new file mode 100644
index 000000000..21eb82c20
--- /dev/null
+++ b/3769/CH9/EX9.37/Ex9_37.sce
@@ -0,0 +1,18 @@
+clear
+//Given
+Rg=60
+R1=3.0
+rs=0.02
+
+//Calculation
+Rt=Rg+R1
+I=R1/Rt
+Rm=(Rg*rs)/(Rg+rs)
+R2=Rm+R1
+I1=R1/R2
+I2=R1/R1
+
+//Result
+printf("\n (i) The value of current is %0.3f A",I)
+printf("\n (ii) The value of current is %0.2f A",I1)
+printf("\n (iii) The value of current is %0.3f A",I2)