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.47/Ex2_47.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 695/CH2/EX2.47/Ex2_47.sce (limited to '695/CH2/EX2.47/Ex2_47.sce') diff --git a/695/CH2/EX2.47/Ex2_47.sce b/695/CH2/EX2.47/Ex2_47.sce new file mode 100755 index 000000000..fd6cd8773 --- /dev/null +++ b/695/CH2/EX2.47/Ex2_47.sce @@ -0,0 +1,13 @@ +//Caption:Find the new speed as a percentage of the original speed +//Exa:2.47 +clc; +clear; +close; +V=400;//in volts +R_f=200;//in ohms +I_1=25;//in amperes +I_f=V/R_f; +I_a1=I_1-I_f; +x=(-V+sqrt(V^2+4*345*400))/(2*345); +disp(x*100,'New Speed is= '); +disp('percent of original speed') \ No newline at end of file -- cgit