diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/293/CH20/EX20.2 | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-master.tar.gz Xcos_block_examples-master.tar.bz2 Xcos_block_examples-master.zip |
Diffstat (limited to 'Working_Examples/293/CH20/EX20.2')
-rwxr-xr-x | Working_Examples/293/CH20/EX20.2/eg20_2.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Working_Examples/293/CH20/EX20.2/eg20_2.sce b/Working_Examples/293/CH20/EX20.2/eg20_2.sce new file mode 100755 index 0000000..396caca --- /dev/null +++ b/Working_Examples/293/CH20/EX20.2/eg20_2.sce @@ -0,0 +1,36 @@ +//a
+Vt = 230; //(in volts)
+Ia = 73; //armature current (in amps)
+If = 1.6; //feild current (in amps)
+Ra = 0.188; //armature circuit resistance(in ohms)
+n = 1150; //rated speed of the rotor(in rpm)
+Po = 20*746; //output power (in watts)
+
+Ea = Vt - (Ia*Ra); //armature voltage
+wm = 2*%pi*n/60; //rated speed of the rotor (in rad/sec)
+T = Ea*Ia/wm ; //electromagnetic torque
+
+disp("a")
+disp(T,"electromagnetic torque = ")
+
+//b
+a = 4; //no. of parallel armature paths
+p = 4; //no. of poles
+z = 882; //no. of armature conductors
+flux = Ea*60*a/(p*z*n); //flux per pole (in Wb)
+
+disp("b")
+disp(flux,"flux per pole = ")
+
+//c
+Prot = (Ea*Ia) - Po; //rotational loss (in watt)
+disp("c")
+disp(Prot,"rotational losses = ")
+
+//d
+losses = Prot + (Ia^2 * Ra) + (Vt * If) ;
+Pi = (Ea*Ia) + (Ia^2 * Ra) + (Vt * If); //input power
+efficiency = 1 - (losses/Pi);
+
+disp("d")
+disp(efficiency,"efficiency = ")
\ No newline at end of file |