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 --- 2441/CH5/EX5.20/Ex5_20.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 2441/CH5/EX5.20/Ex5_20.sce (limited to '2441/CH5/EX5.20/Ex5_20.sce') diff --git a/2441/CH5/EX5.20/Ex5_20.sce b/2441/CH5/EX5.20/Ex5_20.sce new file mode 100755 index 000000000..bf7d7895d --- /dev/null +++ b/2441/CH5/EX5.20/Ex5_20.sce @@ -0,0 +1,21 @@ +//Example 5.20 +clc;clear;close; +format('v',6); +L=14;//MW//Total Load +C1=15;//MW +R1=3;//%//speed regulation +C2=4;//MW +R2=4;//%//speed regulation +LB=4;//MW//Load on bus bar +LA=10;//MW///Load on bus bar +f=50;//Hz +//Load on station A= L1 MW +//Load on station B= L-L1 MW +//f-C1*f/100*(L1/C1)=f-C2*f/100*(L2/C2) +L1=R2*L/C2/(R1/C1+R2/C2);//MW +L2=L-L1;//MW +disp(L1,"Load generation at station A(MW)"); +disp(L2,"Load generation at station B(MW)"); +Pt=L1-LA;//MW//Power transmitted A to B +f_oper=f-R1/100/C1*(L1)*f;//Hz +disp(f_oper,"Operating Frequency(Hz)"); -- cgit