From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3574/CH9/EX9.11/EX9_11.sce | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 3574/CH9/EX9.11/EX9_11.sce (limited to '3574/CH9/EX9.11/EX9_11.sce') diff --git a/3574/CH9/EX9.11/EX9_11.sce b/3574/CH9/EX9.11/EX9_11.sce new file mode 100644 index 000000000..df7931fc9 --- /dev/null +++ b/3574/CH9/EX9.11/EX9_11.sce @@ -0,0 +1,39 @@ +// Example 9.11 +// Determine (a) Equivalent armature resistance (b) Synchronous reactance +// (c) Short-circuit ratio +// Page 377 + +clc; +clear; +close; + +// Given data +Vdc=10.35; // DC voltage +Idc=52.80; // DC current +VOCph=240/sqrt(3); // Open-circuit phase voltage +ISCph=115.65; // Short-circuit phase current +P=50000; +V=240; // Supply voltage + +// (a) Equivalent armature resistance +Rdc=Vdc/Idc; // DC resistance +Rgamma=Rdc/2; +Ra=1.2*Rgamma; // Armature resistance + +// (b) Synchronous reactance +Zs= VOCph/ISCph; // Synchronous impedance/phase +Xs=sqrt(Zs^2-Ra^2); + +// (c) Short-circuit ratio +Sbase=P/3; // Power/phase +Vbase=V/sqrt(3); // Voltage/phase +Zbase=Vbase^2/Sbase; +Xpu=Xs/Zbase; // Per unit synchronous reactance +SCR=1/Xpu; // Short-circuit ratio + + +// Display result on command window +printf("\n Equivalent armature resistance = %0.4f Ohm ",Ra); +printf("\n Synchronous reactance = %0.4f Ohm ",Xs); +printf("\n Short-circuit ratio = %0.3f ",SCR); + -- cgit