diff options
Diffstat (limited to '196/CH8/EX8.8')
-rwxr-xr-x | 196/CH8/EX8.8/example_8_8.sce | 16 | ||||
-rwxr-xr-x | 196/CH8/EX8.8/result_8_8.txt | 8 |
2 files changed, 24 insertions, 0 deletions
diff --git a/196/CH8/EX8.8/example_8_8.sce b/196/CH8/EX8.8/example_8_8.sce new file mode 100755 index 000000000..cda23f002 --- /dev/null +++ b/196/CH8/EX8.8/example_8_8.sce @@ -0,0 +1,16 @@ +//Chapter 8
+//Example 8-8
+//ProbOnVtoIConverter
+//Page 228, Figure 8-10
+clear;clc;
+Rs = 1*10^3 ; E1 = 100*10^-3 ;
+E2 = 0 ; Rl = 5*10^3 ;
+Gain = 10 ;
+Il = 10*((E1-E2)/Rs);
+Vr = Il * Rs ;
+Vref = Il * Rl ;
+V9 = Vref + Gain*(E1 - E2);
+printf ( "\n\n Current across Load Resistor = %.4f A ", Il )
+printf ( "\n\n Voltage across R = %.4f V ", Vr)
+printf ( "\n\n Reference Voltage = %.4f V ", Vref )
+printf ( "\n\n Voltage at terminal 9 = %.4f V ", V9 )
\ No newline at end of file diff --git a/196/CH8/EX8.8/result_8_8.txt b/196/CH8/EX8.8/result_8_8.txt new file mode 100755 index 000000000..b7624d39a --- /dev/null +++ b/196/CH8/EX8.8/result_8_8.txt @@ -0,0 +1,8 @@ +
+ Current across Load Resistor = 0.0010 A
+
+ Voltage across R = 1.0000 V
+
+ Reference Voltage = 5.0000 V
+
+ Voltage at terminal 9 = 6.0000 V
\ No newline at end of file |