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 --- 695/CH2/EX2.20/Ex2_20.sce | 14 ++++++++++++++ 695/CH2/EX2.20/Ex2_20.txt | 14 ++++++++++++++ 695/CH2/EX2.20/R2_20.txt | 4 ++++ 3 files changed, 32 insertions(+) create mode 100755 695/CH2/EX2.20/Ex2_20.sce create mode 100755 695/CH2/EX2.20/Ex2_20.txt create mode 100755 695/CH2/EX2.20/R2_20.txt (limited to '695/CH2/EX2.20') diff --git a/695/CH2/EX2.20/Ex2_20.sce b/695/CH2/EX2.20/Ex2_20.sce new file mode 100755 index 000000000..c5685f89d --- /dev/null +++ b/695/CH2/EX2.20/Ex2_20.sce @@ -0,0 +1,14 @@ +//Caption:Find the no load speed +//Exa:2.20 +clc; +clear; +close; +V=200;//in volts +I_a0=2;//in amperes +R_a=0.4;//in ohms +I_a1=50;//in amperes +N_1=1200;//in rpm +E_0=V-(I_a0*R_a);//in volts +E_1=V-(I_a1*R_a);//in volts +N_0=N_1*(E_0/E_1);//in rpm +disp(N_0,'No-load speed (in rpm)=') \ No newline at end of file diff --git a/695/CH2/EX2.20/Ex2_20.txt b/695/CH2/EX2.20/Ex2_20.txt new file mode 100755 index 000000000..c5685f89d --- /dev/null +++ b/695/CH2/EX2.20/Ex2_20.txt @@ -0,0 +1,14 @@ +//Caption:Find the no load speed +//Exa:2.20 +clc; +clear; +close; +V=200;//in volts +I_a0=2;//in amperes +R_a=0.4;//in ohms +I_a1=50;//in amperes +N_1=1200;//in rpm +E_0=V-(I_a0*R_a);//in volts +E_1=V-(I_a1*R_a);//in volts +N_0=N_1*(E_0/E_1);//in rpm +disp(N_0,'No-load speed (in rpm)=') \ No newline at end of file diff --git a/695/CH2/EX2.20/R2_20.txt b/695/CH2/EX2.20/R2_20.txt new file mode 100755 index 000000000..23476718d --- /dev/null +++ b/695/CH2/EX2.20/R2_20.txt @@ -0,0 +1,4 @@ + NO-load speed (in rpm)= + + 1328. + \ No newline at end of file -- cgit