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 --- 1994/CH7/EX7.10/Example7_10.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 1994/CH7/EX7.10/Example7_10.sce (limited to '1994/CH7/EX7.10') diff --git a/1994/CH7/EX7.10/Example7_10.sce b/1994/CH7/EX7.10/Example7_10.sce new file mode 100755 index 000000000..fff3fdca0 --- /dev/null +++ b/1994/CH7/EX7.10/Example7_10.sce @@ -0,0 +1,17 @@ +//Chapter-7,Example7_10,pg 7-35 +Rm=50 +Im=2*10^-3 +V1=500 +V2=100 +V3=50 +V4=10 +S=1/Im//senstivity +R4=S*V4-Rm +R3=S*V3-(R4+Rm) +R2=S*V2-(R4+Rm+R3) +R1=S*V1-(R4+Rm+R3+R2) +printf("series string of multipliers\n") +printf("R1=%.2f ohm\n",R1) +printf("R2=%.2f ohm\n",R2) +printf("R3=%.2f ohm\n",R3) +printf("R4=%.2f ohm\n",R4) -- cgit