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 --- 1109/CH16/EX16.7/16_7.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 1109/CH16/EX16.7/16_7.sce (limited to '1109/CH16/EX16.7/16_7.sce') diff --git a/1109/CH16/EX16.7/16_7.sce b/1109/CH16/EX16.7/16_7.sce new file mode 100755 index 000000000..c9d269aa4 --- /dev/null +++ b/1109/CH16/EX16.7/16_7.sce @@ -0,0 +1,11 @@ +clear; +clc; +D=40;Ri1=70;Ri2=600; +Ai=D*0.115; +R3=(sqrt(Ri1*Ri2))/sinh(Ai); +R2=(Ri2/tanh(Ai))-R3; +R1=(Ri1/tanh(Ai))-R3; +printf("The desired elements of T-pad are:\n"); +printf(" R1 = %f ohms\n",round(R1*100)/100); +printf(" R2 = %f ohms\n",round(R2)); +printf(" R3 = %f ohms\n",round(R3*100)/100); -- cgit