summaryrefslogtreecommitdiff
path: root/3515/CH1/EX1.1
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH1/EX1.1')
-rw-r--r--3515/CH1/EX1.1/Ex_1_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3515/CH1/EX1.1/Ex_1_1.sce b/3515/CH1/EX1.1/Ex_1_1.sce
new file mode 100644
index 000000000..6c8686b83
--- /dev/null
+++ b/3515/CH1/EX1.1/Ex_1_1.sce
@@ -0,0 +1,13 @@
+// Exa 1.1
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+G= -100;
+R1= 2.2;// in kohm
+R1=R1*10^3;// in ohm
+// Formula G=-Rf/R1
+Rf= -G*R1;
+Rf= Rf*10^-3;// in kohm
+disp(Rf,"The value of Rf in kohm is ")