From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1850/CH11/EX11.5/exa_11_5.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 1850/CH11/EX11.5/exa_11_5.sce (limited to '1850/CH11/EX11.5') 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") -- cgit