summaryrefslogtreecommitdiff
path: root/1850/CH11/EX11.5/exa_11_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1850/CH11/EX11.5/exa_11_5.sce')
-rwxr-xr-x1850/CH11/EX11.5/exa_11_5.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1850/CH11/EX11.5/exa_11_5.sce b/1850/CH11/EX11.5/exa_11_5.sce
new file mode 100755
index 000000000..138c722e3
--- /dev/null
+++ b/1850/CH11/EX11.5/exa_11_5.sce
@@ -0,0 +1,14 @@
+// Exa 11.5
+clc;
+clear;
+close;
+//given data
+R1= 2.5;// in kohm
+R1= R1*10^3;// in ohm
+R2= 1;// in kohm
+R2= R2*10^3;// in ohm
+V_REF= 1.25;// in volt
+I= V_REF/R2;// in amp
+// This current also flows through R1. So the output voltage
+V_out= I*(R1+R2);// in volt
+disp(V_out,"Output voltage in volt")