diff options
Diffstat (limited to '3515/CH1/EX1.3/Ex_1_3.sce')
-rw-r--r-- | 3515/CH1/EX1.3/Ex_1_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3515/CH1/EX1.3/Ex_1_3.sce b/3515/CH1/EX1.3/Ex_1_3.sce new file mode 100644 index 000000000..f7e9944e7 --- /dev/null +++ b/3515/CH1/EX1.3/Ex_1_3.sce @@ -0,0 +1,16 @@ +// Exa 1.3
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+G=-10;
+Ri= 100;// in kohm
+R1= Ri;// in kohm
+R1=R1*10^3;// in ohm
+// Formula G=-R2/R1
+R2= R1*abs(G);// ohm
+R1= R1*10^-3;// in kohm
+R2= R2*10^-6;// in Mohm
+disp(R1,"Value of R1 in kohm is : ")
+disp(R2,"and value of R2 in Mohm is : ")
|