diff options
Diffstat (limited to '1757/CH6/EX6.37/EX6_37.sce')
-rwxr-xr-x | 1757/CH6/EX6.37/EX6_37.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1757/CH6/EX6.37/EX6_37.sce b/1757/CH6/EX6.37/EX6_37.sce new file mode 100755 index 000000000..0d1ac5722 --- /dev/null +++ b/1757/CH6/EX6.37/EX6_37.sce @@ -0,0 +1,14 @@ +//Example6_37 // Design current to voltage converter
+clc;
+clear;
+close;
+Vo =-10 ;
+is = 100*10^-6 ;
+
+// the output voltage of current to voltage converter is defined as
+//Vo =-1s*R2
+R2 = -Vo/is ;
+disp(' The feedback resistance is = '+string(R2)+ ' ohm');
+
+R1 = R2 ;
+disp(' The value of resistance R1 is = '+string(R1)+ ' ohm');
|