diff options
Diffstat (limited to '695/CH2/EX2.12')
-rwxr-xr-x | 695/CH2/EX2.12/Ex2_12.sce | 18 | ||||
-rwxr-xr-x | 695/CH2/EX2.12/Ex2_12.txt | 18 | ||||
-rwxr-xr-x | 695/CH2/EX2.12/R2_12.txt | 3 |
3 files changed, 39 insertions, 0 deletions
diff --git a/695/CH2/EX2.12/Ex2_12.sce b/695/CH2/EX2.12/Ex2_12.sce new file mode 100755 index 000000000..86949c8c9 --- /dev/null +++ b/695/CH2/EX2.12/Ex2_12.sce @@ -0,0 +1,18 @@ +//Caption:Find the power absorbed by the load
+//Exa:2.12
+clc;
+clear;
+close;
+P=6;//no. of poles
+A=2;
+Z=350;//no. of conductors
+R_a=0.8;//armature winding resistance in ohms
+R_f=120;//feild winding resistance in ohms
+Phy=0.02;//in weber
+N=1000;//speed in rpm
+R_L=12;//load resistance in ohms
+E_g=Phy*N*Z*P/(60*A);//emf induced in volts
+V_t=E_g/(1+((1/R_f)+(1/R_L))*R_a);
+I_L=V_t/R_L;//in amperes
+P_o=V_t*I_L;//in watts
+disp(P_o,'Power absorbed by the load (in watts)=')
\ No newline at end of file diff --git a/695/CH2/EX2.12/Ex2_12.txt b/695/CH2/EX2.12/Ex2_12.txt new file mode 100755 index 000000000..86949c8c9 --- /dev/null +++ b/695/CH2/EX2.12/Ex2_12.txt @@ -0,0 +1,18 @@ +//Caption:Find the power absorbed by the load
+//Exa:2.12
+clc;
+clear;
+close;
+P=6;//no. of poles
+A=2;
+Z=350;//no. of conductors
+R_a=0.8;//armature winding resistance in ohms
+R_f=120;//feild winding resistance in ohms
+Phy=0.02;//in weber
+N=1000;//speed in rpm
+R_L=12;//load resistance in ohms
+E_g=Phy*N*Z*P/(60*A);//emf induced in volts
+V_t=E_g/(1+((1/R_f)+(1/R_L))*R_a);
+I_L=V_t/R_L;//in amperes
+P_o=V_t*I_L;//in watts
+disp(P_o,'Power absorbed by the load (in watts)=')
\ No newline at end of file diff --git a/695/CH2/EX2.12/R2_12.txt b/695/CH2/EX2.12/R2_12.txt new file mode 100755 index 000000000..989555a6a --- /dev/null +++ b/695/CH2/EX2.12/R2_12.txt @@ -0,0 +1,3 @@ + Power absorbed by the load (in watts)=
+
+ 8861.0586
\ No newline at end of file |